/* ═══════════════════════════════════════
   PREMIUM LEAGUE BUCHAREST
   ═══════════════════════════════════════ */

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

:root {
    --bg:        #080E1C;
    --bg-card:   #0D1A2D;
    --bg-card-h: #112238;
    --blue:      #2563EB;
    --blue-b:    #3B82F6;
    --blue-l:    rgba(37,99,235,0.14);
    --blue-glow: rgba(59,130,246,0.4);
    --border:    rgba(37,99,235,0.22);
    --white:     #F0F6FF;
    --muted:     rgba(240,246,255,0.48);
    --gold:      #F5C518;
    --silver:    #B8BEC8;
    --bronze:    #C97832;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.05; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */

#nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    padding: 0 24px;
    transition: background .4s, backdrop-filter .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}
#nav.scrolled {
    background: rgba(8,14,28,.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
}
.nav-inner {
    max-width: 1160px; margin: 0 auto;
    height: 70px; display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 36px; }
.nav-links a { color: var(--muted); font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--blue) !important; color: var(--white) !important; padding: 9px 20px; border-radius: 6px; transition: background .2s !important; }
.nav-cta:hover { background: var(--blue-b) !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV MOBILE MINI LEAGUE PILL (visible only on mobile) ── */
.nav-mobile-mini {
    display: none;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #60A5FA;
    background: rgba(37,99,235,0.14);
    border: 1px solid rgba(37,99,235,0.30);
    border-radius: 20px;
    padding: 6px 14px;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    margin-right: 4px;
}
.nav-mobile-mini:hover {
    background: rgba(37,99,235,0.24);
    border-color: rgba(96,165,250,0.5);
    color: #93C5FD;
    text-decoration: none;
}

.mobile-menu { display: none; flex-direction: column; padding: 12px 0 20px; border-top: 1px solid var(--border); gap: 2px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); font-size: 16px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.05); transition: color .2s; }
.mobile-menu a:last-child, .mobile-menu a:hover { color: var(--white); }

/* ── HERO ── */

#hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-lights {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% -5%, rgba(37,99,235,.4) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 85% -5%, rgba(37,99,235,.4) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(37,99,235,.12) 0%, transparent 70%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
}
/* ── HERO BEAMS — stadium lights ── */
.hero-beams {
    position: absolute; inset: 0;
    pointer-events: none; overflow: hidden; z-index: 0;
}
.beam {
    position: absolute; top: 0; height: 100%;
    pointer-events: none; transform-origin: top center;
}
.b1 { left: 2%;  width: 220px; background: linear-gradient(to bottom, rgba(37,99,235,.24) 0%, transparent 62%); clip-path: polygon(35% 0%,65% 0%,96% 100%,4% 100%); }
.b2 { left: 18%; width: 240px; background: linear-gradient(to bottom, rgba(59,130,246,.15) 0%, transparent 55%); clip-path: polygon(38% 0%,62% 0%,88% 100%,12% 100%); }
.b3 { left: 38%; width: 260px; background: linear-gradient(to bottom, rgba(96,165,250,.10) 0%, transparent 50%); clip-path: polygon(40% 0%,60% 0%,82% 100%,18% 100%); }
.b4 { right: 18%; width: 240px; background: linear-gradient(to bottom, rgba(59,130,246,.15) 0%, transparent 55%); clip-path: polygon(38% 0%,62% 0%,88% 100%,12% 100%); }
.b5 { right: 2%;  width: 220px; background: linear-gradient(to bottom, rgba(37,99,235,.24) 0%, transparent 62%); clip-path: polygon(35% 0%,65% 0%,96% 100%,4% 100%); }

/* ── HERO CURSOR GLOW ── */
.hero-cursor-glow {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,.10) 0%, transparent 60%);
    transform: translate(-50%,-50%);
    pointer-events: none; opacity: 0;
    transition: opacity .4s ease; z-index: 1;
}
.hero-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 35%, rgba(8,14,28,.7) 100%);
}

.hero-content {
    position: relative; z-index: 1;
    width: 100%; max-width: 1200px;
    padding: clamp(68px, 8vh, 100px) 48px clamp(52px, 6vh, 80px);
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 56px;
    text-align: left;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-logo-img {
    height: clamp(200px, 28vw, 400px);
    width: auto;
    filter: drop-shadow(0 0 40px rgba(37,99,235,.65)) drop-shadow(0 0 100px rgba(37,99,235,.28));
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-right {
    display: flex; flex-direction: column; align-items: flex-start;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,99,235,.12); border: 1px solid var(--border);
    color: var(--blue-b); font-size: 12px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 7px 18px; border-radius: 100px; margin-bottom: 24px;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue-b);
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.7); } }

