:root {
    --betting-dark: #0D0F1C;
    --betting-card: #1A1F2E;
    --betting-border: #2A3042;
    --betting-highlight: #3B82F6;
    --betting-accent: #818CF8;
    --betting-win: #10B981;
    --betting-lose: #EF4444;
    --betting-draw: #F59E0B;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --gradient-betting: linear-gradient(to right bottom, #3B82F6, #8B5CF6);
    --gradient-card: linear-gradient(to right bottom, rgba(26, 31, 46, 0.8), rgba(15, 23, 42, 0.8));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--betting-dark);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.15) 0, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.15) 0, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.15) 0, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(14, 165, 233, 0.15) 0, transparent 50%);
    background-attachment: fixed;
}

/* Header & Navigation */
header {
    background-color: var(--betting-card);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--betting-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-betting);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--betting-highlight);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    text-decoration: none;
    background: var(--gradient-betting);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    color: var(--text-primary);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.preseason-button {
    background: var(--betting-win);
    color: var(--text-primary);
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.secondary-button {
    background: var(--betting-card);
    border: 1px solid var(--betting-border);
}

/* Preseason Rewards Section */
.preseason-rewards {
    padding: 6rem 2rem;
    background: var(--betting-card);
    border-top: 1px solid var(--betting-border);
    border-bottom: 1px solid var(--betting-border);
}

.rewards-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.rewards-highlight {
    margin: 2rem 0;
}

.rewards-amount {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-betting);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.rewards-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.rewards-feature {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--betting-border);
    transition: transform 0.3s ease;
}

.rewards-feature:hover {
    transform: translateY(-5px);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background-color: var(--betting-dark);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--betting-border);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--betting-highlight);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background-color: var(--betting-card);
    border-top: 1px solid var(--betting-border);
    border-bottom: 1px solid var(--betting-border);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 1rem;
    border: 1px solid var(--betting-border);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-betting);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 2rem;
    background-color: var(--betting-dark);
}

.roadmap h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-date {
    min-width: 100px;
    font-weight: 600;
    color: var(--betting-highlight);
}

.timeline-content {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--betting-border);
    flex-grow: 1;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--gradient-betting);
    color: var(--text-primary);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--betting-card);
    color: var(--text-primary);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--betting-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-betting);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .social-link:hover {
    color: var(--betting-highlight);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--betting-border);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        min-height: 70vh;
        padding: 5rem 1rem 3rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-grid, .steps {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-date {
        min-width: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card, .step, .timeline-item, .rewards-feature {
    animation: fadeIn 0.6s ease-out forwards;
} 