body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Space Grotesk', 'HK Grotesk', Arial, sans-serif;
    background: #f8f9fa;
}
.google-loader {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    margin-top: 10px;
}
.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: bounce 0.5s infinite alternate;
}
.dot-blue { background: #4285f4; animation-delay: 0s; }
.dot-red { background: #ea4335; animation-delay: 0.2s; }
.dot-yellow { background: #fbbc05; animation-delay: 0.4s; }
.dot-green { background: #34a853; animation-delay: 0.6s; }
@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
.loading-text {
    color: #444;
    font-size: 1.2em;
    margin-bottom: 10px;
}
