:root {
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --surface: rgba(5, 48, 45, 0.72);
  --surface-strong: #062d2b;
  --line: rgba(255, 255, 255, 0.18);
  --teal: #176b62;
  --teal-dark: #073c39;
  --teal-deep: #042927;
  --mint: #7edfc7;
  --lime: #b7f241;
  --red: #e43b4f;
  --shadow: 0 24px 56px rgba(0, 28, 26, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(126, 223, 199, 0.2), transparent 24%),
    radial-gradient(circle at 10% 14%, rgba(183, 242, 65, 0.1), transparent 22%),
    linear-gradient(180deg, #0d615a 0%, #073c39 42%, #021b1a 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 72%, rgba(228, 59, 79, 0.16), transparent 20%),
    radial-gradient(circle at 82% 46%, rgba(183, 242, 65, 0.1), transparent 18%);
  content: "";
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 41, 39, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark,
.eyebrow,
h1,
h2,
h3,
.stat-number,
.sport-mark,
.panel-kicker {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #ffffff;
  color: var(--teal-dark);
  font-size: 1.25rem;
  box-shadow: 5px 5px 0 var(--red);
}

.brand-text {
  max-width: 14rem;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--red);
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.8fr);
  gap: 1.5rem;
  min-height: 540px;
  margin: 1rem 0 2rem;
  padding: 4.5rem 2rem;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(126, 223, 199, 0.32), transparent 26%),
    radial-gradient(circle at 16% 70%, rgba(228, 59, 79, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(23, 107, 98, 0.98) 0%, rgba(7, 60, 57, 0.98) 54%, rgba(3, 31, 30, 0.98) 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.hero::before {
  position: absolute;
  left: -5rem;
  bottom: 5rem;
  width: 25rem;
  height: 8rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  content: "";
  transform: rotate(-18deg);
}

.hero::after {
  position: absolute;
  top: 50%;
  right: 18%;
  width: 12rem;
  height: 12rem;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.hero-copy,
.scoreboard {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 1.05rem;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  background: var(--red);
  color: #ffffff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: 6.6rem;
  line-height: 0.88;
}

h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: 3.8rem;
  line-height: 0.95;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  line-height: 1;
}

.hero-text,
.info-card p,
.sport-panel p,
.brand-text,
.site-nav a,
.event-card p,
.event-card strong {
  font-family: "Manrope", sans-serif;
}

.hero-text {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.15rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 5px 5px 0 var(--lime);
  transform: translate(-2px, -2px);
}

.button-primary {
  background: var(--red);
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  color: #ffffff;
}

.scoreboard {
  align-self: start;
  border: 3px solid #ffffff;
  border-radius: 8px;
  background: rgba(3, 31, 30, 0.86);
  color: #ffffff;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

.scoreboard-top,
.score-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.scoreboard-top {
  background: var(--red);
  color: #ffffff;
  font-weight: 900;
}

.score-row {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.score-row span {
  color: rgba(255, 255, 255, 0.62);
}

.section {
  padding: 2.2rem 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

#about .section-heading {
  justify-content: flex-start;
  flex-wrap: wrap;
}

#about .section-heading h2 {
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

#about .about-subtitle {
  color: var(--red);
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0;
}

#sports .section-heading {
  justify-content: flex-start;
  flex-wrap: wrap;
}

#sports .section-heading h2 {
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

#sports .sports-subtitle {
  color: var(--red);
  font-size: 1.9rem;
  line-height: 1.6;
  margin: 0;
}

.section-heading .eyebrow {
  color: var(--red);
}

.grid {
  display: grid;
  gap: 1rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.check-item,
.sport-panel,
.event-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.35rem;
}

.info-card p,
.sport-panel p,
.event-card p {
  color: var(--muted);
  line-height: 1.65;
}

.sports-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sport-tab {
  display: grid;
  min-height: 7.5rem;
  padding: 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(4, 41, 39, 0.82);
  color: #ffffff;
  cursor: pointer;
  font: 900 0.98rem "Manrope", sans-serif;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sport-tab:hover,
.sport-tab.is-active {
  background: rgba(228, 59, 79, 0.9);
  color: #ffffff;
  box-shadow: 5px 5px 0 var(--red);
  transform: translate(-2px, -2px);
}

.sport-tab:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.sport-mark {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 1.2rem;
}

.sport-tab.is-active .sport-mark,
.sport-tab:hover .sport-mark {
  border-color: #ffffff;
}

.sport-details {
  min-height: 23rem;
}

.sport-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 1rem;
  padding: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(126, 223, 199, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(5, 48, 45, 0.9) 0%, rgba(3, 31, 30, 0.95) 100%);
}

.sport-panel[hidden] {
  display: none;
}

.panel-kicker {
  margin-bottom: 0.4rem;
  color: var(--red);
  font-size: 1.1rem;
}

.event-list {
  display: grid;
  gap: 0.85rem;
}

.event-card {
  position: relative;
  padding: 1rem;
  border-left: 8px solid var(--red);
}

.event-card span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.45rem;
  border-radius: 4px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.event-card p {
  margin-bottom: 0;
}

.vpl-summary a {
  color: #ffeb3b;
  font-weight: 700;
  text-decoration: underline;
  transition: color 180ms ease;
}

.vpl-summary a:hover,
.vpl-summary a:focus {
  color: #ffffff;
}

.event-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.9rem;
  padding: 0.7rem 0.9rem;
  border: 2px solid #ffffff;
  border-radius: 8px;
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  font: 900 0.88rem "Manrope", sans-serif;
}

