/* Body & Fonts */
body {
    margin: 0;
    background: radial-gradient(circle at top, #1b1b1b, #0e0e0e);
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

/* Logo */
.logo {
    max-width: 800px;
    width: 80%;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

/* Coming Soon Text */
.coming-soon {
    font-size: 1.6rem;
    font-family: 'Fredoka One', cursive;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
    position: fixed;
    bottom: 1rem;
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}
