/* ============================================================
   Leeton Junior Phantoms RUFC — Website Styles
   Colors: Purple (#a014bf), White (#ffffff)
   Fonts: Barlow Condensed (display), DM Sans (body)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --phantom-purple: #a014bf;
  --phantom-purple-dark: #7a0f91;
  --phantom-purple-deep: #2d0a3a;
  --phantom-purple-light: #c44de6;
  --phantom-purple-glow: rgba(160, 20, 191, 0.18);
  --phantom-purple-subtle: rgba(160, 20, 191, 0.06);
  --phantom-white: #ffffff;
  --phantom-bg: #ffffff;
  --phantom-bg-alt: #f7f5f9;
  --phantom-bg-subtle: #eee9f2;
  --phantom-border: #e2dde6;
  --phantom-border-light: #f0ecf3;
  --phantom-text: #1a1a2e;
  --phantom-text-mid: #4a4a5a;
  --phantom-text-muted: #7a7a8a;
  --phantom-green: #1a9e18;
  --phantom-red: #c9374b;
  --section-padding: 80px 0;
  --container-width: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--phantom-bg);
  color: var(--phantom-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--phantom-purple);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--phantom-purple-dark);
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--phantom-border);
  transition: all var(--transition);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--phantom-text);
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-title span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--phantom-purple);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.nav-links a {
  color: var(--phantom-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--phantom-purple);
  background: var(--phantom-purple-subtle);
}

.nav-links a.nav-cta {
  background: var(--phantom-purple);
  color: var(--phantom-white);
  font-weight: 600;
  margin-left: 4px;
}

.nav-links a.nav-cta:hover {
  background: var(--phantom-purple-dark);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--phantom-text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 2px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border-bottom: 1px solid var(--phantom-border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
  }

  .nav-links a.nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }
}


/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--phantom-purple-deep) 0%,
    var(--phantom-purple-dark) 40%,
    var(--phantom-purple) 70%,
    #c44de6 100%
  );
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05), transparent 40%);
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 280px;
  opacity: 0.05;
  color: var(--phantom-white);
  z-index: 1;
  user-select: none;
  font-weight: 900;
  letter-spacing: -6px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-watermark {
    font-size: 120px;
    letter-spacing: -3px;
  }
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

@media (max-width: 768px) {
  .hero-logo {
    width: 88px;
    height: 88px;
  }
}

.hero-logo img {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  color: var(--phantom-white);
  line-height: 0.95;
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.hero h1 .highlight {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* --- Quick Info Bar --- */
.quick-info {
  background: var(--phantom-white);
  border-bottom: 1px solid var(--phantom-border);
  padding: 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container-width);
  margin: 0 auto;
}

.quick-info-item {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--phantom-border);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}

.quick-info-item:last-child {
  border-right: none;
}

.quick-info-item:hover {
  background: var(--phantom-purple-subtle);
}

.quick-info-icon {
  width: 48px;
  height: 48px;
  background: var(--phantom-purple-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background var(--transition);
}

.quick-info-item:hover .quick-info-icon {
  background: var(--phantom-purple);
  color: var(--phantom-white);
}

.quick-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--phantom-purple);
  margin-bottom: 2px;
}

.quick-info-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--phantom-text);
  text-transform: uppercase;
}

.quick-info-sub {
  font-size: 12px;
  color: var(--phantom-text-muted);
  margin-top: 1px;
}

@media (max-width: 768px) {
  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .quick-info-item {
    border-right: none;
    border-bottom: 1px solid var(--phantom-border);
    padding: 16px 24px;
  }

  .quick-info-item:last-child {
    border-bottom: none;
  }
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--phantom-purple);
  color: var(--phantom-white);
  box-shadow: 0 4px 16px var(--phantom-purple-glow);
}

