:root {
    --foreground: #ffffff;
    --muted-foreground: rgba(255, 255, 255, 0.85);
    --brand-yellow: #FFEB00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--foreground);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    transform: scale(1.1);
}

.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 80, 0.3);
}

.container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 280px;
    max-width: 85%;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.logo-shadow {
    width: 120px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadow-bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes shadow-bounce {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.6);
        opacity: 0.3;
    }
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 400px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

@media (max-width: 640px) {
    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .logo {
        width: 220px;
    }
}
