/* Stilurile cardului și gold-text sunt în liga-card.css (componentă partajată) */
@import url('/css/liga-card.css');

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

:root {
  --obsidian:       #070709;
  --charcoal:       #141216;
  --warm-black:     #1B0F0A;
  --gold-highlight: #F3B855;
  --gold-deep:      #BD7E37;
  --bronze:         #90602C;
  --ivory:          #F8FAF2;
}

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== SITE CONTENT WRAPPER ===== */
.site-wrap { position: relative; z-index: 1; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 3rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url('/liga/liga-bkg-red.jpg') center center / cover no-repeat;
}

/* Bara aurie 3D jos */
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent      0%,
    #7a4500         4%,
    #BD7E37         12%,
    #F3B855         25%,
    #FDE08A         35%,
    #fff8e1         50%,
    #FDE08A         65%,
    #F3B855         75%,
    #BD7E37         88%,
    #7a4500         96%,
    transparent      100%
  );
  box-shadow:
    0 -1px 0   rgba(255,220,100,0.25),
    0  2px 8px  rgba(243,184,85,0.70),
    0  4px 22px rgba(189,126,55,0.55),
    0  8px 40px rgba(189,126,55,0.30);
}

nav.scrolled {
  background: rgba(7,7,9,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  height: 95px;
  margin: 0;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 1;
}

.nav-cta {
  display: inline-block;
  margin-left: auto;
  padding: 0.55rem 1.6rem;
  background: linear-gradient(135deg, #BD7E37, #F3B855);
  color: #07070a;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 0 22px rgba(243,184,85,0.28);
}

.nav-cta:hover {
  box-shadow: 0 0 40px rgba(243,184,85,0.6);
  transform: translateY(-1px);
}

/* ===== UTILITY ===== */
/* .gold-text și @keyframes shimmer sunt în liga-card.css */

.gold-line-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.gold-line-deco::before,
.gold-line-deco::after {
  content: '';
  height: 1px;
  width: 48px;
  background: linear-gradient(to right, transparent, #BD7E37);
}

.gold-line-deco::after {
  background: linear-gradient(to left, transparent, #BD7E37);
}

.gold-diamond {
  width: 5px; height: 5px;
  background: var(--gold-deep);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}

.section-h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.9rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.08s; font-size: 0.85rem; font-weight: bold;}
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }
.d5 { transition-delay: 0.48s; }
.d6 { transition-delay: 0.58s; }

/* ===== BTN ===== */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: linear-gradient(135deg, #BD7E37, #F3B855);
  color: #07070a;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s, transform 0.35s;
  box-shadow: 0 0 28px rgba(243,184,85,0.38), 0 5px 18px rgba(0,0,0,0.55);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s;
}

.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover {
  box-shadow: 0 0 55px rgba(243,184,85,0.7), 0 8px 28px rgba(0,0,0,0.65);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: transparent;
  color: var(--gold-highlight);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(189,126,55,0.45);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold-highlight);
  background: rgba(189,126,55,0.07);
  box-shadow: 0 0 22px rgba(189,126,55,0.18);
}

/* ===== BUTTON GROUP ===== */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-group .btn-primary,
.btn-group .btn-ghost {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  white-space: nowrap;
}

/* ===== BACKGROUND UTILITARE ===== */
.bkg-red-carpet {
  background: url('/liga/liga-bkg-red.jpg') center center / cover no-repeat !important;
}

/* ===== SECTION DIVIDER ===== */
.section-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(189,126,55,0.18) 30%, rgba(189,126,55,0.35) 50%, rgba(189,126,55,0.18) 70%, transparent 100%);
  margin: 0;
}

/* ===================================================
   HERO
=================================================== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.hero-logo-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('./logo-LM.jpg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
}

.hero-logo-bg {
  /* ... */
  background-size: 100%;   /* sau 130%, 150% – cu cât mai mare, cu atât mai mult zoom */
  background-position: center center;
}

#hero.hero-video-ended .hero-video-wrap {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}

#hero.hero-video-ended .hero-logo-bg {
  opacity: 1;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.9);
  pointer-events: none;
  opacity: 0;
}