.hero-title {
    font-size: clamp(40px, 6.5vw, 86px);
    font-weight: 900; letter-spacing: -.02em;
    margin-bottom: 16px;
}
.title-line { display: block; }
.title-accent {
    background: linear-gradient(130deg, #93C5FD 0%, #3B82F6 40%, #60A5FA 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub { font-size: 18px; color: var(--muted); margin-bottom: 12px; }

.countdown-label {
    font-size: 10px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 12px;
}

.countdown {
    display: flex; align-items: center; justify-content: flex-start;
    gap: 6px; margin-bottom: 26px;
}
.countdown-item { display: flex; flex-direction: column; align-items: center; min-width: 68px; }
.count-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4.2vw, 54px); font-weight: 900; line-height: 1;
    background: linear-gradient(160deg, #fff 0%, var(--blue-b) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.count-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.countdown-sep { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 16px; }

/* Urgency / spots */
.spots-wrap {
    width: 100%; margin-bottom: 24px;
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.3);
    border-radius: 10px; padding: 14px 18px;
    position: relative;
}
.spots-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 9px;
}
.spots-label { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.spots-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700; color: var(--white);
}
.spots-count strong { color: var(--blue-b); font-size: 20px; }
.spots-track {
    height: 5px; background: rgba(255,255,255,.1);
    border-radius: 100px; overflow: hidden; margin-bottom: 9px;
}
.spots-fill {
    height: 100%;
    background: linear-gradient(90deg, #1D4ED8, var(--blue-b));
    border-radius: 100px;
    animation: spotsGlow 2.5s ease-in-out infinite;
}
@keyframes spotsGlow {
    0%,100% { box-shadow: 0 0 6px rgba(59,130,246,.4); }
    50%      { box-shadow: 0 0 18px rgba(59,130,246,.7); }
}
.spots-note { font-size: 11px; color: var(--muted); letter-spacing: .03em; }
.spots-note span { color: rgba(240,246,255,.75); font-weight: 500; }

.hero-actions { display: flex; align-items: center; justify-content: flex-start; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: var(--white);
    font-weight: 600; font-size: 15px; padding: 13px 26px;
    border-radius: 8px;
    transition: background .22s, transform .22s, box-shadow .22s;
}
.btn-primary:hover { background: var(--blue-b); transform: translateY(-2px); box-shadow: 0 8px 32px var(--blue-glow); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white); font-weight: 500; font-size: 15px;
    padding: 13px 26px; border-radius: 8px; border: 1px solid var(--border);
    transition: background .22s, border-color .22s;
}
.btn-ghost:hover { background: var(--blue-l); border-color: var(--blue); }
.btn-large { font-size: 18px; padding: 17px 38px; }

.hero-meta {
    display: flex; align-items: center; justify-content: flex-start;
    gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--muted);
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.meta-dot { opacity: .3; }

@media (max-height: 800px) {
    .hero-content { padding: 60px 48px 44px; gap: 40px; }
    .hero-logo-img { height: clamp(160px, 22vw, 300px); }
    .hero-title { font-size: clamp(36px, 5.5vw, 72px); margin-bottom: 12px; }
    .hero-badge { margin-bottom: 14px; }
    .hero-sub { margin-bottom: 8px; }
    .count-num { font-size: clamp(32px, 3.6vw, 46px); }
    .countdown { margin-bottom: 18px; }
    .spots-wrap { margin-bottom: 16px; }
    .hero-actions { margin-bottom: 20px; }
}


/* ── TICKER ── */

.ticker-bar {
    background: var(--blue);
    overflow: hidden; padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    cursor: default;
}
.ticker-track { display: flex; animation: ticker 28s linear infinite; }
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
.ticker-content { display: flex; align-items: center; flex-shrink: 0; white-space: nowrap; }
.ticker-item { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.92); padding: 0 20px; }
.ticker-sep { color: rgba(255,255,255,.35); font-size: 18px; flex-shrink: 0; }
.ticker-star { font-size: 12px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ── */

#stats {
    background: linear-gradient(135deg, #0F2557 0%, #1E40AF 50%, #0F2557 100%);
    padding: 60px 24px;
}
.stats-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}
.stat-item { flex: 1; text-align: center; padding: 8px 16px; }
.stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.stat-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-lei::after { content: ' lei'; font-size: 32px; font-weight: 700; opacity: .8; }
.stat-label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ── SECTION COMMONS ── */

