:root {
    --primary: #0A0F14;
    --secondary: #111820;
    --accent: #39FF14;
    --accent-hover: #2ED10F;
    --background: #05070A;
    --surface: #1C252E;
    --text-primary: #FFFFFF;
    --text-secondary: #9BA4B5;
    
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--background);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

a { color: var(--accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--text-primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.section-pad { padding: 4rem 0; }
.pt-top { padding-top: 6rem; }
.pb-bot { padding-bottom: 4rem; }
.bg-surface { background-color: var(--surface); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.neon-text { color: var(--accent); text-shadow: 0 0 10px rgba(57, 255, 20, 0.4); }
.neon-accent { color: var(--accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
    border: none;
    min-height: 44px;
}
.btn-primary { background: var(--text-primary); color: var(--primary); }
.btn-primary:hover { background: var(--text-secondary); color: var(--background); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--text-secondary); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--text-primary); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.btn-neon { background: var(--accent); color: var(--primary); box-shadow: 0 0 15px rgba(57, 255, 20, 0.3); }
.btn-neon:hover { background: var(--accent-hover); box-shadow: 0 0 25px rgba(57, 255, 20, 0.6); transform: translateY(-2px); }
.btn-neon-subtle { background: rgba(57, 255, 20, 0.1); border: 1px solid var(--accent); color: var(--accent); }
.btn-neon-subtle:hover { background: var(--accent); color: var(--primary); }
.btn-large { padding: 1rem 2rem; font-size: 1.2rem; }
.btn-block { width: 100%; }
.btn-tiny { padding: 0.4rem 0.8rem; font-size: 0.9rem; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-container {
    max-width: 1200px; margin: 0 auto; padding: 0.5rem 1rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}
.brand-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); }
.main-nav { display: flex; gap: 1.5rem; align-items: center; }
.main-nav a { font-weight: 500; font-size: 0.95rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.mobile-burger { display: none; background: transparent; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-burger span { width: 25px; height: 2px; background: var(--text-primary); transition: 0.3s; }

/* Dashboard Hero */
.hero-dashboard {
    padding: 100px 1rem 3rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}
.hero-dashboard::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(57,255,20,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.hero-command-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    position: relative; z-index: 2;
}
.hero-text-panel h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero-text-panel p { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; }
.trust-signals { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-actions { display: flex; gap: 1rem; }

.hero-dashboard-panel { display: flex; flex-direction: column; gap: 1rem; }
.dashboard-card { background: rgba(10, 15, 20, 0.8); border: 1px solid rgba(57,255,20,0.2); border-radius: 8px; padding: 1.5rem; backdrop-filter: blur(5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem; }
.dash-header h3 { margin: 0; font-size: 1.2rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; box-shadow: 0 0 8px currentColor; }
.status-dot.green { background: var(--accent); color: var(--accent); animation: pulse 2s infinite; }
.dash-row { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 0.8rem; }
.dash-row span { color: var(--text-secondary); }
.dash-action { margin-top: 1.5rem; }

.dashboard-stats { display: flex; gap: 1rem; }
.stat-box { flex: 1; background: var(--primary); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 1rem; text-align: center; }
.stat-val { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 0.2rem; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; color: var(--text-secondary); font-weight: 500; }

.hero-ticker-row { max-width: 1200px; margin: 3rem auto 0; background: var(--primary); border-top: 1px solid rgba(57,255,20,0.2); border-bottom: 1px solid rgba(57,255,20,0.2); padding: 0.5rem 0; overflow: hidden; white-space: nowrap; display: flex; position: relative; }
.ticker-content { display: flex; gap: 3rem; animation: marquee 30s linear infinite; }
.ticker-item { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.5px; }

/* Animations */
@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

/* Reveal Classes */
.js-enabled .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-enabled .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Safety Strip */
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.safety-card { text-align: center; padding: 2rem; background: var(--surface); border-radius: 8px; transition: transform 0.3s ease; border: 1px solid transparent; }
.safety-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.05); }
.safety-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* Generic Section Elements */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-secondary); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

/* Contest Grid (Index + Catalog) */
.contest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.contest-card { background: var(--surface); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(255,255,255,0.05); }
.contest-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.4); border-color: rgba(57,255,20,0.3); }
.card-image-wrap { position: relative; height: 180px; background: var(--primary); }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s ease; }
.contest-card:hover .card-image-wrap img { opacity: 1; }
.card-badge { position: absolute; top: 1rem; right: 1rem; background: var(--primary); color: var(--accent); padding: 0.3rem 0.6rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 600; }
.card-desc { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 1.5rem; flex-grow: 1; }
.card-footer-info { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; margin-bottom: 1.5rem; }
.card-footer-info .rating { font-weight: 600; color: var(--text-primary); }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Sports Grid */
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sport-card-link { display: block; border-radius: 8px; overflow: hidden; position: relative; height: 200px; text-decoration: none; }
.sport-visual { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.sport-card-link:hover .sport-visual { transform: scale(1.05); }
.sport-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,20,0.9) 0%, rgba(10,15,20,0.2) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.sport-overlay h4 { margin: 0 0 0.5rem 0; font-size: 1.25rem; color: var(--text-primary); transition: color 0.3s ease; }
.sport-card-link:hover .sport-overlay h4 { color: var(--accent); }
.sport-overlay p { color: var(--text-secondary); font-size: 0.85rem; margin: 0; }

