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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Header */
header {
    margin-bottom: 3rem;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #00ccff, #88ff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: #a0a0a0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rules button */
.rules-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.rules-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6);
    background: linear-gradient(45deg, #00ccff, #00ff88);
}

.rules-button:active {
    transform: translateY(0px);
}

.coming-soon h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    letter-spacing: 3px;
}

.description {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #e0e0e0;
    font-weight: 300;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.feature h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #00ccff;
}

.feature p {
    color: #c0c0c0;
    line-height: 1.5;
}

/* Status */
.status {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    margin-top: 2rem;
}

.status-text {
    color: #00ff88;
    font-style: italic;
    font-size: 1.1rem;
}

/* Footer */
footer {
    margin-top: 3rem;
    color: #666;
    font-size: 0.9rem;
}

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

.glow-1, .glow-2, .glow-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00ff88, transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.glow-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #00ccff, transparent);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #88ff00, transparent);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .rules-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .description {
        font-size: 1rem;
    }
} 