/* Base Reset & Font Loading */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/BebasNeue-Regular.woff2') format('woff2'),
         url('fonts/BebasNeue-Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

/* Core Layout */
body {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 10;
    position: relative;
}

/* Logo Styles */
.logo {
    max-width: 80vw;
    max-height: 60vh;
    height: auto;
    margin-bottom: 2rem;
}

/* Main Heading with Interactive Purple Glow */
.coming-soon {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    text-shadow:
        0 0 10px rgba(186, 147, 216, 0.8),
        0 0 20px rgba(186, 147, 216, 0.6),
        0 0 40px rgba(186, 147, 216, 0.4),
        0 0 80px rgba(186, 147, 216, 0.2);
    transition: text-shadow 0.1s ease;
}

/* Floating Stars Background Animation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(186, 147, 216, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(186, 147, 216, 0.8);
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Accessibility Features */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    .star {
        animation: none;
    }

    .coming-soon {
        transition: none;
    }

    .stars {
        display: none;
    }
}

/* High Contrast Support */
@media (forced-colors: active) {
    .coming-soon {
        text-shadow: none;
        color: ButtonText;
    }

    .star {
        background: ButtonText;
        box-shadow: none;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .coming-soon {
        font-size: 3.5rem;
        letter-spacing: 0.15em;
    }
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .logo {
        max-width: 90vw;
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }

    .logo {
        max-width: 95vw;
        margin-bottom: 1rem;
    }

    .stars {
        opacity: 0.7;
    }
}

@media (min-width: 1920px) {
    .coming-soon {
        font-size: 5rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .logo {
        max-height: 40vh;
    }

    .coming-soon {
        font-size: 2rem;
    }

    .container {
        padding: 0.5rem;
    }
}