/* Table */
.table-responsive { overflow-x: auto; margin-bottom: 1.5rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.data-table { width: 100%; min-width: 700px; border-collapse: collapse; text-align: left; }
.data-table th, .data-table td { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem; }
.data-table th { background: var(--primary); font-family: var(--font-heading); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; color: var(--text-secondary); }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.highlight-stat { color: var(--accent); font-weight: 700; font-family: var(--font-heading); font-size: 1.1rem; }
.trend-up { color: #2ED10F; } .trend-down { color: #FF4A4A; } .trend-stable { color: #9BA4B5; }
.projections-note { text-align: right; font-size: 0.85rem; color: var(--text-secondary); }

/* AI Chat Preview */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.check-list { list-style: none; margin: 1.5rem 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.8rem; color: var(--text-secondary); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.ai-chat-mock { background: var(--primary); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.chat-header { background: rgba(255,255,255,0.02); padding: 1rem 1.5rem; font-family: var(--font-heading); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }
.chat-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.msg { padding: 1rem; border-radius: 8px; max-width: 85%; font-size: 0.95rem; line-height: 1.5; }
.msg.bot { background: var(--surface); color: var(--text-secondary); align-self: flex-start; border-left: 2px solid var(--accent); }
.msg.user { background: rgba(57, 255, 20, 0.1); color: var(--text-primary); align-self: flex-end; }

/* Timeline Steps */
.timeline-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.step-card { background: var(--surface); padding: 1.5rem; border-radius: 8px; position: relative; border-top: 3px solid var(--accent); }
.step-num { position: absolute; top: -15px; left: 1.5rem; background: var(--accent); color: var(--primary); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; border-radius: 50%; font-size: 1.1rem; }
.step-card h4 { margin-top: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

/* Article Grid */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.article-card { background: var(--primary); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 2rem; transition: transform 0.3s ease; }
.article-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.art-content p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1rem; }
.text-link { color: var(--accent); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }

/* Review Wall */
.review-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.review-card { background: var(--surface); border: 1px solid rgba(255,255,255,0.05); padding: 2rem; border-radius: 8px; width: calc(33.333% - 1rem); min-width: 300px; flex-grow: 1; }
.review-card .rating { color: var(--accent); margin-bottom: 1rem; letter-spacing: 2px; }
.reviewer { display: block; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-secondary); font-style: italic; }

/* Accordion */
.accordion-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 0 auto; }
.accordion-item { background: var(--primary); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; overflow: hidden; }
.accordion-header { width: 100%; text-align: left; background: none; border: none; padding: 1.5rem; color: var(--text-primary); font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-header::after { content: '+'; color: var(--accent); font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
.accordion-header[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-body { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.accordion-body p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* Footer */
.site-footer { background: var(--primary); border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 0 2rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 1rem; }
.footer-links h4 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-links a { display: block; color: var(--text-secondary); margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; text-align: center; color: var(--text-secondary); font-size: 0.85rem; }
.footer-bottom strong { color: var(--text-primary); }

/* Catalog specific */
.catalog-workspace { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; }
.catalog-filters { position: sticky; top: 90px; align-self: start; background: var(--surface); padding: 1.5rem; border-radius: 8px; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--text-secondary); }
.filter-group select, .filter-group input { width: 100%; padding: 0.8rem; background: var(--primary); border: 1px solid rgba(255,255,255,0.1); color: var(--text-primary); border-radius: 4px; font-family: var(--font-body); }
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: var(--accent); }
.compare-tray { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); border-top: 2px solid var(--accent); z-index: 100; transform: translateY(100%); transition: transform 0.4s var(--ease-smooth); box-shadow: 0 -10px 30px rgba(0,0,0,0.5); }
.compare-tray.active { transform: translateY(0); }
.tray-header { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 1rem; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.05); }
.tray-slots { display: flex; padding: 1rem; gap: 1rem; overflow-x: auto; min-height: 80px; align-items: center; }
.tray-item { background: var(--surface); border: 1px solid rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.85rem; display: flex; align-items: center; gap: 1rem; white-space: nowrap; }

/* Games / Sports Hub specific */
.game-cards-wrapper { display: flex; flex-direction: column; gap: 3rem; }
.sport-full-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--surface); border-radius: 12px; overflow: hidden; min-height: 300px; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s ease; }
.sport-full-card:hover { transform: translateY(-3px); border-color: rgba(57,255,20,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.sfc-media { background-size: cover; background-position: center; position: relative; }
.sfc-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent, var(--surface)); }
.sfc-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.sfc-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.sfc-icon { font-size: 2rem; }
.sfc-head h2 { margin: 0; font-size: 2rem; }
.chip { display: inline-block; background: rgba(255,255,255,0.05); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }
.sfc-bullets { list-style: none; margin-bottom: 1.5rem; width: 100%; }
.sfc-bullets li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text-secondary); }
.sfc-bullets li::before { content: '•'; color: var(--accent); position: absolute; left: 0; font-size: 1.5rem; line-height: 1; top: -3px; }
.sfc-count { font-size: 0.85rem; color: var(--text-secondary); }
.featured-rookie { border-color: var(--accent); }