#hero.hero-video-ended::before {
  animation: overlayIn 1.5s ease-out forwards;
}

@keyframes overlayIn {
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-logo {
  width: min(460px, 78vw);
  margin-bottom: 2.2rem;
  filter: drop-shadow(0 0 38px rgba(243,184,85,0.42)) drop-shadow(0 0 75px rgba(189,126,55,0.18));
  animation: logoIn 1.3s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
    filter: drop-shadow(0 0 0px rgba(243,184,85,0));
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 38px rgba(243,184,85,0.42)) drop-shadow(0 0 75px rgba(189,126,55,0.18));
  }
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
  opacity: 0;
}

#hero.hero-video-ended .hero-eyebrow {
  animation: fadeUp 0.8s 1.6s both;
}

.hero-h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1.6rem;
  opacity: 0;
}

#hero.hero-video-ended .hero-h1 {
  animation: fadeUp 0.8s 1.8s both;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(248,250,242,0.88);
  max-width: 540px;
  margin: 0 auto 0.6rem;
  line-height: 1.5;
  opacity: 0;
}

#hero.hero-video-ended .hero-quote {
  animation: fadeUp 0.8s 2.0s both;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(248,250,242,0.85);
  max-width: 480px;
  margin: 0 auto 0.8rem;
  opacity: 0;
}

#hero.hero-video-ended .hero-sub {
  animation: fadeUp 0.8s 2.15s both;
}

.hero-premium-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(189,126,55,0.1);
  border: 1px solid rgba(189,126,55,0.3);
  border-radius: 99px;
  padding: 0.38rem 1.1rem;
  margin-bottom: 2.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold-highlight);
  opacity: 0;
}

#hero.hero-video-ended .hero-premium-pill {
  animation: fadeUp 0.8s 2.3s both;
}

.hero-premium-pill span {
  width: 5px; height: 5px;
  background: var(--gold-highlight);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-highlight);
  animation: pillDot 2.5s ease infinite;
}

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

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
  opacity: 0;
}

#hero.hero-video-ended .hero-btns {
  animation: fadeUp 0.8s 2.5s both;
}

.hero-disclaimer {
  font-size: 0.72rem;
  color: rgba(248,250,242,0.65);
  letter-spacing: 0.04em;
  opacity: 0;
}

#hero.hero-video-ended .hero-disclaimer {
  animation: fadeUp 0.8s 2.7s both;
}

.hero-disclaimer a {
  color: rgba(189,126,55,0.85);
  text-decoration: underline;
  cursor: pointer;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
}

#hero.hero-video-ended .scroll-cue {
  animation: fadeUp 1s 3.4s both;
}

.scroll-cue-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(189,126,55,0.55), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

.scroll-cue-label {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  color: rgba(189,126,55,0.35);
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   SECTION 2 — CE ESTE LIGA
=================================================== */
#ce-este {
  padding: 9rem 2rem;
  background: #ebe3da;
}

#ce-este .eyebrow {
  color: #7a4e1e;
}

#ce-este .section-h2 {
  color: #1a0e06;
}

#ce-este .gold-text {
  background: linear-gradient(135deg, #BD7E37 0%, #F3B855 45%, #8B4513 60%, #F3B855 75%, #BD7E37 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

#ce-este .statement-text {
  color: rgba(30,15,5,0.92);
  font-weight: 400;
}

#ce-este .statement-row:last-child .statement-text {
  color: #1a0e06;
  font-weight: 500;
}

#ce-este .statement-index {
  background: linear-gradient(135deg, #8B5E1A, #C8882A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ce-este-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.statements {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.statement-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(189,126,55,0.08);
  text-align: left;
}

.statement-row:last-child { border-bottom: none; }

.statement-index {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, rgba(189,126,55,0.2), rgba(243,184,85,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 3rem;
  text-align: right;
}

.statement-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(189,126,55,0.45), transparent);
  flex-shrink: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease 0.2s;
}

.statement-row.in .statement-bar { transform: scaleY(1); }

.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 300;
  color: rgba(248,250,242,0.78);
  line-height: 1.55;
}