section { padding: 104px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-b); margin-bottom: 12px; }
.section-title { font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── SPLIT LAYOUT ── */

.split-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center; margin-bottom: 72px;
}
.split-img-wrap {
    position: relative; border-radius: 20px; overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
    min-height: 420px;
}
.split-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
    transition: transform .5s ease;
}
.split-img-wrap:hover img { transform: scale(1.04); }
.split-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,14,28,.5) 0%, transparent 60%);
    pointer-events: none;
}

.split-text { display: flex; flex-direction: column; gap: 16px; }
.split-h3 { font-size: 36px; font-weight: 800; color: var(--white); }
.split-desc { font-size: 16px; color: var(--muted); line-height: 1.7; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; color: var(--white);
}
.check-list li::before {
    content: '';
    width: 20px; height: 20px; flex-shrink: 0;
    border-radius: 50%; background: var(--blue-l);
    border: 1px solid var(--blue);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ── DESPRE ── */

#despre { background: var(--bg); }
.about-split { margin-top: 0; }
.split-img-left { order: -1; }

.about-banner-wrap {
    background: #fff;
    border: none;
    box-shadow: 0 8px 40px rgba(0,0,0,0.28);
}
.about-banner-img {
    object-fit: contain !important;
    padding: 20px;
    background: #fff;
}
.about-banner-wrap:hover .about-banner-img { transform: none; }

.flip-cards-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.flip-card { perspective: 1000px; height: 220px; cursor: pointer; }
.flip-card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform .65s cubic-bezier(.23,1,.32,1);
    transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front, .flip-card-back {
    position: absolute; inset: 0;
    border-radius: 16px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 28px 20px; text-align: center;
}
.flip-card-front {
    background: var(--bg-card);
    border: 1px solid var(--border);
    gap: 10px;
    transition: border-color .3s;
}
.flip-card:hover .flip-card-front { border-color: rgba(59,130,246,.5); }
.flip-card-back {
    background: linear-gradient(135deg, #1D4ED8, #2563EB);
    transform: rotateY(180deg);
    gap: 8px;
}

.fc-icon { font-size: 38px; }
.fc-icon-sm { font-size: 22px; }
.fc-title { font-size: 18px; font-weight: 800; color: var(--white); }
.fc-hint { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.fc-desc { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.6; }

/* ── PROGRAM ── */

#program { background: #09111F; }
.tabs { max-width: 1000px; margin: 0 auto; }
.tab-buttons {
    display: flex; gap: 6px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; padding: 5px; margin-bottom: 36px;
}
.tab-btn {
    flex: 1; background: none; border: none;
    color: var(--muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 12px 20px; border-radius: 7px;
    cursor: pointer; transition: all .25s;
}
.tab-btn.active { background: var(--blue); color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.program-day { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.program-day-header { background: linear-gradient(135deg, #1D4ED8, #2563EB); padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; }
.day-name { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.75); }
.day-date { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--white); }
.program-slots { padding: 6px 0; }
.program-slot { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; border-bottom: 1px solid rgba(37,99,235,.08); transition: background .2s; }
.program-slot:last-child { border-bottom: none; }
.program-slot:hover { background: rgba(37,99,235,.07); }
.program-slot.highlight { background: rgba(37,99,235,.14); }
.slot-time { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; color: var(--blue-b); min-width: 110px; }
.slot-info { font-size: 14px; color: var(--white); }
.program-slot.highlight .slot-info { color: var(--blue-b); font-weight: 600; }
.program-note { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; }
.program-note svg { opacity: .5; flex-shrink: 0; }

/* ── PREMII ── */

#premii { background: var(--bg); }
.premii-split { grid-template-columns: 1fr 1.1fr; align-items: start; }
.premii-photo { min-height: 520px; }
.premii-photo-tag {
    position: absolute; bottom: 16px; left: 16px; right: 16px;
    background: rgba(8,14,28,.8); backdrop-filter: blur(8px);
    border-radius: 8px; padding: 8px 14px;
    font-size: 12px; letter-spacing: .06em; color: var(--muted);
    text-align: center;
}
.premii-right { display: flex; flex-direction: column; gap: 32px; }

.podium-wrap { display: flex; align-items: flex-end; justify-content: center; gap: 12px; }
.podium-card { flex: 1; max-width: 220px; display: flex; flex-direction: column; align-items: center; }
.podium-top { text-align: center; margin-bottom: 12px; padding: 0 8px; }
.podium-medal { font-size: 36px; margin-bottom: 8px; }
.podium-place { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.podium-prize { font-size: 13px; color: var(--muted); min-height: 36px; display: flex; align-items: center; justify-content: center; text-align: center; }
.podium-bar { width: 100%; border-radius: 8px 8px 0 0; }
.podium-card.silver .podium-place { color: var(--silver); }
.podium-card.silver .podium-bar   { background: linear-gradient(180deg, #B8BEC8, #8E9299); }
.podium-card.bronze .podium-place { color: var(--bronze); }
.podium-card.bronze .podium-bar   { background: linear-gradient(180deg, #C97832, #9C5C20); }

/* ── GOLD CARD PREMIUM ── */
.podium-card.gold {
    position: relative;
    z-index: 2;
    transform: scale(1.1);
    transition: transform .28s cubic-bezier(.34,1.56,.64,1), filter .28s;
    filter: drop-shadow(0 0 22px rgba(245,197,24,0.30));
}
.podium-card.gold:hover {
    transform: scale(1.16);
    filter: drop-shadow(0 0 44px rgba(245,197,24,0.55));
}
.podium-glow { display: none; }
.podium-card.gold .podium-place { color: var(--gold); letter-spacing: .1em; }
.podium-card.gold .podium-medal { font-size: 52px; animation: medal-float 2.4s ease-in-out infinite; }
@keyframes medal-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}
.gold-prize-wrap {
    display: flex; align-items: baseline; gap: 5px;
    justify-content: center; margin: 8px 0 4px;
}
.gold-prize-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 54px; font-weight: 900; line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 24px rgba(245,197,24,0.45);
}
.gold-prize-unit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 700;
    color: var(--gold); opacity: .85;
}
.gold-prize-label {
    font-size: 10px; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-top: 2px;
}
.podium-card.gold .podium-bar {
    background: linear-gradient(180deg, #F5C518, #C9991A);
    position: relative; overflow: hidden;
}
.podium-card.gold .podium-bar::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: bar-shimmer 2.2s ease-in-out infinite;
}
@keyframes bar-shimmer {
    0%   { left: -100%; }
    100% { left: 220%; }
}

.taxe-wrap {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 28px 24px;
}
.taxa-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.taxa-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.taxa-value { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: var(--blue-b); }
.taxa-note { font-size: 12px; color: var(--muted); }
.taxa-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ── GALERIE (marquee) ── */

#galerie { background: #09111F; padding-bottom: 104px; }
#galerie .section-header { padding: 0 24px; }

.gallery-row {
    display: flex; overflow: hidden; gap: 10px;
    margin-bottom: 10px; padding: 0 0 2px;
}
.gallery-row:hover .gallery-strip { animation-play-state: paused; }

.gallery-strip {
    display: flex; gap: 10px; flex-shrink: 0;
    animation: galleryLeft 22s linear infinite;
}
.row-right .gallery-strip { animation-name: galleryRight; }

@keyframes galleryLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes galleryRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.gallery-img-wrap {
    width: 340px; height: 240px; flex-shrink: 0;
    border-radius: 12px; overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
}
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-img-wrap:hover img { transform: scale(1.06); }

/* ── TESTIMONIALE ── */

#testimoniale { background: var(--bg); }

/* ── Video grid ── */
.testi-video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.testi-video-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform .3s, box-shadow .3s;
}
.testi-video-card:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(37,99,235,0.35); }
.testi-video-card video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.testi-video-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.9);
    transition: opacity .3s;
    pointer-events: none;
}
.testi-video-overlay.hidden { opacity: 0; }

/* ── CTA ── */

#inscrieri { position: relative; padding: 130px 24px; text-align: center; overflow: hidden; }
.cta-bg-wrap { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.25) saturate(.6); }
.cta-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,14,28,.85) 0%, rgba(14,37,95,.7) 50%, rgba(8,14,28,.85) 100%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(44px, 8vw, 88px); font-weight: 900; color: var(--white); margin: 12px 0 16px; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 40px; }
.cta-contact { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.55); }
.cta-contact a { color: rgba(255,255,255,.88); font-weight: 500; transition: color .2s; }
.cta-contact a:hover { color: var(--white); }

