@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ========================================================
   MILLESIME MG — DESIGN SYSTEM
   ======================================================== */

:root {
  --green:        #2EFF7C;
  --green-dim:    #1fcc5c;
  --green-dark:   #091a0e;
  --green-glow:   rgba(46, 255, 124, 0.12);
  --green-glow-s: rgba(46, 255, 124, 0.28);

  --bg:      #070707;
  --bg-2:    #0b0b0b;
  --bg-card: #101010;
  --bg-card2:#161616;

  --white:  #ffffff;
  --gray-1: #cccccc;
  --gray-2: #888888;
  --gray-3: #3a3a3a;

  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Inter', sans-serif;

  --nav-h:  82px;
  --tr:     0.3s ease;
  --max-w:  1400px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--font-b); overflow-x: hidden; line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 800; text-transform: uppercase; line-height: 0.92; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 60px; }

/* ── TAG / LABEL ────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--green);
  margin-bottom: 18px;
}
.tag::before { content: ''; width: 20px; height: 2px; background: var(--green); }

/* ── SECTION HEADING ────────────────────────────────────── */
.section-head { margin-bottom: 64px; }
.section-head h2 { font-size: clamp(52px, 5vw, 80px); color: var(--white); }
.section-head h2 em { color: var(--green); font-style: normal; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-g, .btn-o {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 13px 30px; transition: var(--tr); cursor: pointer; border: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-g  { background: var(--green); color: #000; }
.btn-g:hover  { background: #fff; }
.btn-o  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); clip-path: none; padding: 12px 29px; }
.btn-o:hover  { border-color: var(--green); color: var(--green); }
.btn-sm { padding: 9px 20px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h);
  z-index: 1000; transition: background 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(7,7,7,0.96); backdrop-filter: blur(24px);
  border-color: rgba(46,255,124,0.08);
}
.nav-inner {
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo svg { flex-shrink: 0; }
.logo-name { font-family: var(--font-h); font-size: 18px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; }
.logo-name span { color: var(--green); }

/* Links */
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gray-2);
  position: relative; transition: color var(--tr);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--green); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Socials */
.nav-socials { display: flex; align-items: center; gap: 18px; }
.social-icon { color: var(--gray-2); display: flex; align-items: center; transition: color var(--tr); }
.social-icon:hover { color: var(--green); }

/* Actions */
.nav-actions { display: flex; gap: 10px; flex-shrink: 0; }
.nav-actions .btn-g, .nav-actions .btn-o { padding: 10px 22px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 720px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  transform: scale(1.04); transition: transform 8s ease;
}
.hero.loaded .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(7,7,7,0.97) 0%, rgba(7,7,7,0.55) 50%, rgba(7,7,7,0.1) 100%),
    linear-gradient(to top,   rgba(7,7,7,1)    0%, rgba(7,7,7,0.4) 40%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  padding: 0 60px 110px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border: 1px solid rgba(46,255,124,0.4);
  color: var(--green); font-family: var(--font-h); font-size: 11px;
  font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  background: rgba(46,255,124,0.06); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }
.hero-title {
  font-size: clamp(80px, 10.5vw, 148px); font-weight: 900; margin-bottom: 22px;
}
.hero-title .l1 { display: block; opacity: 0; animation: fadeUp 0.7s 0.4s ease forwards; }
.hero-title .l2 { display: block; color: var(--green); text-shadow: 0 0 100px rgba(46,255,124,0.35); opacity: 0; animation: fadeUp 0.7s 0.55s ease forwards; }
.hero-sub {
  font-size: 17px; color: var(--gray-1); font-weight: 300; letter-spacing: 0.5px;
  max-width: 480px; margin-bottom: 42px; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.7s 0.7s ease forwards;
}
.hero-btns { display: flex; gap: 14px; opacity: 0; animation: fadeUp 0.7s 0.9s ease forwards; }
.hero-scroll {
  position: absolute; right: 64px; bottom: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--gray-2); font-family: var(--font-h); font-size: 10px;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 1.5s ease forwards;
}
.scroll-bar {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollAnim 2.2s 1.5s ease infinite;
  transform-origin: top; transform: scaleY(0);
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar { background: var(--bg-card); border-top: 2px solid var(--green); border-bottom: 1px solid rgba(46,255,124,0.08); }
.stats-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 48px 36px; text-align: center;
  border-right: 1px solid rgba(46,255,124,0.08);
  transition: background var(--tr); cursor: default;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--green-glow); }