.btn-primary:hover {
  background: var(--phantom-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(160, 20, 191, 0.3);
  color: var(--phantom-white);
}

.btn-outline {
  background: transparent;
  color: var(--phantom-purple);
  border: 2px solid var(--phantom-border);
}

.btn-outline:hover {
  border-color: var(--phantom-purple);
  color: var(--phantom-purple-dark);
  background: var(--phantom-purple-subtle);
}

.hero .btn-outline,
.hero-actions .btn-outline,
.cta-band .btn-outline {
  color: var(--phantom-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn-outline:hover,
.hero-actions .btn-outline:hover,
.cta-band .btn-outline:hover {
  border-color: var(--phantom-white);
  color: var(--phantom-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: var(--phantom-bg-alt);
  color: var(--phantom-text-mid);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: var(--phantom-bg-subtle);
  color: var(--phantom-text);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 13px 24px;
    font-size: 14px;
  }
}


/* --- Section Layout --- */
.section {
  padding: var(--section-padding);
}

.section-white {
  background: var(--phantom-bg);
}

.section-alt {
  background: var(--phantom-bg-alt);
}

/* Legacy compat */
.section-dark { background: var(--phantom-bg-alt); }
.section-darker { background: var(--phantom-bg); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--phantom-purple);
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--phantom-text);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1;
}

.section-header p {
  font-size: 16px;
  color: var(--phantom-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }
}


/* --- Full-width CTA Band --- */
.cta-band {
  background: linear-gradient(135deg, var(--phantom-purple-deep), var(--phantom-purple));
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--phantom-white);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .hero-actions {
  justify-content: center;
}


/* --- Cards Grid --- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}


/* --- Feature Cards --- */
.card {
  background: var(--phantom-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--phantom-border);
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--phantom-purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(160, 20, 191, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--phantom-purple-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--phantom-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 14px;
  color: var(--phantom-text-muted);
  line-height: 1.6;
}


/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--phantom-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--phantom-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--phantom-border);
}

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

@media (max-width: 768px) {
  .stat {
    border-bottom: 1px solid var(--phantom-border);
  }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--phantom-purple);
  line-height: 1;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.stat-label {
  font-size: 11px;
  color: var(--phantom-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}


/* --- Fixture Table --- */
.fixture-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fixture-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  min-width: 600px;
}

.fixture-table th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--phantom-text-muted);
  text-align: left;
  padding: 10px 16px;
}

.fixture-table td {
  background: var(--phantom-white);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--phantom-text);
  border-top: 1px solid var(--phantom-border);
  border-bottom: 1px solid var(--phantom-border);
}

.fixture-table tr td:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
  border-left: 1px solid var(--phantom-border);
}

.fixture-table tr td:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-right: 1px solid var(--phantom-border);
}

.fixture-round {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--phantom-purple);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fixture-teams {
  font-weight: 600;
  color: var(--phantom-text);
}

.fixture-teams .vs {
  color: var(--phantom-text-muted);
  font-weight: 400;
  margin: 0 6px;
}

.fixture-venue {
  color: var(--phantom-text-muted);
  font-size: 13px;
}

.fixture-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-home {
  background: rgba(160, 20, 191, 0.1);
  color: var(--phantom-purple);
}

.badge-away {
  background: var(--phantom-bg-alt);
  color: var(--phantom-text-muted);
}

.badge-win {
  background: rgba(26, 158, 24, 0.1);
  color: var(--phantom-green);
}

.badge-loss {
  background: rgba(201, 55, 75, 0.08);
  color: var(--phantom-red);
}


/* --- Round Header --- */
.round-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: var(--phantom-purple-subtle);
  border-radius: var(--radius);
  border-left: 4px solid var(--phantom-purple);
}

.round-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--phantom-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.round-header .round-date {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--phantom-text-muted);
  font-weight: 500;
}

.round-header.round-next {
  background: var(--phantom-purple);
  border-left-color: var(--phantom-purple-light);
}

.round-header.round-next h3,
.round-header.round-next .round-date {
  color: var(--phantom-white);
}

.round-header.round-next .round-date {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .round-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
  }
}


/* --- Fixture Cards (mobile alternative) --- */
.fixture-cards {
  display: none;
}

@media (max-width: 768px) {
  .fixture-table-wrapper {
    display: none;
  }

  .fixture-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fixture-card {
    background: var(--phantom-white);
    border: 1px solid var(--phantom-border);
    border-radius: var(--radius);
    padding: 16px;
  }

  .fixture-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .fixture-card-age {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--phantom-purple);
    text-transform: uppercase;
  }

  .fixture-card-teams {
    font-weight: 600;
    font-size: 15px;
    color: var(--phantom-text);
    margin-bottom: 8px;
  }

  .fixture-card-teams .vs {
    color: var(--phantom-text-muted);
    font-weight: 400;
  }

  .fixture-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--phantom-text-muted);
  }
}


/* --- Next Game Highlight --- */
.next-game {
  background: linear-gradient(135deg, var(--phantom-purple-deep), var(--phantom-purple));
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.next-game::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.next-game-content {
  position: relative;
  z-index: 1;
}

.next-game-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.next-game h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--phantom-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}

.next-game-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.next-game-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.next-game-actions {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .next-game {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}


/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-tab {
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 1px solid var(--phantom-border);
  background: var(--phantom-white);
  color: var(--phantom-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--phantom-purple);
  color: var(--phantom-white);
  background: var(--phantom-purple);
}


/* --- Product Cards --- */
.product-card {
  background: var(--phantom-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--phantom-border);
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--phantom-purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(160, 20, 191, 0.08);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--phantom-bg-alt) 0%, var(--phantom-bg-subtle) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.product-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--phantom-purple);
  opacity: 0.5;
}

