@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    color: #fff;
}

/* Animated Stars Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/></svg>') repeat;
    animation: animateStars 50s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.6"/></svg>') repeat;
    animation: animateStars 100s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1.5" fill="white" opacity="0.4"/></svg>') repeat;
    animation: animateStars 150s linear infinite;
}

@keyframes animateStars {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-2000px);
    }
}

.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Game Logo */
.game-logo {
    position: relative;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00f5ff, #ff00ff, #00ff00, #ffff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: #00f5ff;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                 0 0 40px rgba(0, 245, 255, 0.6),
                 0 0 60px rgba(0, 245, 255, 0.4);
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                     0 0 40px rgba(0, 245, 255, 0.6),
                     0 0 60px rgba(0, 245, 255, 0.4);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 245, 255, 1),
                     0 0 60px rgba(0, 245, 255, 0.8),
                     0 0 90px rgba(0, 245, 255, 0.6);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid rgba(0, 245, 255, 0.5);
    border-radius: 15px;
    padding: 25px 30px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.3),
                inset 0 0 20px rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.5),
                inset 0 0 30px rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.8);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    color: #00f5ff;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    animation: numberPulse 1s ease-in-out infinite;
}

.countdown-label {
    font-size: 0.9rem;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f5ff;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8);
    animation: blink 1s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Game Elements (Pixel Art) */
.game-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

.pixel-art {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%);
    opacity: 0.6;
    animation: floatPixel 4s ease-in-out infinite;
}

.pixel-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pixel-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25%);
}

.pixel-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

@keyframes floatPixel {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Notification */
.notification {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(255, 0, 255, 0.15) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    padding: 20px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.2);
    animation: fadeInUp 1.5s ease-out;
    max-width: 500px;
}

.notification p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .notification {
        padding: 15px 20px;
        margin: 0 20px;
    }
    
    .notification p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
    }
}