.stat-val { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 10px; }
.stat-num  { font-family: var(--font-h); font-size: 76px; font-weight: 900; color: var(--green); line-height: 1; }
.stat-suf  { font-family: var(--font-h); font-size: 26px; font-weight: 700; color: var(--green); }
.stat-lbl  { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gray-2); }

/* ═══════════════════════════════════════════════════════════
   TEAM PREVIEW (index)
   ═══════════════════════════════════════════════════════════ */
.team-preview { padding: 130px 0 0; }
.team-preview .container { margin-bottom: 50px; }
.team-photo-wrap { position: relative; overflow: hidden; display: block; }
.team-photo-wrap img {
  width: 100%; height: 580px; object-fit: cover; object-position: center 10%;
  transition: transform 0.7s ease, filter 0.4s; filter: brightness(0.8) saturate(0.9);
}
.team-photo-wrap:hover img { transform: scale(1.04); filter: brightness(0.6) saturate(1.1); }
.team-photo-caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 56px 60px;
}
.players-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.player-tag {
  padding: 5px 14px; border: 1px solid rgba(46,255,124,0.35); color: var(--green);
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; background: rgba(46,255,124,0.05);
}
.team-photo-caption h3 { font-size: 52px; margin-bottom: 20px; }
.team-photo-caption h3 span { color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   GALLERY (index)
   ═══════════════════════════════════════════════════════════ */
.gallery-section { padding: 130px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 310px 310px;
  gap: 3px;
}
.gal-item { position: relative; overflow: hidden; }
.gal-item.tall { grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s; filter: brightness(0.65) saturate(0.85); }
.gal-item:hover img { transform: scale(1.07); filter: brightness(0.45) saturate(1.2); }
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(7,7,7,0.85), transparent);
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
  transition: color var(--tr);
}
.gal-item:hover .gal-label { color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  padding: 120px 60px; text-align: center;
  background: linear-gradient(135deg, #091408 0%, var(--bg) 50%, #091408 100%);
  border-top: 1px solid rgba(46,255,124,0.15);
  border-bottom: 1px solid rgba(46,255,124,0.15);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'MMG'; position: absolute;
  font-family: var(--font-h); font-size: 380px; font-weight: 900;
  color: rgba(46,255,124,0.025); top: 50%; left: 50%;
  transform: translate(-50%,-50%); pointer-events: none; white-space: nowrap;
}
.cta-band h2 { font-size: clamp(48px, 5vw, 72px); margin-bottom: 18px; }
.cta-band p  { font-size: 17px; color: var(--gray-1); max-width: 560px; margin: 0 auto 40px; line-height: 1.75; }
.cta-btns    { display: flex; justify-content: center; gap: 14px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer { background: var(--bg-2); border-top: 1px solid rgba(255,255,255,0.04); }
.footer-main {
  max-width: var(--max-w); margin: 0 auto; padding: 80px 60px 60px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand p { font-size: 14px; color: var(--gray-2); line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-brand .brand-name { font-family: var(--font-h); font-size: 22px; font-weight: 900; text-transform: uppercase; }
.footer-brand .brand-name span { color: var(--green); }
.footer-brand .ft-socials { display: flex; gap: 14px; margin-top: 24px; }
.footer-brand .ft-socials a { color: var(--gray-2); display: flex; transition: color var(--tr); }
.footer-brand .ft-socials a:hover { color: var(--green); }

.footer-col h4 { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gray-2); margin-bottom: 22px; }
.footer-col li + li { margin-top: 13px; }
.footer-col a { font-size: 14px; color: var(--gray-1); transition: color var(--tr); }
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  max-width: var(--max-w); margin: 0 auto; padding: 22px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--gray-3); }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  height: 52vh; min-height: 380px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg) 0%, transparent 60%); }
.page-hero-content { position: relative; z-index: 1; max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 60px 56px; }
.page-hero-content h1 { font-size: clamp(56px, 7vw, 96px); }

