:root {
  --bg: #071018;
  --bg-alt: #0c1824;
  --panel: #0f1f2e;
  --panel-hover: #14283b;
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(232, 184, 92, 0.25);
  --text: #f8fbff;
  --muted: #95a8be;
  --muted-light: #c2d1e0;
  --gold: #e8b85c;
  --gold-light: #fae1a6;
  --gold-dark: #b88628;
  --green: #2bcf9b;
  --green-glow: rgba(43, 207, 155, 0.2);
  --wa-color: #25D366;
  --wa-dark: #128C7E;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.45);
  --font-main: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", var(--font-main);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 80% 5%, rgba(232, 184, 92, 0.08), transparent 40%),
    radial-gradient(circle at 10% 20%, rgba(43, 207, 155, 0.04), transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(232, 184, 92, 0.05), transparent 45%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-left: max(24px, env(safe-area-inset-left, 0px));
  padding-right: max(24px, env(safe-area-inset-right, 0px));
}

/* Navigation Bar */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 16, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(232, 184, 92, 0.28);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 3px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-light);
}

.menu a {
  position: relative;
  padding: 6px 0;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
  border-radius: 2px;
}

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

.menu a:hover::after {
  width: 100%;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0f161e;
  box-shadow: 0 8px 24px rgba(232, 184, 92, 0.22);
}

.btn.primary:hover {
  box-shadow: 0 12px 28px rgba(232, 184, 92, 0.35);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn.btn-wa:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

/* Hamburger Toggle Button (Mobile/Tablet) */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 16, 24, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  border-bottom: 1px solid var(--line);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  font-size: 17px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background: rgba(232, 184, 92, 0.1);
  color: var(--gold-light);
  border-color: rgba(232, 184, 92, 0.2);
}

/* Hero Section */
.hero {
  padding: 70px 0 50px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(232, 184, 92, 0.1);
  border: 1px solid rgba(232, 184, 92, 0.25);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 20px 0 0;
  color: #ffffff;
}

.gold-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero p {
  font-size: clamp(15px, 1.8vw, 17.5px);
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin: 22px 0 0;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* 3D Visual Box */
.hero-visual {
  position: relative;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-xl);
  background: 
    radial-gradient(circle at 50% 20%, rgba(232, 184, 92, 0.18), transparent 50%),
    linear-gradient(180deg, #0f1c29 0%, #08111a 100%);
  height: 480px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.board-wrapper {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  perspective: 800px;
}

.board {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 2px solid rgba(232, 184, 92, 0.4);
  border-radius: 8px;
  transform: rotateX(55deg) rotateZ(-12deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  transform-style: preserve-3d;
}

.sq {
  aspect-ratio: 1;
}

.sq.light {
  background: #e4d3b6;
}

.sq.dark {
  background: #6a4f33;
}

.piece {
  position: absolute;
  font-size: 54px;
  filter: drop-shadow(0 14px 16px rgba(0,0,0,0.6));
  animation: float 4s ease-in-out infinite;
  user-select: none;
}

.p1 { left: 24%; top: 12%; animation-delay: 0s; }
.p2 { right: 18%; top: 18%; animation-delay: 1.2s; }
.p3 { left: 45%; top: 32%; animation-delay: 2.4s; }

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

.visual-card {
  position: relative;
  z-index: 10;
  margin: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 16, 24, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 20px;
}

.visual-card small {
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-card h3 {
  font-family: var(--font-display);
  margin: 6px 0 0;
  font-size: 19px;
  line-height: 1.3;
}

.visual-card p {
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0 0;
  color: var(--muted);
}

/* Stats Bar */
.stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  border-radius: var(--radius-sm);
}

.stat {
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
}

/* Sections Standard */
.section {
  padding: 88px 0;
  position: relative;
}

.soft {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
}

.section-head.center {
  text-align: center;
  margin: 0 auto;
}

.kicker {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  color: #fff;
}

.section-head p {
  color: var(--muted);
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  line-height: 1.75;
  margin-top: 16px;
}

/* Programs Grid */
.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 184, 92, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(232, 184, 92, 0.1);
  border: 1px solid rgba(232, 184, 92, 0.2);
  color: var(--gold-light);
  font-size: 24px;
  flex-shrink: 0;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  margin: 20px 0 10px;
  color: #fff;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  flex-grow: 1;
}

.card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 13.5px;
  font-weight: 700;
}

.card a:hover {
  gap: 10px;
  color: #fff;
}

/* Section Event Banner / Iklan Event */
.event-banner-section {
  padding: 40px 0 0;
}

.event-banner-card {
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-xl);
  background: 
    radial-gradient(circle at 90% 20%, rgba(232, 184, 92, 0.16), transparent 45%),
    linear-gradient(135deg, #101e2b 0%, #08121c 100%);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.event-banner-poster {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(232, 184, 92, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  background: #09131c;
  aspect-ratio: 3/4;
}

.event-banner-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.event-banner-poster:hover img {
  transform: scale(1.05);
}

.banner-zoom-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 16, 24, 0.9);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.event-banner-content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  margin: 12px 0 10px;
  color: #fff;
}

.event-banner-content p {
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.7;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: #fb7185;
  font-size: 11px;
  font-weight: 800;
  width: fit-content;
  letter-spacing: 0.05em;
}

