:root {
  --gold: #F5A623;
  --gold-light: #FFD166;
  --gold-dark: #C8840A;
  --black: #000000;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --accent: #FF4136;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: all 0.3s;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--gold);
}

.logo-ball {
  width: 32px;
  height: 32px;
  background: radial-gradient(circle at 35% 35%, #FFD166, #C8840A);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-ball::after {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  width: 120%;
  height: 2px;
  background: rgba(0,0,0,0.4);
  transform: rotate(-15deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,166,35,0.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 72px;
}

.hero-text { padding: 60px 0; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 6px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title .line2 {
  color: var(--gold);
  display: block;
  -webkit-text-stroke: 0;
}

.hero-title .line3 {
  display: block;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
  font-size: clamp(48px, 5vw, 80px);
}

.hero-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin: 28px 0 40px;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-sub strong { color: var(--gold-light); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.4);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 15px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.8s 0.4s ease both;
}

.stat-item { text-align: left; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s 0.2s ease both;
}

.hero-rings {
  position: absolute;
  width: 500px; height: 500px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.15);
  animation: spinRing linear infinite;
}

.ring1 { inset: 0; animation-duration: 20s; }
.ring2 { inset: 30px; animation-duration: 15s; animation-direction: reverse; border-style: dashed; }
.ring3 { inset: 80px; animation-duration: 25s; }

@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-court {
  width: 340px; height: 340px;
  background: var(--dark3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(245,166,35,0.2);
  box-shadow:
    0 0 80px rgba(245,166,35,0.1),
    inset 0 0 60px rgba(0,0,0,0.5);
  overflow: hidden;
}

.hero-court::before {
  content: '';
  position: absolute;
  width: 160px; height: 80px;
  border: 2px solid rgba(245,166,35,0.2);
  border-bottom: none;
  border-radius: 80px 80px 0 0;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.big-ball {
  width: 160px; height: 160px;
  background: radial-gradient(circle at 35% 30%, #FFD166, #C8840A 40%, #7A4F00);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset -10px -10px 30px rgba(0,0,0,0.3);
  animation: floatBall 3s ease-in-out infinite;
}

@keyframes floatBall {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

.big-ball::before {
  content: '';
  position: absolute;
  top: 50%; left: -5%;
  width: 110%; height: 3px;
  background: rgba(0,0,0,0.35);
  transform: rotate(-15deg);
  border-radius: 2px;
}

.big-ball::after {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  width: 3px; height: 60%;
  background: rgba(0,0,0,0.35);
  transform: translateX(-50%);
  border-radius: 2px;
}

.floating-badge {
  position: absolute;
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(245,166,35,0.4);
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge1 { top: 20px; right: -20px; animation-delay: 0s; }
.badge2 { bottom: 40px; left: -30px; animation-delay: 2s; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.badge-value {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-top: 2px;
}

/* ===== PARTNER LOGOS ===== */
.partners-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.partners-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.partner-logo:hover { color: var(--gold); }

/* ===== SECTIONS ===== */
section { padding: 120px 80px; max-width: 1400px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title .highlight { color: var(--gold); }

/* ===== ABOUT ===== */
#about {
  background: var(--dark);
  max-width: 100%;
  padding: 120px 0;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--dark2);
  border: 1px solid rgba(245,166,35,0.1);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.about-card-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.about-card-quote span { color: var(--gold); }

.about-card-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.leagues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 24px;
}

.league-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  transition: all 0.2s;
  cursor: default;
}

.league-item:hover {
  background: rgba(245,166,35,0.1);
  color: var(--gold);
  border-color: rgba(245,166,35,0.3);
}

.about-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-text p strong { color: var(--gold-light); font-weight: 500; }

.values-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--gold);
  width: 40px;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
#gallery {
  background: var(--black);
  max-width: 100%;
  padding: 120px 0;
}

.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.gallery-filter {
  display: flex;
  gap: 8px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  padding: 8px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

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

.player-card {
  position: relative;
  background: var(--dark3);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.player-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.player-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.player-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20%;
  background: linear-gradient(160deg, var(--dark3) 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.player-placeholder::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at top, rgba(245,166,35,0.06), transparent 60%);
}

.player-silhouette {
  width: 55%;
  max-width: 180px;
  opacity: 0.15;
}

.player-card:hover .player-placeholder { }
.player-card:hover .player-silhouette { opacity: 0.25; transition: opacity 0.4s; }

.player-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: all 0.3s;
}

.player-card:hover .player-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.6) 50%, rgba(245,166,35,0.05) 100%);
}

.player-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(245,166,35,0.08);
  position: absolute;
  top: 16px; right: 16px;
  transition: color 0.3s;
}

.player-card:hover .player-number { color: rgba(245,166,35,0.15); }

.player-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--white);
}

.player-meta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.player-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

.player-pos {
  border-color: rgba(255,255,255,0.2);
  color: var(--gray-light);
  background: transparent;
}

.player-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
  margin-top: 8px;
}

.player-card:hover .player-details {
  max-height: 260px;
  opacity: 1;
}

.player-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.ps {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  color: var(--gray);
}

