:root {
  --gold: #f5a800;
  --gold-light: #ffd060;
  --gold-dark: #c47f00;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --dark2: #242424;
  --red: #8b1a1a;
  --red-light: #c0392b;
  --white: #f8f4ec;
  --gray: #888;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: "Crimson Pro", Georgia, serif;
  overflow-x: hidden;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 100;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #25d366;
  border-radius: 50%;

  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);

  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 50px;
  background: rgba(13, 13, 13, 0.97);
  border-bottom: 2px solid var(--gold-dark);
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--gold-dark);
  background: #20201f;
  padding: 0px;
}

.nav-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--gold);
  line-height: 1.2;
}
.nav-logo-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(245, 168, 0, 0.6);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-store-link {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  padding: 6px 18px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s !important;
}
.nav-store-link:hover {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold)
  ) !important;
  transform: translateY(-1px);
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245, 168, 0, 0.3);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.nav-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #1e1200 0%, #0d0d0d 70%);
}
.hero-chess-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  opacity: 0.04;
  pointer-events: none;
}
.chess-sq {
  border: 1px solid var(--gold);
}
.chess-sq.dark-sq {
  background: var(--gold-dark);
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 168, 0, 0.12) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 130px 40px 60px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* LOGO in hero */
.hero-logo-wrap {
  margin: 0 auto 28px;
  animation: fadeUp 1s 0.1s ease both;
  position: relative;
  display: inline-block;
}
.hero-logo-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1818;
  box-shadow:
    0 0 50px rgba(245, 168, 0, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 40px rgba(245, 168, 0, 0.2),
      inset 0 0 30px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      0 0 70px rgba(245, 168, 0, 0.4),
      inset 0 0 30px rgba(0, 0, 0, 0.5);
  }
}
.hero-logo-ring img {
  width: 280px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(245, 168, 0, 0.4));
}
.hero-eyebrow {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 6px;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  animation: fadeUp 1s 0.35s ease both;
}
.hero-title span {
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-family: "Crimson Pro", serif;
  font-size: 1.3rem;
  color: rgba(248, 244, 236, 0.6);
  font-style: italic;
  margin-top: 18px;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 32px auto;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.7s ease both;
}
.floating-piece {
  position: absolute;
  font-size: 8rem;
  color: rgba(245, 168, 0, 0.04);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ── BUTTONS ── */
.btn {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 3px;
  font-size: 1rem;
  padding: 14px 38px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 168, 0, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold-dark);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline:hover {
  background: rgba(245, 168, 0, 0.1);
  border-color: var(--gold);
}

/* ── STATS ── */
.stats {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0f00 100%);
  border-top: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  padding: 60px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  color: rgba(248, 244, 236, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── SECTION commons ── */
section {
  padding: 100px 60px;
}
.section-label {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 5px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
}
.section-title em {
  color: var(--gold);
  font-style: normal;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

/* ── ABOUT ── */
.about {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(248, 244, 236, 0.75);
  margin-bottom: 20px;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chess-board-mini {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 320px;
  height: 320px;
  border: 3px solid var(--gold-dark);
  box-shadow:
    0 0 60px rgba(245, 168, 0, 0.15),
    20px 20px 0 rgba(245, 168, 0, 0.08);
  transform: rotate(-5deg);
}
.cb {
  aspect-ratio: 1;
}
.cb.w {
  background: #e8d5a3;
}
.cb.b {
  background: #5c3d11;
}

/* ── PROGRAMS ── */
.programs {
  background: var(--black);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.program-card {
  background: var(--dark);
  border: 1px solid rgba(245, 168, 0, 0.15);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.program-card:hover {
  border-color: rgba(245, 168, 0, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.program-card:hover::before {
  opacity: 1;
}
.program-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.program-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.program-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(248, 244, 236, 0.6);
}
.program-tag {
  display: inline-block;
  margin-top: 20px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
  padding: 4px 14px;
}
.btn-contacto {
  display: inline-block;
  width: 100%; /* Ocupa todo el ancho de la tarjeta para que sea fácil presionar */
  background-color: #e5a93b; /* El tono dorado/amarillo de tu marca */
  color: #111111; /* Texto oscuro para alto contraste */
  text-align: center;
  padding: 12px 20px;
  margin-top: 20px; /* Separa el botón de las etiquetas de arriba */
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase; /* Letras mayúsculas para un look más institucional */
  text-decoration: none; /* Quita el subrayado clásico de los links */
  border-radius: 4px; /* Bordes ligeramente redondeados */
  box-sizing: border-box;
  transition: all 0.3s ease; /* Transición suave para el efecto hover */
}

/* Efecto cuando el usuario pasa el cursor por encima */
.btn-contacto:hover {
  background-color: #ffca61; /* Se ilumina un poco */
  color: #000000;
  box-shadow: 0px 4px 15px rgba(229, 169, 59, 0.3); /* Destello sutil alrededor */
  cursor: pointer;
}
/* ── TOURNAMENT ── */
.tournament {
  background: linear-gradient(135deg, #1a0a00 0%, var(--dark) 100%);
  border-top: 2px solid var(--gold-dark);
}
.tournament-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.upcoming-list {
  margin-top: 40px;
}
.upcoming-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245, 168, 0, 0.1);
}
.upcoming-date {
  min-width: 60px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  padding: 8px 10px;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.2;
}
.upcoming-date .month {
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.upcoming-date .day {
  font-size: 1.8rem;
}
.upcoming-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--white);
}
.upcoming-info p {
  font-size: 0.95rem;
  color: rgba(248, 244, 236, 0.5);
  margin-top: 4px;
}

/* ── COACH ── */
.coaches {
  background: var(--dark2);
}
.coach-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
  background: var(--dark);
  border: 1px solid rgba(245, 168, 0, 0.18);
  border-radius: 4px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.coach-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.coach-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.coach-photo-frame {
  width: 300px;
  height: 400px;
  border-radius: 0%;
  border: 4px solid var(--gold-dark);
  overflow: hidden;
  box-shadow:
    0 0 50px rgba(245, 168, 0, 0.2),
    0 0 0 8px rgba(245, 168, 0, 0.06);
  background: radial-gradient(circle at 40% 35%, #2a1800, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.coach-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-photo-fallback {
  font-size: 6rem;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(245, 168, 0, 0.5));
}
.coach-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.coach-badge-pill {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 5px 14px;
  text-align: center;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.coach-info-col {
}
.coach-name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.coach-title-tag {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 4px 16px;
}
.coach-bio {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(248, 244, 236, 0.72);
  margin-bottom: 32px;
}
.coach-bio strong {
  color: var(--gold-light);
  font-weight: 600;
}
.coach-formation-section {
  border-top: 1px solid rgba(245, 168, 0, 0.15);
  padding-top: 28px;
  margin-top: 4px;
}
.coach-formation-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.coach-formation-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(245, 168, 0, 0.2);
}
.coach-timeline {
  list-style: none;
  padding: 0;
}
.coach-timeline li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.coach-timeline li:last-child {
  border-bottom: none;
}
.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px rgba(245, 168, 0, 0.5);
}
.tl-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(248, 244, 236, 0.65);
}
.tl-text em {
  color: var(--gold-light);
  font-style: normal;
  font-size: 0.88rem;
}

/* ── YOUTUBE ── */
.youtube-section {
  background: var(--black);
  border-top: 2px solid var(--gold-dark);
  padding: 100px 60px;
}
.youtube-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.yt-embed-wrap {
  position: relative;
  border: 3px solid var(--gold-dark);
  box-shadow:
    0 0 50px rgba(245, 168, 0, 0.15),
    12px 12px 0 rgba(245, 168, 0, 0.06);
  overflow: hidden;
}
.yt-embed-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}
.yt-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: #ff0000;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 1rem;
  padding: 14px 32px;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
}
.yt-subscribe-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}
.yt-icon {
  font-size: 1.3rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), #c47f00);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "♔";
  position: absolute;
  font-size: 20rem;
  color: rgba(0, 0, 0, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  font-weight: 900;
  position: relative;
}
.cta-banner p {
  font-size: 1.2rem;
  color: rgba(13, 13, 13, 0.7);
  margin: 16px 0 36px;
  font-style: italic;
  position: relative;
}
.btn-dark {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 3px;
  font-size: 1rem;
  padding: 16px 44px;
  background: var(--black);
  color: var(--gold);
  border: 2px solid var(--black);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 2px solid var(--gold-dark);
  padding: 60px 60px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-brand h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 1rem;
  color: rgba(248, 244, 236, 0.45);
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 0.8rem;
  padding: 7px 16px;
  text-decoration: none;
  border: 1px solid rgba(245, 168, 0, 0.3);
  color: var(--white);
  transition: all 0.3s;
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social-btn.yt {
  border-color: rgba(255, 0, 0, 0.4);
}
.footer-social-btn.yt:hover {
  border-color: #ff0000;
  color: #ff0000;
}
.footer-social-btn.fb {
  border-color: rgba(66, 103, 178, 0.4);
}
.footer-social-btn.fb:hover {
  border-color: #4267b2;
  color: #4267b2;
}
.footer-social-btn.tt {
  border-color: rgba(255, 255, 255, 0.2);
}
.footer-social-btn.tt:hover {
  border-color: #fff;
  color: #fff;
}
.footer-col h4 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 3px;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(248, 244, 236, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(245, 168, 0, 0.1);
  padding: 24px 60px;
  text-align: center;
  color: rgba(248, 244, 236, 0.3);
  font-size: 0.9rem;
  background: var(--black);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .coach-profile {
    grid-template-columns: 1fr;
  }
  .coach-photo-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .youtube-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  nav {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 70px 24px;
  }
  .stats {
    padding: 50px 24px;
    gap: 40px;
  }
  .about,
  .tournament-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    padding: 24px;
  }
  .cta-banner {
    padding: 60px 24px;
  }
  .chess-board-mini {
    width: 240px;
    height: 240px;
  }
  .youtube-section {
    padding: 70px 24px;
  }
  .coach-profile {
    padding: 30px 20px;
  }
}