/* ── FOOTER PREMIUM ── */

/* CTA strip */
.footer-cta-strip {
  background: linear-gradient(135deg, #0C1E6B 0%, #1D4ED8 60%, #2563EB 100%);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.footer-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; color: var(--white);
  text-transform: uppercase; line-height: 1;
}
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: #1D4ED8;
  font-size: 15px; font-weight: 700;
  padding: 16px 32px; border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); }

/* Footer body */
.footer-body {
  background: #060810;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.footer-watermark {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .85;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
  letter-spacing: .04em;
  user-select: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 48px;
  position: relative; z-index: 1;
}

/* Brand column */
.footer-brand-col {}
.footer-logo-img {
  height: 72px; width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(37,99,235,0.3));
}
.footer-tagline {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.38);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex; gap: 10px;
}
.fsoc {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.fsoc:hover {
  background: rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* Nav columns */
.footer-col {}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}
.footer-col-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col-list a {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; gap: 6px;
  position: relative; padding-bottom: 1px;
  transition: color .2s;
}
.footer-col-list a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}
.footer-col-list a:hover { color: var(--white); }
.footer-col-list a:hover::after { width: 100%; }

/* Tags on turnee links */
.ftag {
  font-size: 9px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2px 6px;
  color: rgba(255,255,255,0.4);
}
.ftag.ftag-live {
  background: rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.35);
  color: #93C5FD;
}