/* ═══════════════════════════════════════════════════════════
   TEAMS PAGE
   ═══════════════════════════════════════════════════════════ */
.roster-section { padding: 100px 0 120px; }

.player-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-bottom: 80px; }

.player-card {
  background: var(--bg-card); padding: 44px 28px 36px;
  border: 1px solid rgba(255,255,255,0.04);
  text-align: center; position: relative; overflow: hidden;
  transition: all var(--tr); cursor: default;
}
.player-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--green); transform: scaleX(0); transition: transform 0.35s ease;
}
.player-card:hover { background: var(--bg-card2); transform: translateY(-8px); border-color: rgba(46,255,124,0.18); box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px var(--green-glow); }
.player-card:hover::after { transform: scaleX(1); }

.player-num   { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: 4px; color: var(--green); margin-bottom: 22px; }
.player-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--bg-card2); border: 2px solid rgba(46,255,124,0.2);
  margin: 0 auto 22px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 28px; font-weight: 900; color: var(--green);
  transition: border-color var(--tr);
}
.player-card:hover .player-avatar { border-color: var(--green); }
.player-name  { font-family: var(--font-h); font-size: 30px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; transition: color var(--tr); }
.player-card:hover .player-name { color: var(--green); }
.player-role  { font-size: 12px; color: var(--gray-2); text-transform: uppercase; letter-spacing: 3px; }

/* Coach section */
.coach-row { display: flex; justify-content: center; margin-top: 20px; }
.coach-card {
  background: var(--bg-card); border: 1px solid rgba(46,255,124,0.12);
  padding: 30px 50px; text-align: center; display: flex; align-items: center; gap: 20px;
}
.coach-label { font-family: var(--font-h); font-size: 11px; font-weight: 700; letter-spacing: 4px; color: var(--green); text-transform: uppercase; margin-bottom: 6px; }
.coach-name  { font-family: var(--font-h); font-size: 26px; font-weight: 900; text-transform: uppercase; }