.event-meta {
  display: flex;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin: 18px 0;
  color: var(--muted-light);
  font-size: 13.5px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Events Grid */
.events {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 44px;
}

.featured {
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: 
    radial-gradient(circle at 85% 15%, rgba(232, 184, 92, 0.12), transparent 35%),
    linear-gradient(180deg, #101e2b 0%, #09131c 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.25;
  margin: 16px 0 10px;
}

.featured p {
  color: var(--muted-light);
  line-height: 1.7;
  font-size: 14.5px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: all 0.2s ease;
}

.event-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
.event-item-poster {
  width: 52px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.event-item-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.event-item-poster:hover img {
  transform: scale(1.08);
}

.date {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(232, 184, 92, 0.1);
  border: 1px solid rgba(232, 184, 92, 0.2);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gold-light);
}

.date b {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  display: block;
}

.date span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 3px;
  letter-spacing: 0.08em;
}

.event-item h4 {
  font-size: 16px;
  margin: 0 0 4px;
  color: #fff;
}

.event-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

/* Simple Image Modal / Lightbox for Events */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 14, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.image-modal.active {
  display: flex;
}

.modal-content-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content-wrap img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  border: 1px solid var(--line-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.modal-close-btn {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e11d48;
  color: #fff;
  border: 2px solid #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s;
}

.modal-close-btn:hover {
  transform: scale(1.1);
}

/* Athletes Grid */
.athletes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.athlete {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.athlete:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 184, 92, 0.3);
}

.portrait {
  height: 200px;
  background: 
    linear-gradient(180deg, transparent 40%, rgba(7, 16, 24, 0.8) 100%),
    radial-gradient(circle at 50% 30%, rgba(232, 184, 92, 0.15), transparent 40%),
    #111d29;
  display: grid;
  place-items: center;
  font-size: 68px;
  user-select: none;
}

.athlete-info {
  padding: 18px;
}

.athlete-info small {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.athlete-info h4 {
  margin: 6px 0 2px;
  font-size: 16px;
  color: #fff;
}

.athlete-info p {
  color: var(--muted);
  font-size: 12.5px;
}

/* Clubs Grid */
.clubs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.club {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(255, 255, 255, 0.025);
  transition: all 0.2s ease;
}

.club:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.club-icon {
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.club b {
  font-size: 15px;
  display: block;
  color: #fff;
}

.club p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

/* Call to Action */
.cta {
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  background: 
    radial-gradient(circle at 10% 50%, rgba(232, 184, 92, 0.12), transparent 45%),
    linear-gradient(135deg, rgba(232, 184, 92, 0.06), rgba(255, 255, 255, 0.02));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta h2 {
  font-size: clamp(26px, 3.8vw, 42px);
}

.cta p {
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 14px;
  font-size: 15px;
}

.cta-contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.contact-number-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted-light);
}

.contact-number-card strong {
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: #050c13;
}

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: #fff;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 2;
}

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

.copy {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: #61748a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.wa-float:hover {
  background: #20ba5a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.wa-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Tablet & Mobile Optimization)
   ========================================================================== */

/* Laptop / Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .hero-grid {
    gap: 36px;
  }
  .programs {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .athletes, .clubs {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 28px;
  }
}

/* Tablet (max-width: 868px) */
@media (max-width: 868px) {
  .brand-sub {
    display: none;
  }
  .menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-inner {
    height: 70px;
  }
  .mobile-drawer {
    top: 70px;
  }
  .hero {
    padding: 48px 0 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    height: 420px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .stat:nth-child(1), .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .programs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .events {
    grid-template-columns: 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .wa-float span {
    display: none;
  }
  .wa-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .wa-icon {
    width: 26px;
    height: 26px;
  }
}

/* Mobile Phones (max-width: 580px) */
@media (max-width: 580px) {
  .container {
    padding: 0 16px;
  }
  .brand-name {
    font-size: 15px;
  }
  .brand-sub {
    font-size: 8.5px;
  }
  .mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .nav .btn.primary {
    display: none; /* Keep clean in mobile nav bar, accessible in drawer */
  }
  .hero {
    padding: 32px 0 30px;
  }
  .actions {
    flex-direction: column;
    width: 100%;
  }
  .actions .btn {
    width: 100%;
  }
  .hero-visual {
    height: 380px;
  }
  .board-wrapper {
    width: 230px;
    height: 230px;
    top: 10px;
  }
  .piece {
    font-size: 44px;
  }
  .visual-card {
    margin: 12px;
    padding: 16px;
  }
  .visual-card h3 {
    font-size: 17px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 18px 10px;
  }
  .section {
    padding: 60px 0;
  }
  .event-banner-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
    text-align: center;
  }
  .event-banner-poster {
    max-width: 220px;
    margin: 0 auto;
  }
  .event-meta {
    justify-content: center;
  }
  .event-item {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 12px;
    position: relative;
  }
  .event-item .btn {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 4px;
  }
  .date {
    width: 56px;
    height: 56px;
  }
  .date b {
    font-size: 18px;
  }
  .featured {
    padding: 24px 20px;
  }
  .cta {
    padding: 28px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .copy {
    flex-direction: column;
    text-align: center;
    margin-top: 32px;
  }
}