.event-action:hover {
  box-shadow: 4px 4px 0 var(--lime);
  transform: translate(-1px, -1px);
}

.event-card.upcoming {
  border-left-color: var(--red);
}

.event-card.completed {
  border-left-color: #ffffff;
}

.event-card.pending {
  border-left-color: rgba(255, 255, 255, 0.45);
}

.registration-zone {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

/* Badminton Winners Styling */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.winner-cat-card {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(4, 41, 39, 0.85);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.winner-cat-card:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
}

.winner-cat-title {
  margin: 0 0 0.75rem 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: var(--lime);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.4rem;
}

.podium-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.podium-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: #ffffff;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.podium-medal {
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.podium-name {
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.registration-panel {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 12%, rgba(183, 242, 65, 0.12), transparent 24%),
    rgba(3, 31, 30, 0.9);
  box-shadow: var(--shadow);
}

.registration-panel[hidden],
.registration-form[hidden] {
  display: none;
}

.registration-heading {
  max-width: 44rem;
  margin-bottom: 1rem;
}

.registration-heading p {
  color: var(--muted);
  line-height: 1.65;
}

.code-form,
.registration-form {
  display: grid;
  gap: 1rem;
}

.code-form label,
.registration-form label {
  display: grid;
  gap: 0.45rem;
  color: #ffffff;
  font-weight: 900;
}

.code-row,
.form-grid,
.players-grid {
  display: grid;
  gap: 0.85rem;
}

.code-row {
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: end;
}

.form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.players-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.registration-form h4 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

input,
select {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--teal-deep);
  font: 800 0.95rem "Manrope", sans-serif;
}

input:focus,
select:focus {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}



.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: #ffffff;
  font-weight: 900;
}
.saved-panel {
  background:
    radial-gradient(circle at 12% 16%, rgba(228, 59, 79, 0.18), transparent 24%),
    rgba(3, 31, 30, 0.78);
}

.saved-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer {
  margin-top: 2rem;
  background: rgba(3, 31, 30, 0.92);
  color: #ffffff;
}

.site-footer .eyebrow {
  color: var(--red);
}

.site-footer h2 {
  margin: 0;
  max-width: 18ch;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.15;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
  background: var(--red);
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.instagram-link:hover {
  box-shadow: 5px 5px 0 var(--lime);
  transform: translate(-2px, -2px);
}

.instagram-link svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #ffffff;
}

.phone-link {
  color: var(--lime);
  text-decoration: none;
  font-weight: 700;
  transition: color 180ms ease;
}

.phone-link:hover,
.phone-link:focus {
  color: var(--red);
  text-decoration: underline;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.5rem;
  color: #25d366;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.whatsapp-link svg {
  width: 100%;
  height: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1000px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .hero,
  .sport-panel {
    grid-template-columns: 1fr;
  }

  .sports-tabs,
  .three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid,
  .players-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
  }

  .site-header,
  .site-footer,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 0;
    padding: 3.5rem 1rem 1rem;
  }

  .hero::before {
    left: -9rem;
    bottom: 4rem;
    width: 22rem;
    height: 7rem;
  }

  .hero::after {
    right: -3rem;
    width: 8rem;
    height: 8rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .sports-tabs,
  .three-up {
    grid-template-columns: 1fr;
  }

  .sport-tab {
    min-height: 5.5rem;
  }

    .code-row,
  .form-grid,
  .players-grid,
  .winners-grid {
    grid-template-columns: 1fr;
  }

  .winner-cat-card {
    padding: 1rem;
  }
}