.statement-row:last-child .statement-text {
  font-style: italic;
  color: var(--ivory);
  font-weight: 400;
}

/* ===================================================
   SECTION 3 — PUNCTE
=================================================== */
#puncte {
  padding: 9rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(27,15,10,0.25) 50%, transparent 100%);
}

.puncte-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.puncte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.85rem;
  margin-top: 3rem;
}

.puncte-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.45rem 1.5rem;
  background: linear-gradient(135deg, #F5E8C8 0%, #EDD9A3 100%);
  border: 1px solid rgba(189,126,55,0.28);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow:
    0 4px 18px rgba(189,126,55,0.10),
    0 1px 4px  rgba(189,126,55,0.07);
}

.puncte-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(189,126,55,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.puncte-card:hover::before { opacity: 1; }
.puncte-card:hover {
  border-color: rgba(189,126,55,0.42);
  transform: translateY(-3px);
  box-shadow:
    0 10px 36px rgba(189,126,55,0.18),
    0 2px  8px  rgba(189,126,55,0.10);
}

.puncte-icon-wrap {
  width: 42px; height: 42px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(189,126,55,0.14), rgba(243,184,85,0.06));
  border: 1px solid rgba(189,126,55,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.puncte-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pl-main {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: #1A0F08;
  line-height: 1.35;
}

.pl-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(26,15,8,0.72);
  line-height: 1.3;
}

.puncte-micro {
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(248,250,242,0.70);
}

/* ===================================================
   SECTION 4 — CLASAMENT
=================================================== */
#clasament {
  padding: 9rem 2rem;
  text-align: center;
  background: #ebe3da;
}

#clasament .eyebrow {
  color: #7a4e1e;
}

#clasament .section-h2 {
  color: #1a0e06;
}

#clasament .gold-text {
  background: linear-gradient(135deg, #BD7E37 0%, #F3B855 45%, #8B4513 60%, #F3B855 75%, #BD7E37 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

#clasament .clasament-note {
  color: rgba(30,15,5,0.80);
}

.clasament-plate {
  max-width: 600px;
  margin: 3rem auto 0;
  background: linear-gradient(175deg, rgba(27,15,10,0.85) 0%, rgba(14,12,16,0.92) 100%);
  border: 1px solid rgba(189,126,55,0.22);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(189,126,55,0.08),
    0 30px 80px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(243,184,85,0.1);
}

.plate-header {
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(189,126,55,0.12);
  background: linear-gradient(90deg, rgba(189,126,55,0.06), transparent, rgba(189,126,55,0.06));
}

.plate-title {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: rgba(248,250,242,0.65);
  text-transform: uppercase;
}

.live-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(74,222,128,0.75);
  animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

.plate-list { list-style: none; }

.plate-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.9rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.035);
  transition: background 0.22s;
}

.plate-item:last-child { border-bottom: none; }
.plate-item:hover { background: rgba(189,126,55,0.045); }

.plate-rank {
  width: 26px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(248,250,242,0.55);
  flex-shrink: 0;
}

.plate-item.top3 .plate-rank {
  font-size: 0.82rem;
  background: linear-gradient(135deg, #BD7E37, #F3B855);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plate-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(189,126,55,0.25), rgba(243,184,85,0.1));
  border: 1px solid rgba(189,126,55,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  color: var(--gold-highlight);
  flex-shrink: 0;
  margin: 0 0.75rem;
}

.plate-name {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(248,250,242,0.78);
  text-align: left;
}

.plate-points {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(135deg, #BD7E37, #F3B855);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plate-footer {
  padding: 1.2rem 1.75rem;
  border-top: 1px solid rgba(189,126,55,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(189,126,55,0.025);
}

.prag-wrap { text-align: left; }

.prag-label {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,250,242,0.60);
  margin-bottom: 0.2rem;
}

.prag-value {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, #BD7E37, #F3B855);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.update-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  color: rgba(248,250,242,0.55);
}

.clasament-note {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(248,250,242,0.70);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   SECTION 5 — CARD SHARE
=================================================== */
#card-share {
  padding: 9rem 2rem;
  text-align: center;
}

/* Stilurile .card-* sunt în liga-card.css (importat la începutul acestui fișier) */
/* Stiluri specifice contextuluil ligii pentru secțiunea card-share: */
#card-share .card-scene {
  margin-top: 4rem;
}

#card-share .card-cta-wrap {
  margin-top: 2.5rem;
}

/* ===================================================
   SECTION 6 — PREMIUM
=================================================== */
#premium {
  padding: 9rem 2rem;
  text-align: center;
  background: #ebe3da;
}