.ps strong { display: block; font-size: 18px; color: var(--white); font-weight: 700; }

.player-bio {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,166,35,0.15);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-light);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.player-card:hover .player-bio {
  opacity: 1;
  transform: translateY(0);
}

.gallery-more {
  text-align: center;
  margin-top: 48px;
}

/* ===== REGISTRATION ===== */
#register {
  background: var(--dark);
  max-width: 100%;
  padding: 120px 0;
}

.register-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.register-info { padding-top: 20px; }

.register-info p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-top: 24px;
  font-weight: 300;
}

.eligibility-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eli-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.eli-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.form-container {
  background: var(--dark2);
  border: 1px solid rgba(245,166,35,0.1);
  padding: 48px;
  position: relative;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.2); }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(245,166,35,0.04);
}

.form-select option { background: var(--dark2); }

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.input-unit {
  position: relative;
}

.input-unit .form-input { padding-right: 48px; }

.unit-label {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.stats-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
  margin: 20px 0;
  grid-column: 1 / -1;
}

.stats-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.stats-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.submit-btn {
  grid-column: 1 / -1;
  background: var(--gold);
  color: var(--black);
  padding: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  border: none;
  cursor: pointer;
  clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  transition: all 0.25s;
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.4);
}

/* ===== CONTACT ===== */
#contact {
  background: var(--black);
  max-width: 100%;
  padding: 100px 0;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  margin-top: 56px;
}

.contact-box {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px;
  transition: all 0.3s;
}

.contact-box:hover {
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.03);
  transform: translateY(-4px);
}

.contact-box-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-box-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-box-val {
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}

.contact-box-sub {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

.contact-form-wrap {
  max-width: 720px;
  margin: 56px auto 0;
}

.success-msg {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold-light);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
}

.error-msg {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(255,65,54,0.08);
  border: 1px solid rgba(255,65,54,0.3);
  color: #FF8A80;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
}

/* ===== SOCIAL ROW ===== */
.social-section {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 0 80px;
  text-align: center;
}

.social-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-icon:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 28px rgba(245,166,35,0.35);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--white);
}

.footer-logo span { color: var(--gold); }

.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

.close-btn {
  position: absolute;
  top: 24px; right: 40px;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

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

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--gold);
  padding: 20px 24px;
  text-align: center;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content, .about-inner, .register-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  section, .partners-strip, footer { padding-left: 32px; padding-right: 32px; }
  .about-inner, .gallery-inner, .register-inner, .contact-inner { padding: 0 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .players-grid { grid-template-columns: 1fr 1fr; }
  .player-card:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; padding-top: 72px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid-inner { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
  .players-grid { grid-template-columns: 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .leagues-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   AJOUTS — pages multiples, actualités, admin
   ============================================ */

.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Page header (utilisé sur players/news/register/contact quand pas de hero complet) */
.page-header {
  padding: 160px 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Loading / empty states */
.state-msg {
  color: var(--gray);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  padding: 60px 0;
  text-align: center;
  grid-column: 1 / -1;
}

/* ===== NEWS / ACTUALITÉS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--dark2);
  border: 1px solid rgba(245,166,35,0.1);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.news-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: var(--dark3);
}

.news-card-body { padding: 24px; }

.news-card-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.05;
}

.news-card-excerpt {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== CONTACT ===== */
.contact-box-link { color: var(--gold-light); text-decoration: none; }

/* ===== ADMIN ===== */
.admin-shell { min-height: 100vh; background: var(--black); padding: 120px 40px 60px; max-width: 1200px; margin: 0 auto; }

.admin-login {
  max-width: 380px;
  margin: 140px auto 0;
  background: var(--dark2);
  border: 1px solid rgba(245,166,35,0.15);
  padding: 40px;
}

.admin-login h1 { font-family:'Bebas Neue',sans-serif; font-size:32px; letter-spacing:2px; margin-bottom: 24px; }

.admin-error { color: var(--accent); font-size: 13px; margin-top: 12px; min-height: 18px; }

.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-tabs { display: flex; gap: 8px; margin-bottom: 32px; }

.admin-tab {
  background: transparent; border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray); padding: 10px 22px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.admin-tab.active { border-color: var(--gold); color: var(--gold); background: rgba(245,166,35,0.08); }

.admin-panel { display: none; }
.admin-panel.active { display: block; }

.admin-list-item {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 22px; margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}

.admin-list-item .info strong { display:block; font-family:'Barlow Condensed',sans-serif; letter-spacing:0.5px; }
.admin-list-item .info span { color: var(--gray); font-size: 13px; }

.admin-actions { display: flex; gap: 8px; flex-shrink: 0; }

.btn-small {
  background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--gray-light);
  padding: 6px 14px; font-size: 12px; cursor: pointer; font-family: 'Barlow', sans-serif;
}
.btn-small:hover { border-color: var(--gold); color: var(--gold); }
.btn-small.danger:hover { border-color: var(--accent); color: var(--accent); }

.admin-form { background: var(--dark2); border: 1px solid rgba(245,166,35,0.1); padding: 32px; margin-bottom: 32px; }