/* Bottom bar */
.footer-bottom-bar {
  background: #030408;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-legal-links {
  display: flex; align-items: center; gap: 10px;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.3);
  transition: color .2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-links span { color: rgba(255,255,255,0.12); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(4,6,14,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(37,99,235,0.18);
  padding: 18px 40px;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.22,.68,0,1.2);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-text {
  display: flex; flex-direction: column; gap: 3px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  flex: 1;
}
.cookie-text strong { color: var(--white); font-size: 14px; }
.cookie-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  border: none; border-radius: 10px;
  padding: 10px 22px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .2s, color .2s;
}
.cookie-btn-accept {
  background: var(--accent); color: var(--white);
}
.cookie-btn-accept:hover { background: #1D55D4; transform: translateY(-1px); }
.cookie-btn-decline {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-decline:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* ── SCROLL ANIMATIONS (JS adds .is-visible) ── */

.anim-fade-up {
    opacity: 0; transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.anim-fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

@media (max-width: 960px) {
    .split-row { grid-template-columns: 1fr; }
    .split-img-wrap { min-height: 320px; }
    .split-img-left { order: 0; }
    .premii-split { grid-template-columns: 1fr; }
    .premii-photo { min-height: 320px; }
    .flip-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .nav-mobile-mini { display: flex; }
    section { padding: 72px 0; }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
        padding: 96px 24px 72px;
    }
    .hero-logo-img { height: 190px; margin: 0 auto; }
    .hero-right { align-items: center; width: 100%; }
    .hero-badge { align-self: center; }
    .countdown { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-meta { justify-content: center; }
    .spots-wrap { text-align: left; }
    .hero-title { font-size: clamp(44px, 14vw, 72px); }
    .count-num { font-size: 44px; }
    .countdown-item { min-width: 64px; }
    .countdown-sep { font-size: 38px; }
    .stats-inner { flex-wrap: wrap; }
    .stat-item { min-width: 50%; }
    .stat-divider:nth-child(4) { display: none; }
    .program-grid { grid-template-columns: 1fr; }
    .testi-video-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .gallery-img-wrap { width: 260px; height: 180px; }
}

@media (max-width: 560px) {
    .flip-cards-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { flex-direction: column; }
    .stat-divider { width: 60px; height: 1px; }
    .taxe-wrap { flex-direction: column; gap: 20px; }
    .taxa-divider { width: 60px; height: 1px; }
    .podium-wrap { gap: 6px; }
    .podium-prize { font-size: 12px; }
}

/* ── SPOTS TOOLTIP ── */

.spots-tooltip {
    position: absolute;
    bottom: calc(100% + 10px); left: 0;
    background: #0D1A2D;
    border: 1px solid rgba(37,99,235,.45);
    border-radius: 10px;
    padding: 14px 18px;
    min-width: 210px;
    opacity: 0; pointer-events: none;
    transform: translateY(4px);
    transition: opacity .22s ease, transform .22s ease;
    z-index: 10;
}
.spots-wrap:hover .spots-tooltip {
    opacity: 1; pointer-events: auto; transform: translateY(0);
}
.tooltip-title {
    font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--blue-b); margin-bottom: 10px;
}
.tooltip-teams {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.tooltip-teams li {
    font-size: 13px; color: rgba(240,246,255,.8);
}
.tooltip-more {
    color: var(--muted) !important; font-style: italic;
    font-size: 12px !important;
}

@keyframes notesPulse {
    0%,100% { color: var(--muted); }
    50%      { color: var(--blue-b); }
}
.spots-note.pulse { animation: notesPulse .7s ease; }

/* ── GALLERY CLICKABLE ── */

.gallery-clickable { cursor: pointer; }
.gallery-clickable::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(37,99,235,.0);
    transition: background .25s;
    border-radius: 12px;
}
.gallery-clickable:hover::after { background: rgba(37,99,235,.18); }
.gallery-img-wrap { position: relative; }

/* ── LIGHTBOX ── */

.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(8,14,28,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-img-wrap {
    max-width: 90vw; max-height: 88vh;
    display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
    max-width: 100%; max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 0 80px rgba(37,99,235,.3);
    object-fit: contain;
    transition: opacity .2s;
}
.lb-close {
    position: fixed; top: 24px; right: 28px;
    background: rgba(13,26,45,.8); border: 1px solid var(--border);
    color: var(--white); border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, transform .2s;
}
.lb-close:hover { background: var(--blue); transform: scale(1.08); }
.lb-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(13,26,45,.8); border: 1px solid var(--border);
    color: var(--white); border-radius: 50%;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, transform .2s;
}
.lb-nav:hover { background: var(--blue); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-counter {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    font-size: 12px; letter-spacing: .1em; color: var(--muted);
    background: rgba(13,26,45,.7); border-radius: 100px;
    padding: 5px 16px;
}

/* ── ECHIPE PARTICIPANTE ── */

#echipe {
    background: #09111F;
    padding: 104px 0 80px;
    overflow: hidden;
}
.teams-carousel-wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    padding: 20px 0 24px;
    cursor: grab;
    -webkit-user-select: none; user-select: none;
}
.teams-carousel-wrap::-webkit-scrollbar { display: none; }
.teams-carousel-wrap:active { cursor: grabbing; }
.teams-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 0 24px;
    transition: none;
}
.team-card {
    flex-shrink: 0;
    width: 140px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 12px 18px;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    text-align: center;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    pointer-events: none;
}
.teams-carousel-wrap:not(.dragging) .team-card { pointer-events: auto; }
.team-card:hover {
    border-color: rgba(59,130,246,.55);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37,99,235,.18);
}
.team-card-open {
    border-style: dashed;
    border-color: rgba(37,99,235,.35);
    background: rgba(37,99,235,.05);
}
.team-shield {
    font-size: 32px; line-height: 1;
    width: 56px; height: 56px;
    background: var(--blue-l);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.team-card-open .team-shield {
    font-size: 28px; font-weight: 900; color: var(--blue-b);
    background: rgba(37,99,235,.1);
}
.team-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700; color: var(--white);
    line-height: 1.2;
}
.team-status {
    font-size: 10px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    border-radius: 100px; padding: 3px 10px;
}
.team-status.confirmed {
    background: rgba(34,197,94,.1);
    color: #4ADE80;
    border: 1px solid rgba(34,197,94,.25);
}
.team-status.open {
    background: rgba(37,99,235,.12);
    color: var(--blue-b);
    border: 1px solid var(--border);
}
.teams-note {
    margin-top: 28px;
    font-size: 14px; color: var(--muted);
    text-align: center;
}
.teams-note a {
    color: var(--blue-b); font-weight: 600;
    transition: color .2s;
}
.teams-note a:hover { color: var(--white); }

