/* ============================================
   PONTURI.RO — RADAR SPORTIV INTELIGENT
   Premium Dark Sports Design
   ============================================ */

/* === CSS Variables === */
:root {
    /* Core Colors */
    --bg-primary: #060a13;
    --bg-secondary: #0c1220;
    --bg-card: #0f1729;
    --bg-card-hover: #141e33;
    --bg-elevated: #1a2540;
    
    /* Accent Colors */
    --accent-cyan: #00e5ff;
    --accent-purple: #7c3aed;
    --accent-green: #00e676;
    --accent-red: #ff3d5a;
    --accent-amber: #ffab00;
    --accent-blue: #2979ff;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #00e5ff 0%, #7c3aed 100%);
    --grad-card: linear-gradient(180deg, rgba(15, 23, 41, 0.9) 0%, rgba(6, 10, 19, 0.95) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    --grad-hot: linear-gradient(135deg, #ff3d5a 0%, #ff6d3a 100%);
    
    /* Text */
    --text-primary: #edf0f7;
    --text-secondary: #a8b2c4;
    --text-muted: #6b7a90;
    --text-accent: #00e5ff;
    
    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(0, 229, 255, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.15);
    
    /* Spacing */
    --container-max: 1320px;
    --section-padding: 80px;
    --card-radius: 16px;
    --radius-sm: 8px;
    --radius-pill: 100px;
    
    /* Fonts */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Glass */
    --glass-bg: rgba(15, 23, 41, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* === Ambient Background === */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.ambient-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: float1 20s ease-in-out infinite;
}

.ambient-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    top: 40%;
    right: -150px;
    animation: float2 25s ease-in-out infinite;
}

.ambient-orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation: float3 22s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 30px) scale(0.95); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, -40px) scale(0.9); }
    66% { transform: translate(40px, -60px) scale(1.05); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, -30px); }
}

/* Scanline */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    opacity: 0.4;
    z-index: 9999;
    animation: scanDown 8s linear infinite;
    pointer-events: none;
}

@keyframes scanDown {
    0% { top: -2px; opacity: 0; }
    5% { opacity: 0.4; }
    95% { opacity: 0.4; }
    100% { top: 100vh; opacity: 0; }
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 10, 19, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out);
}

.header--scrolled {
    background: rgba(6, 10, 19, 0.95);
    box-shadow: var(--shadow-md);
}

.header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.6)); }
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-dot {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--grad-primary);
    color: var(--bg-primary);
    text-transform: uppercase;
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link--active {
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.08);
}

.nav-icon {
    font-size: 1rem;
}

/* Live Pulse */
.live-pulse {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 61, 90, 0.1);
    border: 1px solid rgba(255, 61, 90, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 61, 90, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255, 61, 90, 0); }
}

.pulse-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-red);
}

.pulse-count {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Nav Overlay */
/* [OLD — replaced by mnav drawer] */
.mobile-nav-overlay--DISABLED {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 10, 19, 0.98);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.mobile-nav-overlay--open--DISABLED {
    opacity: 1;
}

.mobile-nav--DISABLED {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
}

.mobile-nav__link--DISABLED {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.25s;
}

.mobile-nav__link--DISABLED:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* === Hero === */
.hero {
    position: relative;
    z-index: 1;
    padding: 120px 24px 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    gap: 48px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-accent);
    background: rgba(0, 229, 255, 0.05);
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s var(--ease-out) both;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s 0.1s var(--ease-out) both;
}

.hero__title-accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__title-sub {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s 0.2s var(--ease-out) both;
}

.hero__desc strong {
    color: var(--text-primary);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.3s var(--ease-out) both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: var(--grad-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.35);
}

.btn--glass {
    background: var(--grad-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(8px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn__icon {
    font-size: 1.1rem;
}

/* Hero Ticker */
.hero__ticker {
    margin-top: 32px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    animation: fadeInUp 0.6s 0.4s var(--ease-out) both;
}

.ticker__label {
    padding: 12px 16px;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ticker__track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker__content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 12px 16px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ticker__score {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-primary);
}

.ticker__live {
    color: var(--accent-red);
    font-weight: 600;
}

/* Hero Stats */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    animation: fadeInUp 0.6s 0.5s var(--ease-out) both;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--card-radius);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out);
}