/* Tournament Detail specific */
.tourn-hero { position: relative; padding: 100px 0 60px; min-height: 40vh; display: flex; align-items: flex-end; }
.tourn-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; opacity: 0.4; }
.tourn-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--background) 10%, transparent 100%); z-index: 1; }
.tourn-hero-content { position: relative; z-index: 2; width: 100%; }
.tourn-hero-content h1 { font-size: 3rem; margin: 1rem 0; }
.tourn-hero-content p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; }
.info-panels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 3rem; }
.ipanel { background: var(--surface); padding: 1.5rem; border-radius: 8px; border-left: 3px solid var(--accent); }

/* Forms & Text pages */
.text-content h1, .text-content h2, .text-content h3 { margin-top: 2rem; margin-bottom: 1rem; }
.text-content p { margin-bottom: 1.5rem; color: var(--text-secondary); }
.guide-layout { display: grid; grid-template-columns: 250px 1fr; gap: 4rem; }
.guide-nav { position: sticky; top: 90px; }
.guide-nav ul { list-style: none; }
.guide-nav li { margin-bottom: 0.5rem; }
.form-container { background: var(--surface); padding: 2.5rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: var(--font-heading); margin-bottom: 0.5rem; font-weight: 600; color: var(--text-primary); }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--primary); border: 1px solid rgba(255,255,255,0.1); color: var(--text-primary); padding: 0.8rem; border-radius: 4px; font-family: var(--font-body); resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.form-success { margin-top: 1.5rem; background: rgba(57, 255, 20, 0.1); border: 1px solid var(--accent); color: var(--accent); padding: 1rem; border-radius: 4px; }

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .timeline-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 992px) {
    .hero-command-grid, .split-layout, .catalog-workspace, .guide-layout { grid-template-columns: 1fr; gap: 2rem; }
    .hero-dashboard-panel { order: -1; }
    .hero-text-panel h1 { font-size: 2.5rem; }
    .sports-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: 1fr; }
    .safety-grid { grid-template-columns: 1fr; }
    .catalog-filters, .guide-nav { position: static; margin-bottom: 2rem; }
    .info-panels { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .main-nav.active { display: flex; }
    .mobile-burger { display: flex; }
    .header-actions { display: none; }
    .sport-full-card { grid-template-columns: 1fr; min-height: auto; }
    .sfc-media { height: 200px; }
    .sfc-media::after { background: linear-gradient(to bottom, transparent, var(--surface)); }
    .sfc-content { padding: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
