:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #1a1a1a;
    --accent-primary: #00bf63;
    --accent-primary-light: #00e676;
    --accent-green: #00d26a;
    --accent-red: #ff4757;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #ababab;
    --border: #222222;
    --gradient-primary: linear-gradient(135deg, #00bf63 0%, #00e676 50%, #00bf63 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.main-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--text-primary);
}

.btn-vip {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 191, 99, 0.3);
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 191, 99, 0.5);
    color: var(--bg-dark);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 191, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 .green,
.hero h1 .gold {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
}

/* Predictions Section */
.predictions-section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.05em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab {
    padding: 0.875rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
}

.tab:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.tab.active {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-color: var(--accent-primary);
}

/* Prediction Cards */
.predictions-grid {
    display: grid;
    gap: 1rem;
}

.prediction-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto auto;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prediction-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.prediction-card:hover {
    border-color: var(--text-muted);
    transform: translateX(5px);
}

.prediction-card:hover::before {
    transform: scaleY(1);
}

.prediction-card.featured {
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.1) 0%, var(--bg-card) 100%);
    border-color: rgba(0, 191, 99, 0.3);
}

.prediction-card.featured::before {
    transform: scaleY(1);
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.league {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.teams {
    font-weight: 600;
    font-size: 1.3rem;
}

.match-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.vs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.prediction-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.type-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.type-value {
    background: var(--bg-elevated);
    padding: 0.5rem 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.confidence {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.confidence-bar {
    width: 60px;
    height: 4px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.confidence-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.odds {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--accent-primary);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 0.35rem 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Bet of the Day */
.botd-section {
    padding: 6rem 4rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.botd-container {
    max-width: 1000px;
    margin: 0 auto;
}

.botd-card {
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Background image layer */
.botd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://suretips.bet/wp-content/uploads/2025/12/bgr_stadium.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.50;
    pointer-events: none;
    z-index: 0;
}

/* Green gradient overlay on top of image */
.botd-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 191, 99, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Make sure content is above the overlays */
.botd-header,
.botd-match,
.botd-prediction,
.botd-reasoning {
    position: relative;
    z-index: 2;
}
.botd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.botd-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
}

.botd-date {
    font-size: 0.90rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.botd-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.botd-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.team-logo {
    width: 80px;
    height: 80px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.team-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.botd-vs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--text-muted);
}

.botd-prediction {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.botd-stat {
    text-align: center;
}

.botd-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.botd-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
}

.botd-stat-value.gold,
.botd-stat-value.green {
    color: var(--accent-primary);
}

.botd-reasoning {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.no-featured {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem;
    background: var(--bg-card);
    border: 1px dashed var(--border);
}

/* VIP Section */
.vip-section {
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 191, 99, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 191, 99, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vip-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.vip-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vip-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.vip-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.vip-title .gold,
.vip-title .green {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-muted);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(0, 191, 99, 0.1) 0%, var(--bg-card) 30%);
}

.popular-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 0.4rem 1rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.pricing-tier {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-primary);
}

.period {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 18px;
    height: 18px;
    background: rgba(0, 191, 99, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon::before {
    content: '✓';
    color: var(--accent-primary);
    font-size: 0.7rem;
    font-weight: 700;
}

.btn-subscribe {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.pricing-card.popular .btn-subscribe {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-color: var(--accent-primary);
}

.pricing-card.popular .btn-subscribe:hover {
    box-shadow: 0 0 40px rgba(0, 191, 99, 0.4);
}

/* Results Track Record */
.track-section {
    padding: 6rem 4rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.track-container {
    max-width: 1200px;
    margin: 0 auto;
}

.track-header {
    text-align: center;
    margin-bottom: 4rem;
}

.track-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.track-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.result-item {
    background: var(--bg-elevated);
    padding: 1.25rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-status {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.result-status.win {
    background: rgba(0, 191, 99, 0.2);
}

.result-status.loss {
    background: rgba(255, 71, 87, 0.2);
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-match {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-pick {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.result-odds {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
}

.result-odds.win {
    color: var(--accent-primary);
}

.result-odds.loss {
    color: var(--accent-red);
}

/* Footer */
.site-footer {
    padding: 4rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-disclaimer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {

    .about-container, .faq-container {
        width: 100% !important;
        padding: 0rem 2rem !important;
    }
    .about-section {
        padding: 24px 0px !important;
    }
    .botd-header {
        display: block;
        text-align: center;
    }
    .home-team {
        padding-top: 15px;
    }
    .site-header {
        padding: 1rem 2rem;
    }

    .main-nav {
        gap: 1.5rem;
    }

    .predictions-section,
    .botd-section,
    .vip-section,
    .track-section {
        padding: 4rem 2rem;
    }

    .prediction-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .prediction-card > * {
        justify-content: center;
    }

    .match-info {
        align-items: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .botd-match {
        flex-direction: column;
        gap: 1.5rem;
    }

    .botd-vs {
        font-size: 2rem;
    }

    .botd-prediction {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-footer {
        padding: 2rem;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WordPress specific */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

/* ================================
   DATE PICKER STYLES
   Add this to your main.css file
   ================================ */

/* Date Picker */
.date-picker {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    min-width: 90px;
    position: relative;
}

.date-item:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.date-item.active {
    background: var(--gradient-primary);
    border-color: var(--accent-primary);
    color: var(--bg-dark);
}

.date-item.active .date-day,
.date-item.active .date-num,
.date-item.active .date-month {
    color: var(--bg-dark);
}

.date-item.is-today:not(.active)::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px 2px 0 0;
}

.date-day {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.date-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text-primary);
}

.date-month {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.date-item.active .date-day,
.date-item.active .date-num,
.date-item.active .date-month {
    color: var(--bg-dark);
}

/* No Matches Message */
.no-matches {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: 4px;
}

.no-matches-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.no-matches-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.no-matches-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.no-matches-cta {
    margin-top: 1.5rem;
}

.btn-back-today {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 0.875rem 2rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 191, 99, 0.3);
}

.btn-back-today:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 191, 99, 0.5);
    color: var(--bg-dark);
}

/* Responsive Date Picker */
@media (max-width: 768px) {
    .date-picker {
        gap: 0.35rem;
        padding: 0.75rem 0;
        overflow-x: auto;
        justify-content: center;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .date-picker::-webkit-scrollbar {
        display: none;
    }

    .date-item {
        min-width: 70px;
        padding: 0.75rem 1rem;
        flex-shrink: 0;
    }

    .date-num {
        font-size: 1.5rem;
    }

    .date-day {
        font-size: 0.6rem;
    }

    .date-month {
        font-size: 0.6rem;
    }

    .no-matches {
        padding: 3rem 1.5rem;
    }

    .no-matches-icon {
        font-size: 3rem;
    }

    .no-matches-title {
        font-size: 1.5rem;
    }

    .no-matches-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 12rem !important;
    }
    .date-item {
        min-width: 60px;
        padding: 0.6rem 0.75rem;
    }

    .date-num {
        font-size: 1.25rem;
    }
}


/* Spacing between multiple BOTD cards */
.botd-card {
    margin-bottom: 1.5rem;
}

.botd-card:last-of-type {
    margin-bottom: 0;
}

/* League badge above match */
.botd-league {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.botd-league::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent-primary);
    margin: 0.75rem auto 0;
    opacity: 0.5;
}



/* About section */
.about-section {
    padding: 64px 0;
}

.about-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.about-lead {
    margin: 14px 0 0;
    max-width: 75ch;
    line-height: 1.7;
    opacity: 0.92;
}

.about-lead a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-card {
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.10));
    border-radius: 16px;
    padding: 18px;
}

.about-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-card p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.92;
}

.about-disclaimer {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.78;
}

/* FAQ section */
.faq-section {
    padding: 64px 0;
}

.faq-container {
    width: min(900px, 92%);
    margin: 0 auto;
}

.faq-list {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.10));
    border-radius: 16px;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-answer {
    padding: 0 18px 16px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.92;
}

.faq-note {
    margin-top: 16px;
    font-size: 13px;
    opacity: 0.8;
}

.faq-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

a {
    color: #00e1ff;   
}


/* =========================
   SOCIAL / COMMUNITY SECTION
   ========================= */

.social-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0b0b0b 0%, #111 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.social-intro {
    max-width: 700px;
    margin: 20px auto 48px;
    text-align: center;
    color: #b5b5b5;
    font-size: 16px;
    line-height: 1.6;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.social-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 36px 32px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,128,0.35);
}

.social-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.social-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.social-card p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    background: #00e676;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
    background: #00ff85;
    transform: translateY(-1px);
}

.social-btn.outline {
    background: transparent;
    color: #00e676;
    border: 1px solid #00e676;
}

.social-btn.outline:hover {
    background: rgba(0,230,118,0.08);
}

/* Mobile */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-section {
        padding: 60px 0;
    }
}