/* ── PARTENERI ── */

#parteneri {
    background: var(--bg);
    padding: 72px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.parteneri-header { margin-bottom: 40px; }
.parteneri-title { font-size: clamp(28px, 4vw, 42px); }

.parteneri-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.parteneri-track {
    display: flex; align-items: center;
    gap: 0;
    width: max-content;
    will-change: transform;
    animation: partenerScroll 22s linear infinite;
}
@keyframes partenerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
}
.partener-logo {
    flex-shrink: 0;
    min-width: 220px;
    height: 110px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; padding: 20px 36px;
    border-right: 1px solid var(--border);
    opacity: 0.55;
    transition: opacity .3s;
    cursor: default;
}
.partener-logo:hover { opacity: 1; }
.partener-img {
    display: block;
    max-height: 60px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity .3s, transform .3s;
}
.partener-logo:hover .partener-img { opacity: 1; transform: scale(1.06); }
.partener-logo strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 900;
    letter-spacing: .1em; color: var(--white);
}
.partener-label, .partener-badge {
    display: none;
}
.partener-badge { color: var(--blue-b); }
.partener-name { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.partener-name--sm { font-size: 17px; }
.partener-accent { font-size: 11px; font-weight: 600; letter-spacing: .12em; color: var(--blue-b); margin-top: 2px; }

.champions-banner {
    position: relative; height: 520px; overflow: hidden;
    margin-bottom: 0;
}
.champions-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 20%;
    transform: scale(1.06);
    animation: championZoom 12s ease-out forwards;
}
@keyframes championZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.champions-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(8,14,28,.9) 0%, rgba(8,14,28,.45) 55%, rgba(8,14,28,.75) 100%);
}
.champions-content {
    position: relative; z-index: 1;
    height: 100%; display: flex; flex-direction: column;
    justify-content: center; gap: 10px;
}
.champions-tag {
    font-size: 12px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gold);
}
.champions-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(72px, 12vw, 140px); font-weight: 900;
    line-height: 1; color: var(--white);
    text-shadow: 0 4px 40px rgba(37,99,235,.3);
}
.champions-sub {
    font-size: 17px; color: rgba(255,255,255,.55); max-width: 380px;
}