/* Teams full photo strip */
.team-strip { position: relative; overflow: hidden; }
.team-strip img { width: 100%; height: 500px; object-fit: cover; object-position: center 15%; filter: brightness(0.7); }
.team-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,7,7,0.9) 0%, rgba(7,7,7,0.2) 60%, rgba(7,7,7,0.4) 100%);
  display: flex; align-items: center; padding: 0 80px;
}
.team-strip-text { max-width: 520px; }
.team-strip-text h2 { font-size: 72px; margin-bottom: 18px; }
.team-strip-text h2 span { color: var(--green); }
.team-strip-text p { font-size: 16px; color: var(--gray-1); line-height: 1.75; margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════════════
   NEWS PAGE
   ═══════════════════════════════════════════════════════════ */
.news-section { padding: 100px 0 120px; }

/* Results highlight */
.results-strip {
  background: var(--bg-card); border: 1px solid rgba(46,255,124,0.1);
  margin-bottom: 80px; padding: 40px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.result-item { padding: 20px 30px; text-align: center; border-right: 1px solid rgba(46,255,124,0.08); }
.result-item:last-child { border-right: none; }
.result-place { font-family: var(--font-h); font-size: 56px; font-weight: 900; color: var(--green); line-height: 1; }
.result-tournament { font-family: var(--font-h); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin: 6px 0; }
.result-year { font-size: 12px; color: var(--gray-2); letter-spacing: 2px; }

/* News grid */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); overflow: hidden; transition: all var(--tr); }
.news-card:hover { border-color: rgba(46,255,124,0.2); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.news-card-img { height: 220px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease, filter 0.35s; filter: brightness(0.8); }
.news-card:hover .news-card-img img { transform: scale(1.06); filter: brightness(0.6); }
.news-card-body { padding: 28px; }
.news-card-cat {
  display: inline-block; padding: 4px 10px; margin-bottom: 14px;
  background: var(--green-glow); border: 1px solid rgba(46,255,124,0.25);
  color: var(--green); font-family: var(--font-h); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
}
.news-card-title { font-family: var(--font-h); font-size: 26px; font-weight: 800; text-transform: uppercase; line-height: 1.1; margin-bottom: 10px; transition: color var(--tr); }
.news-card:hover .news-card-title { color: var(--green); }
.news-card-date { font-size: 12px; color: var(--gray-2); letter-spacing: 2px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-story { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-text h2 { font-size: clamp(48px, 4.5vw, 68px); margin-bottom: 28px; }
.about-text h2 span { color: var(--green); }
.about-text p { font-size: 16px; color: var(--gray-1); line-height: 1.85; margin-bottom: 18px; }
.about-img-wrap { position: relative; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; }
.about-img-wrap::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(46,255,124,0.3); pointer-events: none; }

/* Achievements grid */
.achievements-section { padding: 100px 0; background: var(--bg-2); }
.ach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ach-card {
  padding: 40px 28px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04); border-left: 3px solid var(--green);
  transition: all var(--tr);
}
.ach-card:hover { background: var(--bg-card2); transform: translateX(6px); box-shadow: 0 0 40px var(--green-glow); }
.ach-rank  { font-family: var(--font-h); font-size: 64px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 8px; }
.ach-event { font-family: var(--font-h); font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.ach-year  { font-size: 12px; color: var(--gray-2); letter-spacing: 3px; }

/* About gallery */
.about-gallery { padding: 100px 0; }
.about-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.about-gal-item { position: relative; overflow: hidden; height: 300px; }
.about-gal-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65); transition: transform 0.6s, filter 0.4s; }
.about-gal-item:hover img { transform: scale(1.07); filter: brightness(0.45); }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-section { padding: 110px 0 130px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 90px; align-items: start; }

.contact-info h2 { font-size: clamp(44px, 4vw, 60px); margin-bottom: 22px; }
.contact-info h2 span { color: var(--green); }
.contact-info p  { font-size: 16px; color: var(--gray-1); line-height: 1.8; margin-bottom: 44px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.contact-icon { width: 42px; height: 42px; background: var(--green-glow); border: 1px solid rgba(46,255,124,0.2); display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.contact-item-txt { font-size: 14px; color: var(--gray-1); }
.contact-socials { display: flex; gap: 12px; margin-top: 36px; }
.contact-socials a {
  width: 44px; height: 44px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  color: var(--gray-2); transition: all var(--tr);
}
.contact-socials a:hover { border-color: var(--green); color: var(--green); background: var(--green-glow); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-2); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.07);
  color: var(--white); padding: 14px 18px; font-family: var(--font-b); font-size: 15px;
  transition: border-color var(--tr), background var(--tr); outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); background: var(--bg-card2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-3); }