.product-image-placeholder span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--phantom-text-muted);
}

.product-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--phantom-purple);
  color: var(--phantom-white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--phantom-text);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.product-info .product-desc {
  font-size: 13px;
  color: var(--phantom-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--phantom-purple);
}

.product-price .currency {
  font-size: 14px;
  font-weight: 600;
  vertical-align: top;
  margin-right: 1px;
}


/* --- Featured Product --- */
.featured-product {
  background: linear-gradient(135deg, var(--phantom-purple-deep) 0%, var(--phantom-purple) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.featured-product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.featured-product-image {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  z-index: 1;
}

.featured-product-content {
  position: relative;
  z-index: 1;
}

.featured-product-content .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.featured-product-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--phantom-white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}

.featured-product-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.featured-product-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--phantom-white);
  margin: 20px 0;
}

.featured-product-price .from {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  font-family: var(--font-body);
  text-transform: none;
}

@media (max-width: 768px) {
  .featured-product {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 24px;
  }

  .featured-product-image {
    aspect-ratio: 16/9;
    font-size: 56px;
  }
}


/* --- About / Info Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-image {
  background: linear-gradient(135deg, var(--phantom-purple), var(--phantom-purple-dark));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08), transparent 60%);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--phantom-text);
  margin-bottom: 16px;
  text-transform: uppercase;
  line-height: 1.05;
}

.about-text p {
  font-size: 15px;
  color: var(--phantom-text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-text ul {
  list-style: none;
  margin: 20px 0;
}

.about-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  color: var(--phantom-text-mid);
}

.about-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--phantom-purple);
  border-radius: 2px;
  transform: rotate(45deg);
}


/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--phantom-border);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--phantom-purple);
  border-radius: 50%;
  border: 3px solid var(--phantom-bg);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--phantom-purple);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--phantom-text);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--phantom-text-muted);
  line-height: 1.6;
}


/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--phantom-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--phantom-border);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--phantom-text);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--phantom-border-light);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--phantom-purple-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--phantom-text-muted);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-detail span {
  font-size: 14px;
  color: var(--phantom-text);
  font-weight: 500;
}

/* Form */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--phantom-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--phantom-bg-alt);
  border: 1px solid var(--phantom-border);
  border-radius: var(--radius);
  color: var(--phantom-text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--phantom-purple);
  box-shadow: 0 0 0 3px var(--phantom-purple-glow);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--phantom-text-muted);
}


/* --- Footer --- */
.footer {
  background: var(--phantom-purple-deep);
  color: rgba(255, 255, 255, 0.8);
  border-top: 3px solid var(--phantom-purple);
  padding: 48px 0 24px;
}

.footer .nav-title {
  color: var(--phantom-white);
}

.footer .nav-title span {
  color: rgba(255, 255, 255, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--phantom-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--phantom-purple);
  color: var(--phantom-white);
}


/* --- Sponsor Banner --- */
.sponsors {
  padding: 40px 0;
  background: var(--phantom-bg-alt);
  border-top: 1px solid var(--phantom-border);
  border-bottom: 1px solid var(--phantom-border);
}

.sponsor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sponsor-logo {
  width: 120px;
  height: 56px;
  background: var(--phantom-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--phantom-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border: 1px solid var(--phantom-border);
}


/* --- Announcement Banner --- */
.announcement {
  background: var(--phantom-purple-deep);
  color: var(--phantom-white);
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.announcement a {
  color: var(--phantom-white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}


/* --- Registration Specific --- */
.reg-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.reg-path {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--phantom-border);
  text-align: center;
  transition: all var(--transition);
}

.reg-path:hover {
  border-color: var(--phantom-purple);
}

.reg-path h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--phantom-text);
  margin-bottom: 8px;
}

.reg-path p {
  font-size: 14px;
  color: var(--phantom-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .reg-paths {
    grid-template-columns: 1fr;
  }
}


/* --- Utilities --- */
.text-center { text-align: center; }
.text-purple { color: var(--phantom-purple); }
.text-muted { color: var(--phantom-text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.divider {
  width: 60px;
  height: 3px;
  background: var(--phantom-purple);
  border-radius: 2px;
  margin: 0 auto 24px;
}


/* --- Responsive Fixture Table --- */
@media (max-width: 768px) {
  .fixture-table {
    min-width: 500px;
  }

  .fixture-table th,
  .fixture-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