/* ── CONFIRM GRID ── */
.confirm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 48px;
}
.confirm-card {
    position: relative;
    aspect-ratio: 9 / 16;
    background-size: cover; background-position: center top;
    background-color: var(--bg-card);
    border-radius: 20px; overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    transition: box-shadow .3s;
}
.confirm-card:hover {
    box-shadow: 0 16px 48px rgba(37,99,235,.25);
}
.confirm-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,14,28,.95) 0%, rgba(8,14,28,.3) 45%, transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}
.confirm-shine {
    position: absolute; inset: 0; z-index: 1;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.confirm-card:hover .confirm-shine { opacity: 1; }
.confirm-card-inner {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2; padding: 22px 20px;
    display: flex; flex-direction: column; gap: 5px;
}
.confirm-tag-label {
    font-size: 9px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gold);
}
.confirm-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(16px, 1.8vw, 22px); font-weight: 900;
    color: var(--white); line-height: 1.15;
}
.confirm-check {
    font-size: 10px; font-weight: 700; letter-spacing: .1em;
    color: #4ade80;
}
@media (max-width: 900px) {
    .confirm-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .champions-banner { height: 380px; }
}
@media (max-width: 480px) {
    .confirm-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .champions-banner { height: 300px; }
    .champions-name { font-size: 64px; }
    .confirm-name { font-size: 14px; }
}

/* ── FAQ ── */

#faq { background: var(--bg); }

.faq-list {
    max-width: 780px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s;
}
.faq-item.open { border-color: rgba(59,130,246,.45); }

.faq-q {
    width: 100%; background: none; border: none;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px; font-weight: 500;
    text-align: left;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    cursor: pointer;
    transition: color .2s;
}
.faq-q:hover { color: var(--blue-b); }
.faq-icon {
    flex-shrink: 0;
    font-size: 22px; font-weight: 300; line-height: 1;
    color: var(--blue-b);
    transition: transform .35s cubic-bezier(.23,1,.32,1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s cubic-bezier(.23,1,.32,1);
}
.faq-a p {
    padding: 0 24px 20px;
    font-size: 15px; color: var(--muted);
    line-height: 1.75;
}
.faq-a p strong { color: var(--white); font-weight: 600; }
.faq-a ul {
    padding: 4px 24px 20px 40px;
    display: flex; flex-direction: column; gap: 7px;
}
.faq-a ul li {
    font-size: 15px; color: var(--muted); line-height: 1.65;
    list-style: disc;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ── RESPONSIVE — new sections ── */

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-logo-img { height: 200px; }
    .spots-tooltip { left: 0; right: 0; }
    .lb-nav { width: 40px; height: 40px; }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
    #echipe { padding: 72px 0 56px; }
    .team-card { width: 120px; }
    .parteneri-track { animation-duration: 16s; }
    .faq-q { font-size: 15px; padding: 16px 18px; }
    .faq-a p { padding: 0 18px 16px; }
}

/* ── TESTI QUOTE CARDS ── */
.testi-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 920px;
    margin: 32px auto 0;
}
.quote-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.quote-card:hover {
    border-color: rgba(59,130,246,.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,99,235,.12);
}
.quote-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.quote-text {
    font-size: 14px; color: var(--muted);
    line-height: 1.75; flex: 1; font-style: italic;
}
.quote-author {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    display: flex; flex-direction: column; gap: 3px;
}
.quote-name { font-size: 14px; font-weight: 600; color: var(--white); }
.quote-team {
    font-size: 10px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--blue-b);
}

/* ── FAQ 2-COLUMN LAYOUT ── */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}
.faq-layout .faq-list { max-width: none; margin: 0; }
.faq-sidebar {
    display: flex; flex-direction: column; gap: 20px;
    position: sticky; top: 90px;
}
.faq-cta-card {
    background: var(--bg-card);
    border: 1px solid rgba(37,99,235,.35);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex; flex-direction: column;
    align-items: center; gap: 14px; text-align: center;
}
.faq-cta-icon { font-size: 32px; line-height: 1; }
.faq-cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--white);
}
.faq-cta-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.faq-cta-btn { width: 100%; justify-content: center; font-size: 15px; }
.faq-cta-link {
    font-size: 13px; color: var(--blue-b);
    font-weight: 500; transition: color .2s;
}
.faq-cta-link:hover { color: var(--white); }
.faq-quick-facts {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}
.faq-fact { padding: 12px 6px; }
.faq-fact-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 900;
    color: var(--blue-b); line-height: 1;
}
.faq-fact-label {
    display: block;
    font-size: 9px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted); margin-top: 5px; line-height: 1.4;
}