.form-group textarea { resize: vertical; min-height: 145px; }
.form-group select option { background: var(--bg-card2); }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes blink    { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   LOGO IMAGE (nav)
   ═══════════════════════════════════════════════════════════ */
.logo-img-wrap {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.logo-img-wrap img { width: 100%; height: 100%; object-fit: contain; }

/* Nav compact — 9 items */
.nav-links { gap: 20px; }
.nav-links a { font-size: 13px; letter-spacing: 2px; }

/* ═══════════════════════════════════════════════════════════
   PRÉSENTATION (home)
   ═══════════════════════════════════════════════════════════ */
.pres-section { padding: 120px 0; }
.pres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pres-img-wrap { position: relative; overflow: hidden; }
.pres-img-wrap img { width: 100%; height: 560px; object-fit: cover; object-position: center 20%; }
.pres-img-wrap::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(46,255,124,0.3); pointer-events: none; }
.pres-text .tag { margin-bottom: 18px; }
.pres-text h2 { font-size: clamp(44px, 4.5vw, 66px); margin-bottom: 26px; }
.pres-text h2 span { color: var(--green); }
.pres-text p { font-size: 15px; color: var(--gray-1); line-height: 1.85; margin-bottom: 16px; }
.pres-bullets { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.pres-bullet { display: flex; align-items: center; gap: 14px; font-family: var(--font-h); font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }
.pres-bullet::before { content: ''; width: 26px; height: 2px; background: var(--green); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   LIKES SECTION
   ═══════════════════════════════════════════════════════════ */
.likes-section {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(46,255,124,0.07);
  border-bottom: 1px solid rgba(46,255,124,0.07);
}
.likes-inner { text-align: center; }
.likes-intro { font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gray-2); margin-bottom: 36px; }

.like-btn {
  display: inline-flex; flex-direction: column; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; color: var(--white);
  padding: 0; transition: var(--tr);
}
.like-btn svg { width: 68px; height: 68px; transition: transform 0.3s, filter 0.3s; }
.like-btn:not(.liked) .heart-path { fill: none; stroke: var(--green); stroke-width: 1.8; }
.like-btn.liked .heart-path { fill: var(--green); stroke: var(--green); }
.like-btn:not([disabled]):hover svg { transform: scale(1.12); filter: drop-shadow(0 0 18px rgba(46,255,124,0.6)); }
.like-btn[disabled] { cursor: default; }

.like-num-wrap { display: flex; align-items: baseline; gap: 4px; justify-content: center; }
.like-num  { font-family: var(--font-h); font-size: 64px; font-weight: 900; color: var(--white); line-height: 1; }
.like-unit { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--gray-2); }
.like-sub  { font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-2); margin-top: 12px; }
.like-status {
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--green);
  margin-top: 10px; min-height: 22px; opacity: 0; transition: opacity 0.4s;
}
.like-status.visible { opacity: 1; }

@keyframes likePop { 0%,100% { transform: scale(1); } 40% { transform: scale(1.35); } 75% { transform: scale(0.92); } }
.like-pop svg { animation: likePop 0.55s ease; }

/* ═══════════════════════════════════════════════════════════
   LATEST NEWS SECTION
   ═══════════════════════════════════════════════════════════ */
.latest-news { padding: 120px 0; }

/* X Banner */
.x-banner {
  display: flex; align-items: center; gap: 28px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 40px; margin-bottom: 40px;
  transition: border-color var(--tr);
}
.x-banner:hover { border-color: rgba(46,255,124,0.2); }
.x-banner-icon { color: var(--white); flex-shrink: 0; }
.x-banner-text { flex: 1; }
.x-banner-text strong { font-family: var(--font-h); font-size: 20px; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 4px; }
.x-banner-text span { font-size: 14px; color: var(--gray-2); }
.x-banner .btn-g { flex-shrink: 0; }

/* YT Card */
.yt-news-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.yt-embed-wrap { position: relative; padding-top: 56.25%; background: #000; }
.yt-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.yt-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: var(--bg-card2); color: var(--gray-2);
}
.yt-placeholder p { font-family: var(--font-h); font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-2); }
.yt-play { width: 64px; height: 64px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.yt-play svg { width: 26px; height: 26px; color: #000; margin-left: 4px; }
.yt-card-body { padding: 22px 26px; }
.yt-channel-tag { font-family: var(--font-h); font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.yt-video-title { font-family: var(--font-h); font-size: 24px; font-weight: 800; text-transform: uppercase; line-height: 1.15; margin-bottom: 8px; }
.yt-video-date { font-size: 12px; color: var(--gray-2); letter-spacing: 2px; }