#premium > .eyebrow {
  color: #7a4e1e;
}

#premium > .section-h2 {
  color: #1a0e06;
}

#premium > .section-h2 .gold-text {
  background: linear-gradient(135deg, #BD7E37 0%, #F3B855 45%, #8B4513 60%, #F3B855 75%, #BD7E37 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

.premium-frame {
  max-width: 660px;
  margin: 3rem auto 0;
  background: linear-gradient(150deg, rgba(27,15,10,0.65), rgba(14,12,16,0.82));
  border: 1px solid rgba(189,126,55,0.28);
  border-radius: 10px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.premium-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F3B855, transparent);
}

/* Corner accents */
.premium-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189,126,55,0.35), transparent);
}

.premium-amount {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.premium-sublabel {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(248,250,242,0.90);
  margin-bottom: 2.2rem;
}

.premium-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(248,250,242,0.90);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.premium-fine {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(248,250,242,0.90);
  margin-bottom: 2.5rem;
}

/* ===================================================
   SECTION 7 — CLOSING
=================================================== */
#closing {
  padding: 11rem 2rem;
  text-align: center;
  position: relative;
}

#closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 55%, rgba(189,126,55,0.065) 0%, transparent 70%);
  pointer-events: none;
}

.closing-h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 680px;
  margin: 0 auto 1.6rem;
}

.closing-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.1vw, 1.5rem);
  font-weight: 300;
  color: rgba(248,250,242,0.85);
  max-width: 500px;
  margin: 0 auto 3.2rem;
  line-height: 1.7;
}

.final-btn {
  padding: 1.2rem 4rem !important;
  font-size: 0.95rem !important;
  box-shadow: 0 0 60px rgba(243,184,85,0.45), 0 10px 35px rgba(0,0,0,0.72) !important;
}

/* ===================================================
   FOOTER
=================================================== */
footer {
  padding: 3rem 2rem 3.5rem;
  text-align: center;
  border-top: 1px solid rgba(189,126,55,0.09);
}

.footer-logo {
  width: 600px;
  display: block;
  margin: 0 auto 1.4rem;
  opacity: 0.95;
  filter: grayscale(0.3);
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(248,250,242,0.55);
  letter-spacing: 0.1em;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 768px) {
  nav {
    padding: 0 1.4rem;
    height: 60px;
    width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }

  .nav-logo {
    height: 70px;
    max-width: 50%;
    transform: translateX(-50%) translateY(10px);
  }

  .nav-cta {
    font-size: 0.62rem;
    padding: 0.35rem 0.5rem;
    position: relative;
    z-index: 2;
  }

  #hero {
    padding: 5.5rem 1.4rem 4rem;
    height: 100vh;
    height: 100svh;
  }

  .hero-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .hero-logo-bg {
    background-size: 65%;
  }

  #ce-este, #puncte, #clasament, #card-share, #premium, #closing { padding-top: 6rem; padding-bottom: 6rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .premium-frame { padding: 2.5rem 1.6rem; }
  .statement-row { gap: 1rem; }
  .statement-index { font-size: 1.8rem; width: 3rem; }
  .footer-logo { width: 100%; max-width: 300px; }
}


/* ===== CURRENT USER HIGHLIGHT IN LEADERBOARD ===== */
.plate-item.is-me {
  background: linear-gradient(90deg, rgba(189,126,55,0.12), rgba(243,184,85,0.06), rgba(189,126,55,0.12));
  border-left: 2px solid rgba(243,184,85,0.5);
}

.plate-item.is-me .plate-name {
  color: var(--gold-highlight);
  font-weight: 500;
}