.stat-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.stat-card__value {
    display: block;
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-card__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* === Filter Bar === */
.filter-bar {
    position: sticky;
    top: 64px;
    z-index: 100;
    background: rgba(6, 10, 19, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 24px;
}

.filter-bar__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-bar__inner::-webkit-scrollbar { display: none; }

.filter-bar__sports {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.sport-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}

.sport-btn:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.sport-btn--active {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.filter-bar__time {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    margin-left: auto;
}

.time-btn {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
}

.time-btn:hover { color: var(--text-primary); }

.time-btn--active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.filter-bar__search {
    position: relative;
    flex-shrink: 0;
}

.search-input {
    padding: 8px 12px 8px 36px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 0.85rem;
    width: 200px;
    transition: all 0.3s;
    outline: none;
}

.search-input:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.03);
    width: 260px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* === Sections === */
.section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section__header {
    margin-bottom: 40px;
}

.section__title {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section__icon {
    font-size: 1.4rem;
}

.section__badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.section__badge--live {
    background: var(--accent-red);
    color: white;
    animation: pulse 1.5s ease-in-out infinite;
}

.section__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* === Match Grid === */
.match-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Match Card */
.match-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 20px;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.match-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.match-card:hover::before {
    opacity: 1;
}

.match-card--live {
    border-color: rgba(255, 61, 90, 0.3);
}

.match-card--live::before {
    background: var(--grad-hot);
    opacity: 1;
}

.match-card__league {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.match-card__league-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.match-card__time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.match-card__time--live {
    color: var(--accent-red);
    font-weight: 600;
}

.match-card__teams {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.match-card__team {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.match-card__team-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.match-card__team-score {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.match-card__vs {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Match Card Actions (Voting) */
.match-card__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.vote-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    font-size: 0.8rem;
}

.vote-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
}

.vote-btn--voted {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
}

.vote-btn__label {
    font-weight: 700;
    font-size: 0.85rem;
}

.vote-btn__pct {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Match Stats Bar */
.match-card__stats {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.match-stat {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.match-stat__value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-secondary);
}

/* === Loading / Radar Animation === */
.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 60px 0;
    color: var(--text-muted);
}

.radar-animation {
    position: relative;
    width: 120px;
    height: 120px;
}

.radar-ring {
    position: absolute;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-ring--1 { width: 40px; height: 40px; }
.radar-ring--2 { width: 80px; height: 80px; }
.radar-ring--3 { width: 120px; height: 120px; }

.radar-sweep {
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan));
    top: 50%;
    left: 50%;
    transform-origin: left center;
    animation: radarSweep 2s linear infinite;
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.radar-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px var(--accent-cyan);
}

/* === Predictions Grid === */
.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.community-stats {
    margin-top: 32px;
    padding: 24px;
    border-radius: var(--card-radius);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

.community-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.community-stat__bar {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.community-stat__fill {
    height: 100%;
    border-radius: 4px;
    background: var(--grad-primary);
    transition: width 1s var(--ease-out);
}

.community-stat__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.community-stat__value {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

/* === Analysis === */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.analysis-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 24px;
    transition: all 0.3s var(--ease-out);
}

.analysis-card:hover {
    border-color: var(--border-accent);
}

.analysis-card--featured {
    grid-column: 1 / -1;
}

.analysis-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.analysis-card__sport {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.analysis-card__tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
}

.analysis-card__tag--hot {
    background: rgba(255, 61, 90, 0.1);
    color: var(--accent-red);
}

.analysis-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.analysis-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.analysis-card__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-stat__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mini-stat__value {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
}

.form-dots {
    display: flex;
    gap: 4px;
}

.form-dot {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.form-dot--w { background: var(--accent-green); }
.form-dot--d { background: var(--accent-amber); }
.form-dot--l { background: var(--accent-red); }

.analysis-card__insight {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.insight-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.analysis-card__insight p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trends */
.trends-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s;
}

.trend-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.trend-item__icon {
    font-size: 1.1rem;
}

.trend-item__text {
    flex: 1;
    font-size: 0.9rem;
}

.trend-item__badge {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.trend-item__badge--up { background: rgba(0, 230, 118, 0.1); color: var(--accent-green); }
.trend-item__badge--neutral { background: rgba(255, 171, 0, 0.1); color: var(--accent-amber); }
.trend-item__badge--down { background: rgba(255, 61, 90, 0.1); color: var(--accent-red); }

/* Value List */
.value-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-item {
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
}

.value-item__match {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* === Calculator === */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.calc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 28px;
}

.calc-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-field label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.calc-field input {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.calc-field input:focus {
    border-color: var(--accent-cyan);
}

.calc-result {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.calc-result__ev {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.calc-result__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.calc-result__value {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-green);
}

.calc-result__value--negative {
    color: var(--accent-red);
}

.calc-result__verdict {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.calc-result__details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.calc-detail span:last-child {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-primary);
}

/* === School === */
.school-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.school-level__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.school-level__badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.school-level__badge--beginner { background: rgba(0, 230, 118, 0.1); color: var(--accent-green); }
.school-level__badge--intermediate { background: rgba(0, 229, 255, 0.1); color: var(--accent-cyan); }
.school-level__badge--advanced { background: rgba(124, 58, 237, 0.1); color: var(--accent-purple); }

.school-level__header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.school-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.school-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--card-radius);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.school-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.school-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.school-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.school-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.school-card__time {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === Content Grid (Tips) === */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.section__seo-content {
    padding: 32px;
    border-radius: var(--card-radius);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

.section__seo-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section__seo-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.section__seo-content p:last-child {
    margin-bottom: 0;
}

.section__seo-content strong {
    color: var(--text-primary);
}

/* === FAQ === */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 800px;
}

.faq-item {
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: var(--border-accent);
}

.faq-item__question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item[open] .faq-item__question::after {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}

.faq-item__answer {
    padding: 0 24px 18px;
}

.faq-item__answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Disclaimer === */
.disclaimer-box {
    padding: 24px 28px;
    border-radius: var(--card-radius);
    background: rgba(255, 171, 0, 0.05);
    border: 1px solid rgba(255, 171, 0, 0.15);
}

.disclaimer-box h3 {
    font-size: 1rem;
    color: var(--accent-amber);
    margin-bottom: 8px;
}

.disclaimer-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.disclaimer-box a {
    color: var(--accent-amber);
    text-decoration: underline;
}

/* === Footer === */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    padding: 60px 24px 24px;
}

.footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__tagline {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer__col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer__col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer__col a:hover {
    color: var(--accent-cyan);
}

.footer__bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__responsible {
    color: var(--accent-amber) !important;
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s var(--ease-out);
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
}

/* === Animations === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeInUp 0.5s var(--ease-out) both;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 48px;
    }
    
    .header__nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* [OLD — replaced by mnav drawer] */
.mobile-nav-overlay--DISABLED {
        display: block;
        pointer-events: none;
    }
    
    .mobile-nav-overlay--open--DISABLED {
        pointer-events: all;
    }
    
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .match-grid,
    .predictions-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-bar__search {
        display: none;
    }
    
    .footer__links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .school-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stat-card__value {
        font-size: 1.5rem;
    }
    
    .filter-bar__time {
        display: none;
    }
}

/* ============================================
   V2 ADDITIONS — Odds, Pick of Day, Enhanced UI
   ============================================ */

/* === Hero Content Container === */
.hero__content {
    max-width: 720px;
}

/* [REPLACED: .no-scroll — now using body.nav-locked in drawer CSS] */

/* === Match Card Inner Structure (JS-rendered) === */
.match-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.match-card__body {
    margin-bottom: 4px;
}

.match-card__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    font-family: var(--font-mono);
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    animation: liveBlink 1.2s ease infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: center;
}

.match-team {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.match-team--home { text-align: left; }
.match-team--away { text-align: right; }

.match-score {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 800;
}

.match-score__home,
.match-score__away {
    min-width: 24px;
    text-align: center;
    color: var(--text-primary);
}

.match-score__sep {
    color: var(--text-muted);
    font-weight: 400;
}

.match-time-display {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.06);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 229, 255, 0.12);
}

/* === Ticker Items === */
.ticker-item {
    display: inline;
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.ticker-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.ticker-sep {
    display: inline;
    margin: 0 14px;
    color: var(--text-muted);
}

/* === Menu Toggle Active === */
.menu-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle--active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === Section Modifiers (layout helpers) === */
.section--radar,
.section--pick,
.section--predictions,
.section--analysis,
.section--calculator,
.section--content,
.section--school,
.section--faq,
.section--disclaimer {
    /* inherits from .section, no extra needed */
}

/* === Pick of Day Container === */
.pick-of-day {
    max-width: 800px;
    margin: 0 auto;
}

/* === School Level === */
.school-level {
    margin-bottom: 32px;
}

/* === Analysis Points Container === */
.analysis-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* === Prediction Card Bar === */
.prediction-card__bar {
    margin-bottom: 4px;
}

/* === Verdict Icon === */
.verdict-icon {
    font-size: 1.2rem;
    margin-right: 6px;
}

/* === Verdict Box Modifiers === */
.verdict-box--prob,
.verdict-box--ev {
    /* inherits from .verdict-box */
}

/* === Footer Brand === */
.footer__brand {
    min-width: 200px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer__logo .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer__logo .logo-dot {
    color: var(--accent-cyan);
}

/* === Match Card Odds === */
.match-odds {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    justify-content: center;
}

.match-odds--secondary {
    margin-top: 4px;
}

.match-odd {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 0;
}

.match-odd:hover {
    background: rgba(0,240,255,0.08);
    border-color: rgba(0,240,255,0.25);
}

.match-odd--selected {
    background: rgba(0,240,255,0.12) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 12px rgba(0,240,255,0.15);
}

.match-odd--sm {
    padding: 4px 3px;
}

.match-odd__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.match-odd__value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
}

.match-odd--sm .match-odd__label { font-size: 0.6rem; }
.match-odd--sm .match-odd__value { font-size: 0.8rem; }

/* === Match Votes === */
.match-votes {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.vote-bar {
    display: flex;
    height: 22px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.vote-bar__seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    min-width: 24px;
    transition: width 0.4s ease;
}

.vote-bar__seg--1 { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.vote-bar__seg--x { background: linear-gradient(135deg, #667eea, #764ba2); }
.vote-bar__seg--2 { background: linear-gradient(135deg, #f857a6, #ff5858); }

.match-votes__count {
    display: block;
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* === Vote Buttons === */
.vote-btns {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    justify-content: center;
}

.vote-btn {
    flex: 1;
    padding: 6px 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.vote-btn:hover {
    background: rgba(0,240,255,0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* === Selecția Zilei (Pick of Day) === */
.section--pick {
    position: relative;
}

.pick-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
    background-size: 200% 100%;
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pick-card__ribbon {
    position: absolute;
    top: 16px;
    right: -8px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 6px 20px 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.3);
}

.pick-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pick-card__league {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.pick-card__date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pick-card__teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.pick-team {
    text-align: center;
    flex: 1;
}

.pick-team__name {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pick-team__form {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.pick-vs {
    text-align: center;
    min-width: 60px;
}

.pick-vs__time {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
}

.pick-vs__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Odds in Pick Card */
.pick-card__odds {
    margin-bottom: 24px;
}

.pick-card__odds h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

.odds-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 8px;
}

.odds-row--secondary {
    margin-bottom: 0;
}

.odd-box {
    flex: 1;
    max-width: 120px;
    text-align: center;
    padding: 10px 8px;
    background: rgba(0,240,255,0.04);
    border: 1px solid rgba(0,240,255,0.12);
    border-radius: 10px;
    transition: all 0.2s;
}

.odd-box:hover {
    border-color: rgba(0,240,255,0.3);
    background: rgba(0,240,255,0.08);
}

.odd-box--small {
    padding: 8px 6px;
    max-width: 100px;
}

.odd-box__label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.odd-box__value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
}

.odd-box--small .odd-box__value {
    font-size: 0.95rem;
}

/* Analysis Points */
.pick-card__analysis {
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.pick-card__analysis h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.analysis-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.analysis-point:last-child { margin-bottom: 0; }

.analysis-point__icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.analysis-point p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Verdict */
.pick-card__verdict {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.verdict-box {
    text-align: center;
    padding: 14px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
}

.verdict-box__label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.verdict-box__pick {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.verdict-box__odds {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-top: 4px;
}

.prob-bar {
    position: relative;
    height: 28px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
}

.prob-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 8px;
    transition: width 0.6s ease;
}

.prob-bar__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.verdict-box__value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}

.ev-positive { color: #00e676 !important; }
.ev-negative { color: #ff5252 !important; }

.pick-card__disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    opacity: 0.7;
}

/* === Prediction Cards Enhanced === */
.prediction-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px;
    backdrop-filter: blur(12px);
    transition: all 0.25s;
}

.prediction-card:hover {
    border-color: rgba(0,240,255,0.2);
    transform: translateY(-2px);
}

.prediction-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.prediction-card__league {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.prediction-card__time {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.prediction-card__teams {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.prediction-card__odds {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.pred-bar {
    display: flex;
    height: 24px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.pred-bar__seg {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    transition: width 0.4s ease;
}

.pred-bar__seg span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
}

.pred-bar__seg--1 { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.pred-bar__seg--x { background: linear-gradient(135deg, #667eea, #764ba2); }
.pred-bar__seg--2 { background: linear-gradient(135deg, #f857a6, #ff5858); }

.prediction-card__vote {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.prediction-card__voted {
    text-align: center;
    color: #00e676;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.prediction-card__count {
    display: block;
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

/* === Odds Probability Comparison === */
.analysis-card__odds-compare {
    margin: 16px 0;
    padding: 14px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}

.analysis-card__odds-compare h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.odds-prob-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.odds-prob {
    display: flex;
    align-items: center;
    gap: 10px;
}

.odds-prob > span:first-child {
    width: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.odds-prob > span:last-child {
    width: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
}

.odds-prob__bar {
    flex: 1;
    height: 18px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    overflow: hidden;
}

.odds-prob__fill {
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.odds-prob__fill--x {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.odds-prob__fill--2 {
    background: linear-gradient(90deg, #f857a6, #ff5858);
}

/* === Value Finder Enhanced === */
.value-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.value-item:last-child { border-bottom: 0; }

.value-item__match {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
    flex: 1;
    min-width: 140px;
}

.value-item__diff {
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    padding: 3px 8px;
    border-radius: 6px;
}

.value-item__diff--up {
    color: #00e676;
    background: rgba(0,230,118,0.1);
}

.value-item__diff--down {
    color: #ff5252;
    background: rgba(255,82,82,0.1);
}

.value-item__detail {
    font-size: 0.72rem;
    color: var(--text-muted);
    width: 100%;
}

/* === Article Content === */
.section__article {
    margin-top: 32px;
    padding: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.section__article h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.section__article h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.section__article p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.section__article p:last-child { margin-bottom: 0; }

/* === Form Dots === */
.form-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 800;
    color: #fff;
}

.form-dot--w { background: #00c853; }
.form-dot--d { background: #ffa000; }
.form-dot--l { background: #e53935; }

/* === No Matches === */
.no-matches {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* === Mobile Responsive for new elements === */
@media (max-width: 768px) {
    .pick-card { padding: 20px 16px; }
    .pick-card__teams { flex-direction: column; gap: 12px; }
    .pick-team__name { font-size: 1.1rem; }
    .pick-card__verdict { grid-template-columns: 1fr; gap: 8px; }
    .odds-row { flex-wrap: wrap; }
    .odd-box { max-width: none; }
    .prediction-card__odds { gap: 8px; font-size: 0.72rem; }
    .predictions-grid { grid-template-columns: 1fr; }
    .pick-card__ribbon { font-size: 0.65rem; padding: 5px 14px 5px 10px; }
    .match-odd__value { font-size: 0.8rem; }
    .match-odd__label { font-size: 0.6rem; }
    .section__article { padding: 20px 16px; }
    .section__article h3 { font-size: 1.05rem; }
    .section__article p { font-size: 0.87rem; }
}

@media (max-width: 480px) {
    .pick-card__odds h4 { font-size: 0.7rem; }
    .odd-box__value { font-size: 0.95rem; }
    .odd-box { padding: 8px 6px; }
    .match-odds { gap: 4px; }
    .match-odd { padding: 5px 3px; }
}

/* ============================================
   V2.3 — LEAGUE GROUP HEADERS (Flashscore-style)
   ============================================ */
.league-group {
    margin-bottom: 8px;
}
.league-group__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(15, 23, 41, 0.9), rgba(20, 30, 55, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
    position: sticky;
    top: 64px;
    z-index: 10;
    backdrop-filter: blur(10px);
    flex-wrap: nowrap;
    min-height: 40px;
}
.league-group__header--live {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(15, 23, 41, 0.95));
    border-color: rgba(239, 68, 68, 0.3);
}
.league-group__flag {
    font-size: 1.15rem;
    line-height: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.league-group__name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f0f4ff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.league-group__header--live .league-group__name {
    color: #ef4444;
}
.league-group__sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.4);
    flex-shrink: 0;
}
.league-group__country {
    font-size: 0.72rem;
    color: rgba(148, 163, 184, 0.6);
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}
.league-group__count {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.5);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.league-group .match-card {
    border-radius: 0;
    border-top: none;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.league-group .match-card:last-child {
    border-radius: 0 0 10px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.league-group .match-card__header {
    border-bottom: none;
    padding: 6px 12px;
}
/* Hide league name in card header since we have the group header */
.league-group .match-card__league-name {
    display: none;
}
.live-league-label {
    font-size: 0.72rem;
    color: rgba(148, 163, 184, 0.6);
    padding: 6px 16px 2px;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.league-group--live .match-card {
    border-left: 2px solid rgba(239, 68, 68, 0.3);
}

/* Source badge update */
.source-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: rgba(148, 163, 184, 0.5);
    background: rgba(255, 255, 255, 0.03);
    padding: 3px 8px;
    border-radius: 20px;
    margin-top: 8px;
}
.source-badge__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
}
.source-badge--demo .source-badge__dot {
    background: #f59e0b;
}

@media (max-width: 768px) {
    .league-group__header {
        padding: 8px 12px;
        top: 56px;
        gap: 6px;
    }
    .league-group__name { font-size: 0.75rem; }
    .league-group__country { display: none; }
    .league-group__flag { font-size: 1rem; }
    .league-group__count { font-size: 0.65rem; }
    .league-group__sep { width: 2px; height: 2px; }
    .match-card__body { padding: 8px 10px; }
    .match-card__header { padding: 5px 10px; margin-bottom: 8px; }
    .match-teams { gap: 6px; }
    .match-team { font-size: 0.82rem; word-break: break-word; }
    .match-score { font-size: 1.15rem; }
    .match-odds { gap: 3px; margin-top: 6px; flex-wrap: wrap; justify-content: center; }
    .match-odds--secondary { margin-top: 2px; }
    .match-odd { padding: 4px 3px; min-width: 36px; flex: 0 1 calc(25% - 3px); }
    .match-odd__value { font-size: 0.78rem; }
    .match-odd__label { font-size: 0.55rem; letter-spacing: 0; }
    .vote-bar { height: 20px; }
    .vote-bar__seg { font-size: 0.55rem; }
    .vote-btns { gap: 4px; }
    .vote-btn { padding: 4px 10px; font-size: 0.7rem; }
    .faq-grid { gap: 6px; }
    .faq-item__question { font-size: 0.88rem; padding: 12px 14px; }
    .faq-item__answer p { font-size: 0.84rem; line-height: 1.6; }
    .section__article h3 { font-size: 1rem; }
    .section__article h4 { font-size: 0.92rem; }
    .section__article p { font-size: 0.85rem; line-height: 1.65; }
    .live-league-label { font-size: 0.68rem; padding: 4px 12px; }
}

@media (max-width: 480px) {
    .league-group__header { padding: 7px 10px; top: 52px; }
    .league-group__name { font-size: 0.7rem; }
    .league-group__count { font-size: 0.6rem; }
    .match-team { font-size: 0.78rem; }
    .match-score { font-size: 1rem; gap: 2px; }
    .match-score__home, .match-score__away { min-width: 18px; }
    .match-odds { gap: 2px; }
    .match-odd { min-width: 32px; padding: 3px 2px; flex: 0 1 calc(25% - 2px); }
    .match-odd__value { font-size: 0.72rem; }
    .match-odd__label { font-size: 0.5rem; }
    .match-card__league-name { font-size: 0.65rem; }
    .match-card__time { font-size: 0.65rem; }
    .section__title { font-size: 1.1rem; }
    .school-card h4 { font-size: 0.88rem; }
    .school-card p { font-size: 0.78rem; }
    .disclaimer-box p { font-size: 0.82rem; }
    .footer__links { grid-template-columns: 1fr; gap: 16px; }
    .footer__tagline { font-size: 0.8rem; }
}

@media (max-width: 360px) {
    .match-team { font-size: 0.72rem; }
    .match-odd { flex: 0 1 calc(33.33% - 2px); }
    .match-odd__value { font-size: 0.68rem; }
    .match-odd__label { display: none; }
    .league-group__name { font-size: 0.65rem; }
    .hero__title { font-size: 1.3rem; }
    .hero__title-sub { font-size: 0.72rem; }
}


/* ============================================
   V2.4 — SUBPAGE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    padding: 12px 0;
    background: rgba(10, 14, 23, 0.6);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.breadcrumb a {
    color: var(--accent-cyan);
    text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb__current { color: var(--text-secondary); }

/* Page Content */
.page-content {
    padding: 40px 0 60px;
    min-height: 60vh;
}
.page-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Article */
.page-article h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}
.page-article__intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-article h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 32px 0 12px;
    line-height: 1.3;
}
.page-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 10px;
}
.page-article p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}
.page-article strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Page CTA */
.page-article__cta {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Page Table */
.page-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.88rem;
}
.page-table th {
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent-cyan);
    font-weight: 600;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.page-table td {
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-secondary);
}
.page-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* Page Nav (internal links) */
.page-article__nav {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.page-article__nav h3 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.page-article__nav a {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px 8px 4px 0;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 8px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}
.page-article__nav a:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: var(--accent-cyan);
}

/* Legal page */
.page-article--legal h2 {
    font-size: 1.15rem;
    margin-top: 28px;
}
.page-article--legal p {
    font-size: 0.9rem;
}

/* School Hub (landing page cards) */
.school-hub {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.school-hub__card {
    display: block;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
}
.school-hub__card:hover {
    background: rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}
.school-hub__icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}
.school-hub__card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0 0 8px;
}
.school-hub__card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.school-hub__time {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--accent-cyan);
    opacity: 0.7;
}

/* Subpage mobile */
@media (max-width: 768px) {
    .page-article h1 { font-size: 1.5rem; }
    .page-article__intro { font-size: 0.95rem; }
    .page-article h2 { font-size: 1.15rem; }
    .page-article p { font-size: 0.88rem; }
    .page-article__cta { flex-direction: column; }
    .page-article__cta .btn { width: 100%; justify-content: center; }
    .page-table { font-size: 0.78rem; }
    .page-table th, .page-table td { padding: 6px 8px; }
}
@media (max-width: 480px) {
    .page-article h1 { font-size: 1.3rem; }
    .page-article__nav a { font-size: 0.78rem; padding: 6px 12px; }
}

/* ============================================
   V2.5 — SEO CONTENT STYLING (Ghid + Despre sections)
   ============================================ */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 8px;
}
.seo-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 36px 0 14px;
    line-height: 1.3;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.seo-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.seo-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 24px 0 10px;
}
.seo-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 18px 0 8px;
}
.seo-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}
.seo-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.seo-content small {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Highlight Box (EV formula, examples) */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.06), rgba(99, 102, 241, 0.06));
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 16px 0 20px;
}
.highlight-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* SEO Content Tables */
.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 20px;
    font-size: 0.85rem;
    border-radius: 10px;
    overflow: hidden;
}
.seo-content thead th {
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent-cyan);
    font-weight: 600;
    text-align: left;
    padding: 10px 12px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}
.seo-content tbody td {
    padding: 9px 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.seo-content tbody tr:hover td {
    background: rgba(255,255,255,0.02);
}
.seo-content tbody tr:last-child td {
    border-bottom: none;
}

/* Ordered Lists (5 greșeli) */
.seo-content ol {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 14px 0 20px;
}
.seo-content ol li {
    counter-increment: item;
    position: relative;
    padding: 14px 16px 14px 52px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.seo-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seo-content ol li strong {
    color: var(--text-primary);
}

/* Unordered lists in seo-content */
.seo-content ul {
    padding-left: 20px;
    margin: 12px 0 16px;
}
.seo-content ul li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 6px;
}

/* Mobile seo-content */
@media (max-width: 768px) {
    .seo-content h2 { font-size: 1.15rem; }
    .seo-content h3 { font-size: 0.95rem; }
    .seo-content p { font-size: 0.85rem; }
    .seo-content table { font-size: 0.75rem; }
    .seo-content thead th { padding: 8px 8px; font-size: 0.68rem; }
    .seo-content tbody td { padding: 7px 8px; }
    .seo-content ol li { padding: 12px 12px 12px 44px; font-size: 0.82rem; }
    .seo-content ol li::before { left: 10px; top: 12px; width: 22px; height: 22px; font-size: 0.72rem; }
    .highlight-box { padding: 14px 16px; }
    .highlight-box p { font-size: 0.84rem; }
}
@media (max-width: 480px) {
    .seo-content table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ============================================
   V3.0 — TRENDING, ODDS MOVEMENT, COMPACT MOBILE
   ============================================ */

/* Odds Movement Indicator */
.odds-move {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.odds-move--down {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}
.odds-move--up {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* Match Card Header with movement */
.match-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

/* League Group Toggle (mobile collapse) */
.league-group__toggle {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}
.league-group__matches--collapsed .match-card--hidden {
    display: none !important;
}
.league-group__show-more {
    width: 100%;
    padding: 10px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px dashed rgba(0, 240, 255, 0.15);
    border-radius: 8px;
    color: var(--accent-cyan);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}
.league-group__show-more:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--accent-cyan);
}

/* Flashscore Link */
.league-group__fs-link {
    text-decoration: none;
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.2s;
    margin-left: 4px;
}
.league-group__fs-link:hover {
    opacity: 1;
}

/* No Matches Message */
.no-matches {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.no-matches p { margin: 0; }
.no-matches__sub { font-size: 0.82rem; opacity: 0.6; margin-top: 8px; }

/* Trending Section */
.section--trending { margin-bottom: 32px; }
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.trending-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.25s;
}
.trending-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-1px);
}
.trending-card--hot {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.03);
}
.trending-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.trending-card__league {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trending-card__time {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    font-weight: 700;
}
.trending-card__teams {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.trending-card__moves {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}
.trend-move {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}
.move-down { background: rgba(239,68,68,0.12); color: #ef4444; }
.move-up { background: rgba(34,197,94,0.12); color: #22c55e; }
.trending-card__info {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
}
.trending-card__bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.trending-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 3px;
    font-size: 0;
    transition: width 0.5s;
}
.trending-empty {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
}

/* Tool Page Sections */
.tool-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 24px;
}
.tool-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 8px;
}
.tool-section > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}
.calc-input-group {
    margin-bottom: 14px;
}
.calc-input-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}
.calc-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    transition: border-color 0.2s;
}
.calc-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}
.calc-results {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.calc-result {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}
.calc-result__label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.calc-result__value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}
.calc-verdict {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Hero Date */
.hero__date { text-transform: capitalize; }

/* Mobile: compact trending */
@media (max-width: 768px) {
    .trending-grid { grid-template-columns: 1fr; }
    .trending-card { padding: 12px; }
    .tool-section { padding: 20px 16px; }
    .calc-results { grid-template-columns: 1fr 1fr; }
    .league-group__header { cursor: pointer; }
}
@media (max-width: 480px) {
    .calc-results { grid-template-columns: 1fr; }
}

/* ============================================
   V3.0 FIX — Missing card classes + brighter text
   ============================================ */

/* Team names in new card structure */
.team {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}
.team--home::after {
    content: ' vs';
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.78rem;
    margin-left: 6px;
}

/* Match time display */
.match-time {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}
.match-time--live {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ef4444;
    animation: pulse-live 1.5s ease-in-out infinite;
}
@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Match score (live) */
.match-score {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 8px;
}

/* Vote count */
.vote-count {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 4px;
}

/* Section description — brighter */
.section__desc {
    font-size: 0.92rem;
    color: #9aa8be;
    max-width: 600px;
    line-height: 1.6;
}

/* League group count text — brighter */
.league-group__count {
    color: #7a8a9e;
}
.league-group__country {
    color: #7a8a9e;
}

/* Trending card text fixes */
.trending-card__info {
    font-size: 0.75rem;
    color: #8b99af;
}
.trending-card__league {
    color: #8b99af;
}

/* "No matches" message — brighter */
.no-matches p {
    color: #9aa8be;
    font-size: 0.95rem;
}
.no-matches__sub {
    color: #7a8a9e;
}

/* Loading state text */
.loading-state p {
    color: #9aa8be;
}

/* Hero subtitle brighter */
.hero__title-sub {
    color: #8fa0b8 !important;
}

/* Sport filter buttons — better contrast */
.sport-btn {
    color: #8fa0b8;
}
.sport-btn--active {
    color: var(--text-primary);
}

/* Match card within league group — ensure padding */
.league-group .match-card {
    padding: 12px 16px;
}
.league-group .match-card__header {
    padding: 0;
    margin-bottom: 6px;
}

/* Odd value text — ensure visible */
.match-odd__val {
    color: var(--text-primary);
    font-weight: 700;
}
.match-odd__label {
    color: #7a8a9e;
}

/* Secondary odds (O/U, GG) */
.match-odd--secondary {
    opacity: 0.75;
}
.match-odd--secondary:hover {
    opacity: 1;
}

/* ============================================
   V3.1 — DATE GROUP HEADERS (AZI / MÂINE / etc.)
   ============================================ */
.date-group {
    margin-bottom: 20px;
}
.date-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.06), rgba(99, 102, 241, 0.06));
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: 12px;
    margin-bottom: 10px;
}
.date-group__label {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}
.date-group__count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .date-group__header {
        padding: 10px 14px;
        border-radius: 10px;
    }
    .date-group__label { font-size: 0.82rem; }
    .date-group__count { font-size: 0.68rem; }
}

/* =========================================
   V3.2 — ODDS ARROWS, DAY FILTERS, FORM
   ========================================= */

/* --- Odds Arrows (on each individual odd) --- */
.odds-arrow {
    font-size: 0.6rem;
    font-weight: 700;
    margin-left: 2px;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}
.odds-arrow--down {
    color: #ef4444;
    animation: arrowPulseDown 2s ease infinite;
}
.odds-arrow--up {
    color: #22c55e;
    animation: arrowPulseUp 2s ease infinite;
}
@keyframes arrowPulseDown {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes arrowPulseUp {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Make match-odd__val accommodate arrow */
.match-odd__val {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

/* --- Trending Move Arrows --- */
.trend-move--down {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    display: inline-block;
    margin: 2px;
}
.trend-move--up {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    display: inline-block;
    margin: 2px;
}

/* --- Day Filter Buttons --- */
.day-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.day-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}
.day-btn:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.2);
    color: var(--text-primary);
}
.day-btn--active {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(99, 102, 241, 0.15));
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}
.day-btn__count {
    background: rgba(255, 255, 255, 0.08);
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}
.day-btn--active .day-btn__count {
    background: rgba(0, 240, 255, 0.2);
    color: var(--accent-cyan);
}

/* --- Form Display (W/D/L dots) --- */
.match-form {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.form-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.form-dots {
    display: inline-flex;
    gap: 3px;
}
.form-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 18px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    color: white;
}
.form-dot--w { background: #22c55e; }
.form-dot--d { background: #f59e0b; }
.form-dot--l { background: #ef4444; }
.form-vs {
    color: var(--text-muted);
    font-size: 0.65rem;
    margin: 0 2px;
}

/* --- MÂINE Tags on predictions/value --- */
.pred-card__daytag,
.value-item__daytag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(0, 240, 255, 0.15));
    color: var(--accent-cyan);
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.value-item__daytag {
    margin-right: 6px;
}

/* --- No Matches State --- */
.no-matches {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}
.no-matches p {
    font-size: 1rem;
    margin-bottom: 8px;
}
.no-matches__sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.no-matches__sub a {
    color: var(--accent-cyan);
    text-decoration: underline;
    cursor: pointer;
}

/* --- Mobile responsive for new elements --- */
@media (max-width: 768px) {
    .day-filters {
        gap: 5px;
        margin-bottom: 12px;
    }
    .day-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 4px;
    }
    .day-btn__count {
        font-size: 0.62rem;
        padding: 1px 5px;
    }
    .odds-arrow {
        font-size: 0.5rem;
    }
    .match-form {
        padding: 4px 8px;
        gap: 4px;
        font-size: 0.65rem;
    }
    .form-dot {
        width: 16px;
        height: 15px;
        font-size: 0.52rem;
    }
    .trend-move--down,
    .trend-move--up {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .day-filters {
        gap: 4px;
    }
    .day-btn {
        padding: 5px 9px;
        font-size: 0.7rem;
        border-radius: 20px;
    }
}

/* === V3.2 FIX — Arrow diff display + odds compare + started === */
.odds-arrow__icon {
    font-size: 0.55rem;
}
.odds-arrow__diff {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.odds-arrow--down .odds-arrow__diff {
    color: #ef4444;
}
.odds-arrow--up .odds-arrow__diff {
    color: #22c55e;
}

/* Match started indicator */
.match-time--started {
    color: #f59e0b;
    font-weight: 600;
}
.match-card--started {
    opacity: 0.7;
}

/* Odds compare bars in analysis */
.odds-compare {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}
.odds-compare__item {
    flex: 1;
    text-align: center;
}
.odds-compare__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.odds-compare__val {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.odds-compare__bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 3px;
}
.odds-compare__fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}
.odds-compare__fill--h { background: var(--accent-cyan); }
.odds-compare__fill--d { background: var(--accent-amber, #f59e0b); }
.odds-compare__fill--a { background: var(--accent-purple); }
.odds-compare__pct {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .odds-arrow__diff { font-size: 0.48rem; }
    .odds-arrow__icon { font-size: 0.48rem; }
    .odds-compare { gap: 4px; }
    .odds-compare__val { font-size: 0.82rem; }
}

/* ============================================
   V4.1 — COMPACT MATCH ROWS (FlashScore-style)
   Overrides old match-card and league-group styles
   ============================================ */

/* === RESET OLD STYLES === */
.match-card,
.match-card__header,
.match-card__body,
.match-card__teams,
.match-card__team,
.match-card__actions,
.match-card__stats,
.match-card__league,
.match-card__league-name,
.match-card__time,
.match-card__vs,
.match-card__team-name,
.match-card__team-score,
.match-card--live,
.match-card--started,
.match-card__live,
.match-odds,
.match-odd,
.match-odd--sm,
.match-odd__label,
.match-odd__value,
.match-score,
.match-time-display,
.league-group__fs-link,
.match-form { display: none !important; }

/* === LEAGUE GROUP === */
.league-group {
    background: var(--bg-card, #1a1d2e);
    border: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}
.league-group__header {
    display: flex !important;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
    border-radius: 0;
    gap: 6px;
    user-select: none;
    position: relative;
    top: auto;
    z-index: auto;
    backdrop-filter: none;
    flex-wrap: nowrap;
    min-height: 0;
    margin-bottom: 0;
    border: none;
}
.league-group__header--collapsible { cursor: pointer; }
.league-group__header--collapsible:hover { background: rgba(255,255,255,0.05); }
.league-group--live { border-color: rgba(255, 61, 90, 0.3); }
.league-group--live .league-group__header { background: rgba(255, 61, 90, 0.08); }
.league-group__flag { font-size: 0.9rem; flex-shrink: 0; line-height: 1; }
.league-group__name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-primary, #e8e8e8);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.league-group--live .league-group__name { color: #ff3d5a; }
.league-group__sep {
    color: var(--text-muted, #555);
    font-size: 0.6rem;
    flex-shrink: 0;
}
.league-group__country {
    font-size: 0.68rem;
    color: var(--text-muted, #777);
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}
.league-group__count {
    font-size: 0.65rem;
    color: var(--text-muted, #666);
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}
.league-group__toggle {
    font-size: 0.7rem;
    color: var(--text-muted, #666);
    margin-left: 6px;
    transition: transform 0.2s;
}
.league-group__show-more {
    display: block;
    width: 100%;
    padding: 6px;
    font-size: 0.72rem;
    color: var(--accent-cyan, #00d4ff);
    background: rgba(0, 212, 255, 0.05);
    border: none;
    cursor: pointer;
    text-align: center;
}
.league-group__show-more:hover { background: rgba(0, 212, 255, 0.1); }

/* === MATCH ROW (compact, single-line) === */
.match-row {
    display: grid !important;
    grid-template-columns: 52px 1fr auto 1fr minmax(0, max-content) auto auto;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s;
    cursor: default;
    min-height: 40px;
    gap: 0;
}
.match-row:last-child { border-bottom: none; }
.match-row:hover { background: rgba(255,255,255,0.03); }
.match-row--live { background: rgba(255, 61, 90, 0.06); }
.match-row--live:hover { background: rgba(255, 61, 90, 0.1); }
.match-row--fin { opacity: 0.5; }
.match-row--started { opacity: 0.7; }

/* Time */
.mr-time {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary, #999);
    text-align: center;
    white-space: nowrap;
}
.mr-time--live { color: #ff3d5a; font-weight: 700; animation: livePulse 2s infinite; }
.mr-time--fin { color: var(--text-muted, #666); }
.mr-time--started { color: var(--accent-cyan, #00d4ff); }

@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Teams */
.mr-home, .mr-away {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary, #e8e8e8);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 6px;
}
.mr-home { text-align: right; }
.mr-away { text-align: left; }

/* VS / Score */
.mr-vs {
    font-size: 0.7rem;
    color: var(--text-muted, #666);
    padding: 0 8px;
    text-align: center;
    min-width: 30px;
}
.mr-score {
    font-family: var(--font-mono, monospace);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    padding: 0 8px;
    text-align: center;
    min-width: 40px;
}
.mr-score--live { color: #ff3d5a; }

/* Odds container */
.mr-odds {
    display: flex !important;
    gap: 3px;
    align-items: center;
    margin-left: 8px;
}

/* Individual odds */
.mr-o {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 3px 6px;
    font-family: var(--font-mono, monospace);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary, #e0e0e0);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
    transition: all 0.15s;
}
.mr-o:hover { background: rgba(0, 212, 255, 0.1); border-color: rgba(0, 212, 255, 0.3); }
.mr-o--x { color: var(--accent-cyan, #00d4ff); }
.mr-o--sm {
    min-width: 38px;
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.75;
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.05);
}

/* Odds labels inside box */
.mr-o em {
    font-style: normal;
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-muted, #666);
    margin-right: 4px;
    letter-spacing: 0.03em;
}
.mr-o--x em { color: var(--accent-cyan, #00d4ff); opacity: 0.7; }
.mr-o--sm em { font-size: 0.5rem; margin-right: 3px; }

/* Odds arrows */
.arr-d { color: #00c853; font-size: 0.6rem; margin-left: 2px; }
.arr-u { color: #ff3d5a; font-size: 0.6rem; margin-left: 2px; }

/* Form (compact) */
.mr-form { display: flex; align-items: center; gap: 3px; margin-left: 6px; }
.mr-form-vs { color: var(--text-muted, #666); font-size: 0.6rem; }
.mf { display: flex; gap: 1px; }
.mf i {
    font-style: normal; font-size: 0.55rem; font-weight: 700;
    width: 14px; height: 14px; display: inline-flex;
    align-items: center; justify-content: center; border-radius: 2px;
}
.mf-w { background: rgba(0,200,83,0.2); color: #00c853; }
.mf-d { background: rgba(255,193,7,0.2); color: #ffc107; }
.mf-l { background: rgba(255,61,90,0.2); color: #ff3d5a; }

/* Prediction badge */
.mr-pred { font-size: 0.75rem; margin-left: 4px; cursor: help; }

/* Date group */
.date-group { margin-bottom: 16px; }
.date-group__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0; margin-bottom: 4px;
}
.date-group__label { font-size: 0.82rem; font-weight: 700; color: var(--text-primary, #e8e8e8); }
.date-group__count {
    font-size: 0.72rem; color: var(--accent-cyan, #00d4ff); font-weight: 600;
    background: rgba(0, 212, 255, 0.1); padding: 2px 10px; border-radius: 12px;
}

/* No matches */
.no-matches { text-align: center; padding: 40px 20px; color: var(--text-secondary, #999); }
.no-matches__sub { font-size: 0.85rem; margin-top: 8px; }
.no-matches__sub a { color: var(--accent-cyan, #00d4ff); text-decoration: none; }

/* Match grid */
.match-grid { display: flex !important; flex-direction: column; gap: 12px; }

/* Trending card — date badge */
.trending-card__date {
    font-size: 0.65rem; font-weight: 600;
    color: var(--accent-cyan, #00d4ff);
    background: rgba(0, 212, 255, 0.1);
    padding: 1px 6px; border-radius: 4px;
    margin-left: 6px;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .match-row {
        display: grid !important;
        grid-template-columns: 44px 1fr auto 1fr;
        grid-template-rows: auto auto;
        padding: 6px 8px;
        gap: 2px 0;
    }
    .mr-time { font-size: 0.72rem; grid-row: 1 / 3; align-self: center; }
    .mr-home { font-size: 0.78rem; grid-column: 2; text-align: right; padding: 0 4px; }
    .mr-vs, .mr-score { grid-column: 3; font-size: 0.7rem; padding: 0 4px; }
    .mr-away { font-size: 0.78rem; grid-column: 4; text-align: left; padding: 0 4px; }
    .mr-odds {
        grid-column: 2 / 5; grid-row: 2; margin-left: 0;
        justify-content: center; gap: 2px; padding-top: 3px;
    }
    .mr-o { min-width: 36px; font-size: 0.7rem; padding: 2px 4px; }
    .mr-o--sm { min-width: 32px; font-size: 0.65rem; }
    .mr-form { display: none; }
    .mr-pred { display: none; }
    .league-group__header { padding: 6px 8px; }
    .league-group__name { font-size: 0.68rem; }
}

@media (max-width: 480px) {
    .mr-o--sm { display: none; }
    .mr-home, .mr-away { font-size: 0.72rem; }
    .mr-o em { display: none; }
}

/* === LOTO PROMO BOX === */
.loto-promo{background:var(--card-bg,#0f1923);border:1px solid rgba(251,191,36,.15);border-radius:12px;padding:0;margin-bottom:24px;overflow:hidden;position:relative;}
.loto-promo::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#fbbf24,#f97316,#ef4444,#ec4899,#8b5cf6,#06b6d4,#fbbf24);background-size:200% 100%;animation:lotoShimmer 4s linear infinite;}
@keyframes lotoShimmer{0%{background-position:0% 0}100%{background-position:200% 0}}
.loto-promo__inner{padding:20px;}
.loto-promo__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;flex-wrap:wrap;gap:10px;}
.loto-promo__title{font-size:.95rem;font-weight:800;color:#fff;display:flex;align-items:center;gap:8px;}
.loto-promo__title-icon{font-size:1.3rem;}
.loto-promo__subtitle{font-size:.7rem;color:rgba(148,163,184,.7);font-weight:500;}
.loto-promo__cta{display:inline-flex;align-items:center;gap:6px;background:linear-gradient(135deg,#fbbf24,#f59e0b);color:#000;font-size:.72rem;font-weight:700;padding:8px 18px;border-radius:20px;text-decoration:none;transition:all .2s;white-space:nowrap;}
.loto-promo__cta:hover{transform:translateY(-1px);box-shadow:0 4px 16px rgba(251,191,36,.3);}
.loto-promo__games{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.loto-game{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:10px;padding:12px;text-align:center;transition:all .2s;}
.loto-game:hover{background:rgba(255,255,255,.06);border-color:rgba(251,191,36,.15);}
.loto-game__head{display:flex;align-items:center;justify-content:center;gap:5px;margin-bottom:8px;}
.loto-game__emoji{font-size:1rem;}
.loto-game__name{font-size:.7rem;font-weight:700;color:rgba(255,255,255,.9);}
.loto-game__date{font-size:.6rem;color:rgba(148,163,184,.5);margin-bottom:6px;}
.loto-game__nums{display:flex;flex-wrap:wrap;gap:4px;justify-content:center;}
.loto-game__ball{width:24px;height:24px;border-radius:50%;background:linear-gradient(135deg,rgba(251,191,36,.15),rgba(251,191,36,.05));border:1px solid rgba(251,191,36,.25);display:flex;align-items:center;justify-content:center;font-size:.62rem;font-weight:700;color:#fbbf24;}
.loto-game__ball--bonus{background:linear-gradient(135deg,rgba(239,68,68,.15),rgba(239,68,68,.05));border-color:rgba(239,68,68,.3);color:#f87171;}
.loto-game__ball--code{width:auto;min-width:auto;padding:4px 10px;border-radius:6px;font-family:'JetBrains Mono',monospace;font-size:.68rem;letter-spacing:1.5px;background:rgba(6,182,212,.08);border-color:rgba(6,182,212,.2);color:#22d3ee;}
.loto-promo__tools{display:flex;gap:10px;margin-top:14px;padding-top:12px;border-top:1px solid rgba(255,255,255,.04);justify-content:center;flex-wrap:wrap;}
.loto-promo__tool{font-size:.65rem;color:rgba(148,163,184,.6);display:flex;align-items:center;gap:4px;}
.loto-promo__tool a{color:rgba(6,182,212,.7);text-decoration:none;}
.loto-promo__tool a:hover{color:#22d3ee;}
@media(max-width:600px){
    .loto-promo__games{grid-template-columns:1fr;}
    .loto-promo__top{flex-direction:column;align-items:flex-start;}
    .loto-promo__inner{padding:14px;}
    .loto-game__ball{width:22px;height:22px;font-size:.58rem;}
}


/* =========================================================
   MOBILE DRAWER (AceOdds-style off-canvas)
   Applied: 2026-03-01
   ========================================================= */

/* Overlay backdrop */
.mnav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9998;
    opacity: 0;
    transition: opacity .22s ease;
}
.mnav-overlay:not([hidden]) {
    opacity: 1;
}

/* Drawer panel */
.mnav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    height: 100vh; /* fallback */
    width: min(86vw, 380px);
    background: #0f172a;
    border-left: 1px solid rgba(255,255,255,.12);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform .22s ease;
    display: flex;
    flex-direction: column;
    contain: paint;
}
.mnav.is-open {
    transform: translateX(0);
}

/* Header row */
.mnav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    flex-shrink: 0;
}

.mnav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mnav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,.5);
    animation: mnavPulse 2s infinite;
}

@keyframes mnavPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.mnav-title {
    font-size: .95rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: -.3px;
}

.mnav-pill {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.30);
    color: #fca5a5;
}

.mnav-close {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: #94a3b8;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}
.mnav-close:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

/* Scrollable nav body */
.mnav-body {
    padding: 10px 10px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Nav links */
.mnav-link {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.mnav-link:hover,
.mnav-link:focus {
    color: #f1f5f9;
    background: rgba(255,255,255,.06);
}

/* Body lock */
body.nav-locked {
    overflow: hidden;
    width: 100%;
    touch-action: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .mnav { transition: none; }
    .mnav-overlay { transition: none; }
    .mnav-dot { animation: none; }
}

/* END MOBILE DRAWER */


/* P0.5 — Drawer iOS/scroll guardrails (2026-03-01) */
.mnav, .mnav * {
    -webkit-tap-highlight-color: transparent;
}

.mnav-overlay {
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

/* Overlay visible state (class-based) */
.mnav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
/* END P0.5 CSS */


/* === LOTO 6/49 VISUAL PRIORITY (2026-03-01) === */
/* Phase 1: Compact header row */
.loto-game__header-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;}
.loto-game--649 .loto-game__head{margin-bottom:0;}
.loto-game--649 .loto-game__date{margin-bottom:0;font-size:.65rem;opacity:.7;}

/* Phase 2: Larger balls for 649 */
.loto-game--649 .loto-game__ball{width:40px;height:40px;font-size:15px;font-weight:700;border-width:2px;}
.loto-game--649 .loto-game__nums{gap:5px;}

/* Phase 3: Visual elevation */
.loto-game--649{background:linear-gradient(145deg,#1a2436,#1e2c45);border:1px solid rgba(255,215,120,.25);box-shadow:0 4px 18px rgba(255,200,100,.08);}
.loto-game--649:hover{border-color:rgba(255,215,120,.4);}
.loto-game--649 .loto-game__ball{background:#253858;box-shadow:inset 0 0 0 1px rgba(255,215,120,.2);}
.loto-game--649 .loto-game__ball--bonus{background:rgba(239,68,68,.12);box-shadow:inset 0 0 0 1px rgba(239,68,68,.3);}

@media(max-width:768px){
    .loto-game--649 .loto-game__ball{width:38px;height:38px;font-size:14px;}
}
@media(max-width:600px){
    .loto-game--649 .loto-game__ball{width:36px;height:36px;font-size:13px;}
}

/* === JOKER + NOROC VISUAL UPGRADE (2026-03-01) === */

/* Phase 1: Joker — medium boost */
.loto-game--joker .loto-game__head{margin-bottom:0;}
.loto-game--joker .loto-game__date{margin-bottom:0;}
.loto-game--joker .loto-game__ball{width:32px;height:32px;font-size:14px;font-weight:700;border-width:1.5px;color:#edf0f7;}
.loto-game--joker .loto-game__nums{gap:6px;}
.loto-game--joker .loto-game__ball--bonus{border-color:rgba(239,68,68,.45);color:#fca5a5;background:linear-gradient(135deg,rgba(239,68,68,.18),rgba(239,68,68,.06));font-weight:800;}

/* Phase 2: Noroc — big readable pill */
.loto-game--noroc .loto-game__head{margin-bottom:0;}
.loto-game--noroc .loto-game__date{margin-bottom:0;}
.loto-game--noroc .loto-game__nums{justify-content:center;margin-top:4px;}
.loto-game--noroc .loto-game__ball--code{font-size:20px;letter-spacing:3px;padding:8px 18px;border-radius:10px;font-weight:800;color:#fde68a;background:linear-gradient(135deg,rgba(251,191,36,.12),rgba(251,191,36,.04));border:1.5px solid rgba(251,191,36,.3);}

/* Phase 3: Consistency — all cards share header-row + padding */
.loto-game--joker,.loto-game--noroc{padding:14px;}
.loto-game__header-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;}

@media(max-width:768px){
    .loto-game--joker .loto-game__ball{width:30px;height:30px;font-size:13px;}
    .loto-game--noroc .loto-game__ball--code{font-size:18px;letter-spacing:2.5px;padding:7px 14px;}
}
@media(max-width:600px){
    .loto-game--joker .loto-game__ball{width:28px;height:28px;font-size:12px;}
    .loto-game--noroc .loto-game__ball--code{font-size:16px;letter-spacing:2px;padding:6px 12px;}
}


/* ═══════════════════════════════════════════════════
   Footer Mobile Restructure (A15-footer)
   Desktop unchanged — mobile-only overrides
   ═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* Reduce root padding */
    .footer {
        padding: 28px 16px 18px;
    }

    /* Tighter inner gap */
    .footer__inner {
        gap: 24px;
        margin-bottom: 24px;
    }

    /* Brand block: compact */
    .footer__brand {
        text-align: center;
    }
    .footer__tagline {
        font-size: 0.8rem;
        line-height: 1.45;
        margin-top: 8px;
    }

    /* Links: enforce 2-col with tighter gap */
    .footer__links {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px 12px;
    }

    /* Column titles: smaller */
    .footer__col h4 {
        font-size: 0.72rem;
        margin-bottom: 8px;
        letter-spacing: 0.1em;
    }

    /* Links: compact touch targets */
    .footer__col a {
        font-size: 0.82rem;
        padding: 5px 0;
        line-height: 1.35;
    }

    /* Bottom legal: tighter */
    .footer__bottom {
        margin-top: 0;
        padding-top: 16px;
        gap: 4px;
    }
    .footer__bottom p {
        font-size: 0.72rem;
    }
    .footer__responsible {
        font-size: 0.68rem !important;
    }
}

/* Very small: still keep 2-col but tighter */
@media (max-width: 480px) {
    .footer__links {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px 10px;
    }
    .footer__col a {
        font-size: 0.78rem;
        padding: 4px 0;
    }
    .footer__col h4 {
        font-size: 0.68rem;
        margin-bottom: 6px;
    }
    .footer__tagline {
        font-size: 0.75rem;
    }
}

/* Only at truly tiny screens: single column */
@media (max-width: 340px) {
    .footer__links {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
}


/* Footer Mobile Polish — micro refinement */
@media (max-width: 768px){
  .footer__col{ margin-bottom: 18px; }
  .footer__responsible{ max-width: 340px; margin: 12px auto 0; text-align: center; }
}


/* ═══════════════════════════════════════════════════
   P0 — Mobile Sticky Header Compact on Scroll
   Desktop unchanged. Mobile-only via max-width:768px.
   ═══════════════════════════════════════════════════ */

/* Mini search: hidden by default everywhere */
.hdr-search-mini { display: none; }

@media (max-width: 768px) {

  /* ── Compact header ── */
  body.hdr-compact .header {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  body.hdr-compact .header__inner {
    min-height: auto;
  }

  /* ── Hide filter bar in compact mode ── */
  body.hdr-compact .filter-bar {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    opacity: 0;
    pointer-events: none;
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
  }
  /* Non-compact: animate in */
  .filter-bar {
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
    max-height: 200px;
    opacity: 1;
  }

  /* ── Show mini search trigger in compact mode ── */
  body.hdr-compact .hdr-search-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(0,255,255,.22);
    background: rgba(0,0,0,.25);
    color: #e7fbff;
    white-space: nowrap;
    cursor: pointer;
    margin-right: 6px;
    flex-shrink: 0;
  }
  body.hdr-compact .hdr-search-mini:active {
    background: rgba(0,255,255,.15);
  }

  /* ── Slightly shrink logo in compact ── */
  body.hdr-compact .header__logo {
    transform: scale(.93);
    transform-origin: left center;
  }

  /* ── Reduce header top offset for filter-bar ── */
  body.hdr-compact .filter-bar {
    top: 48px;
  }
}


/* ═══════════════════════════════════════════════════
   P0.2 — Compact Header: Declutter Right Side
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hide LIVE pill in compact — reclaim width */
  body.hdr-compact .live-pulse { display: none; }

  /* Tighten header actions gap */
  body.hdr-compact .header__actions { gap: 6px; }

  /* Mini search: smaller, icon-only feel */
  body.hdr-compact .hdr-search-mini {
    padding: 0 10px;
    font-size: 12px;
    min-height: 32px;
  }

  /* Drawer search link styling */
  .mnav-link--search {
    background: rgba(34,211,238,.08);
    border: 1px solid rgba(34,211,238,.18);
    border-radius: 8px;
    margin: 0 12px 8px;
    padding: 12px 16px !important;
    font-weight: 600;
    color: var(--accent-cyan, #22d3ee) !important;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════
   Loto Polonia — Mobile Visual Optimization
   Real selectors: .hp-loto-strip, .hp-loto-btn, .hp-ball, .hp-loto-badge
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Tighter card padding */
  .hp-loto-strip { padding: 16px 14px; }

  /* Primary CTA: full width, dominant */
  .hp-loto-btn--primary {
    width: 100%;
    font-size: 15px;
    padding: 13px 16px;
  }

  /* Secondary CTA: full width, subdued */
  .hp-loto-btn--secondary {
    width: 100%;
    font-size: 13px;
    padding: 10px 14px;
    opacity: .8;
  }

  /* CTA stack spacing */
  .hp-loto-actions {
    gap: 8px;
    flex-direction: column;
  }
  .hp-loto-btn { flex: none; }

  /* Smaller balls */
  .hp-ball { width: 28px; height: 28px; font-size: 11px; }
  .hp-loto-balls { gap: 5px; }

  /* Tighter badge */
  .hp-loto-badge { font-size: 10px; padding: 2px 7px; }

  /* Compact results section */
  .hp-loto-results { margin-top: 10px; padding-top: 10px; }
}


/* ═══════════════════════════════════════════════════
   P0.3 — Above-the-Fold: Reduce Dead Space (mobile)
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero: less top padding (was 100px) */
  .hero { padding: 72px 16px 28px; }

  /* Tighter section padding globally on mobile */
  :root { --section-padding: 32px; }

  /* Radar section: remove top gap */
  #radar-section { padding-top: 16px; }

  /* First content after filter: tighter */
  .filter-bar + main { margin-top: 0; }
  main > .section:first-child { padding-top: 20px; }

  /* Hero stats: compact */
  .hero__stats { gap: 8px; margin-top: 16px; }
  .stat-card { padding: 12px 8px; }

  /* Hero desc: trim */
  .hero__desc { font-size: 0.82rem; line-height: 1.45; margin-bottom: 12px; }

  /* Hero actions: tighter */
  .hero__actions { gap: 8px; margin-top: 12px; }

  /* Back-to-top: use CSS var for bottom offset */
  .back-to-top { bottom: var(--fab-bottom, 24px); right: 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 14px 24px; }
  .hero__title { font-size: 1.3rem; }
  .hero__title-sub { font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════════
   P0.5 — Ligi Populare: Mobile Chips
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Chip container */
  #ligiPopulare > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Each chip: tap-friendly pill */
  #ligiPopulare .sport-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, border-color .15s;
  }
  #ligiPopulare .sport-btn:active {
    background: rgba(34,211,238,.12);
    border-color: rgba(34,211,238,.3);
  }

  /* Collapse: show first 8, hide rest */
  #ligiPopulare .sport-btn:nth-child(n+9) {
    display: none;
  }
  #ligiPopulare.ligi-expanded .sport-btn:nth-child(n+9) {
    display: inline-flex;
  }
}

/* ═══════════════════════════════════════════════════
   P0.4 — Loto Polonia: Trust Badge + Meta Compression
   ═══════════════════════════════════════════════════ */
.hp-loto-upd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  padding: 4px 10px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 10px;
  color: #94a3b8;
  background: rgba(255,255,255,.03);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hp-loto-meta { font-size: 0.7rem !important; }
  .hp-loto-upd { font-size: 0.68rem; padding: 3px 8px; }
}


/* P0.5 — "Mai multe" toggle: hide on desktop, always show on mobile */
.hp-ligi-more { display: none; }
@media (max-width: 768px) {
  .hp-ligi-more { display: inline-flex !important; }
}


/* LP1 — Internal links hover state */
.lp-internal-links a.hub-auth-item:hover {
  border-color: rgba(245,158,11,.3);
  background: rgba(245,158,11,.04);
}