@media (max-width: 960px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar { position: static; }
}
@media (max-width: 768px) {
    .testi-video-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════
   MOBILE OPTIMIZATION
   ══════════════════════════════════════ */

@media (max-width: 768px) {
    /* ── General spacing ── */
    section { padding: 60px 0; }
    .section-header { margin-bottom: 36px; }
    .section-sub { font-size: 15px; }

    /* ── Hero ── */
    .hero-logo-img { height: 150px; }
    .hero-badge { font-size: 10px; letter-spacing: .08em; padding: 6px 14px; margin-bottom: 16px; }
    .hero-sub { font-size: 15px; margin-bottom: 8px; }
    .hero-title { margin-bottom: 14px; }
    .countdown { margin-bottom: 26px; gap: 4px; }
    .hero-actions { gap: 10px; }
    .hero-meta { font-size: 12px; }

    /* ── Despre split ── */
    .split-row { gap: 24px; margin-bottom: 40px; }
    .split-h3 { font-size: 28px; }
    .split-img-wrap { min-height: 260px; }

    /* ── Testimoniale full width ── */
    .testi-video-grid { grid-template-columns: repeat(2, 1fr); }

    /* ── Parteneri ── */
    .partener-logo { min-width: 160px; padding: 14px 22px; height: 90px; }
    .partener-img  { max-height: 50px; }

    /* ── CTA ── */
    .cta-sub { font-size: 15px; margin-bottom: 28px; }
    .btn-large { font-size: 16px; padding: 15px 28px; }
    #inscrieri { padding: 90px 24px; }
}

@media (max-width: 480px) {
    /* ── Hero compact ── */
    .hero-content { padding: 80px 20px 52px; gap: 18px; }
    .hero-logo-img { height: 130px; }
    .count-num { font-size: 36px; }
    .countdown-item { min-width: 50px; }
    .countdown-sep { font-size: 30px; margin-bottom: 14px; }

    /* ── Stats ── */
    .stat-num { font-size: 52px; }
    .stat-lei::after { font-size: 26px; }

    /* ── Flip cards — 1 coloană pe telefon mic ── */
    .flip-cards-grid { grid-template-columns: 1fr; gap: 10px; }
    .flip-card { height: 160px; }

    /* ── Confirm grid ── */
    .confirm-grid { gap: 8px; }
    .confirm-card-inner { padding: 14px 12px; }
    .confirm-name { font-size: 14px; }

    /* ── Premii podium — scurtez barele ── */
    .podium-card.gold   .podium-bar { height: 80px !important; }
    .podium-card.silver .podium-bar { height: 55px !important; }
    .podium-card.bronze .podium-bar { height: 40px !important; }
    .podium-medal { font-size: 28px; }
    .podium-place { font-size: 15px; }
    .podium-card.gold { transform: scale(1.06); }
    .podium-card.gold .podium-medal { font-size: 36px; }
    .gold-prize-amount { font-size: 36px; }
    .gold-prize-unit { font-size: 18px; }
    .gold-prize-label { font-size: 9px; }

    /* ── Program tabs ── */
    .tab-btn { font-size: 14px; padding: 10px 12px; }
    .slot-time { font-size: 16px; min-width: 90px; }
    .slot-info { font-size: 13px; }

    /* ── Galerie ── */
    .gallery-img-wrap { width: 200px; height: 140px; }

    /* ── FAQ ── */
    .faq-q { font-size: 14px; padding: 15px 16px; }
    .faq-a p { font-size: 14px; padding: 0 16px 16px; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-brand-col { grid-column: auto; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .cookie-banner { padding: 16px 20px; }
    .cookie-banner-inner { flex-direction: column; gap: 14px; }
    .cookie-actions { width: 100%; }
}

/* ── NAV MINI LEAGUE LINK ── */
.nav-mini-link {
    background: rgba(37,99,235,0.12) !important;
    color: #60A5FA !important;
    border: 1px solid rgba(37,99,235,0.25) !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 5px 11px !important;
    transition: background .2s, border-color .2s !important;
}
.nav-mini-link:hover {
    background: rgba(37,99,235,0.22) !important;
    border-color: rgba(96,165,250,0.5) !important;
    color: #93C5FD !important;
}
