/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Particles background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Brand logo */
.brand-logo {
    position: relative;
    z-index: 2;
}

.game-icon {
    font-size: 4rem;
    color: #00d4ff;
    text-shadow: 0 0 20px #00d4ff, 0 0 40px #00d4ff;
    animation: pulse 2s ease-in-out infinite alternate;
}

.brand-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 3rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    margin-top: 1rem;
}

/* Coming soon content */
.coming-soon-content {
    position: relative;
    z-index: 2;
}

.coming-soon-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite alternate;
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Countdown timer */
.countdown-container {
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00d4ff;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    margin: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    border-color: #ff6b6b;
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px #00d4ff;
}

.countdown-label {
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Subscription form */
.subscription-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00d4ff;
    border-radius: 25px 0 0 25px;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.subscription-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    color: #ffffff;
}

.subscription-form .form-control::placeholder {
    color: #b0b0b0;
}

.subscription-form .btn-primary {
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.subscription-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

/* Social links */
.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00d4ff;
    border-radius: 50%;
    color: #00d4ff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #00d4ff;
    color: #0c0c0c;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.social-link:nth-child(2):hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link:nth-child(3):hover {
    background: #e4405f;
    border-color: #e4405f;
}

.social-link:nth-child(4):hover {
    background: #7289da;
    border-color: #7289da;
}

.social-link:nth-child(5):hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 20px #00d4ff;
    }
    100% {
        transform: scale(1.05);
        text-shadow: 0 0 30px #00d4ff, 0 0 40px #00d4ff;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.3);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .game-icon {
        font-size: 3rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        padding: 1rem 0.5rem;
        margin: 0.25rem;
    }
}

@media (max-width: 576px) {
    .brand-title {
        font-size: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }
}