:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a237e;
    --text-color: #ffffff;
    --title-font: 'Black Ops One', cursive;
    --body-font: 'Orbitron', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    background: linear-gradient(135deg, #0a192f, #1a237e);
    color: var(--text-color);
    min-height: 100vh;
    overflow: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 25, 47, 0.8);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
}

.game-title {
    font-family: var(--title-font);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: 3px;
    line-height: 1.2;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.coming-soon {
    font-family: var(--body-font);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item span {
    display: block;
}

.countdown-item span:first-child {
    font-family: var(--title-font);
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.countdown-label {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.8;
    letter-spacing: 1px;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 1px;
}

.email-link {
    font-family: var(--body-font);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ff8c66;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8),
                     0 0 30px rgba(255, 107, 53, 0.6);
    }
}

@media (max-width: 768px) {
    .game-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .coming-soon {
        font-size: 1.2rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
} 