/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: rgb(255, 195, 35);
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100vw;
    max-width: 100%;
}

/* Coming Soon Container */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Logo */

.logo-container {
    display: flex;
    align-self: center;
    justify-self: center;
    width: 300px;
}

.logo {
    /* display: flex; */
    width: 100%;
    height: auto;
    animation: logoFloat 4s ease-in-out infinite;
}

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

/* Content */
.content {
    position: relative;
    margin-top: 50px;
}


@keyframes titleGlow {
    0% { 
        filter: brightness(1);
    }
    100% { 
        filter: brightness(1.2);
    }
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FEBD01;
    animation: subtitleFade 2s ease-in-out infinite alternate;
}

@keyframes subtitleFade {
    0% { 
        opacity: 0.6;
    }
    100% { 
        opacity: 1;
    }
}

/* Magic Elements */
.magic-elements {
    position: absolute;
    top: -100px;
    left: -200px;
    width: 400px;
    height: 200px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 3s linear infinite;
}

.sparkle-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 60px;
    left: 200px;
    animation-delay: 0.5s;
}

.sparkle-3 {
    top: 100px;
    left: 80px;
    animation-delay: 1s;
}

.sparkle-4 {
    top: 140px;
    left: 300px;
    animation-delay: 1.5s;
}

.sparkle-5 {
    top: 180px;
    left: 150px;
    animation-delay: 2s;
}

.sparkle-6 {
    top: 40px;
    left: 350px;
    animation-delay: 2.5s;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.5) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: translateY(0px) scale(1) rotate(90deg);
    }
    80% {
        opacity: 1;
        transform: translateY(-20px) scale(1) rotate(270deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0.5) rotate(360deg);
    }
}



@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
    
    .magic-elements {
        width: 300px;
        left: -150px;
    }
    
    .sparkle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .magic-elements {
        width: 250px;
        left: -125px;
    }
    
    .sparkle {
        font-size: 1rem;
    }
}