:root {
  --bg: #0f172a;
  --bg-2: #1a2236;
  --card: #1e293b;
  --card-2: #243049;
  --fg: #f8fafc;
  --muted: #94a3b8;
  --border: #334155;
  --primary: #16a34a;
  --primary-2: #22c55e;
  --primary-fg: #0b1220;
  --accent: #facc15;
  --accent-2: #fde047;
  --accent-fg: #0f172a;
  --grad-primary: linear-gradient(135deg, #16a34a, #15803d);
  --grad-accent: linear-gradient(135deg, #facc15, #eab308);
  --grad-hero: linear-gradient(135deg, rgba(15, 23, 42, .88), rgba(15, 23, 42, .55) 40%, rgba(15, 23, 42, .95));
  --shadow-glow: 0 20px 60px -15px rgba(22, 163, 74, .45);
  --shadow-gold: 0 20px 60px -15px rgba(250, 204, 21, .4);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, .5);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 900
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.text-muted-2 {
  color: var(--muted) !important
}

.text-primary-c {
  color: var(--primary) !important
}

.text-accent {
  color: var(--accent) !important
}

.text-fg {
  color: var(--fg) !important
}

.bg-card {
  background: var(--card) !important
}

.bg-card-30 {
  background: rgba(30, 41, 59, .35) !important
}

.bg-bg {
  background: var(--bg) !important
}

.border-bd {
  border-color: var(--border) !important
}

/* Gradients */
.sports-gradient {
  background: var(--grad-primary);
  color: var(--primary-fg)
}

.text-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1)
}

.shadow-glow {
  box-shadow: var(--shadow-glow) !important
}

.shadow-gold {
  box-shadow: var(--shadow-gold) !important
}

.shadow-card {
  box-shadow: var(--shadow-card) !important
}

.pitch-lines {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Buttons */
.btn-sports {
  background: var(--grad-primary);
  color: var(--primary-fg);
  font-weight: 700;
  border: 0;
  padding: .85rem 1.6rem;
  border-radius: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s
}

.btn-sports:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
  color: var(--primary-fg)
}

.btn-sports-sm {
  padding: .55rem 1.1rem;
  font-size: .875rem
}

.btn-outline-fg {
  background: transparent;
  border: 2px solid rgba(248, 250, 252, .2);
  color: var(--fg);
  font-weight: 700;
  padding: .85rem 1.6rem;
  border-radius: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s
}

.btn-outline-fg:hover {
  background: rgba(248, 250, 252, .06);
  color: var(--fg)
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
  border: 0;
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  transition: all .3s
}

.btn-accent:hover {
  box-shadow: var(--shadow-gold);
  color: var(--accent-fg)
}

/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all .3s;
  background: transparent
}

.site-header.scrolled {
  background: rgba(15, 23, 42, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border)
}

.site-header .navbar {
  padding: 1.25rem 0
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--fg)
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: .6rem;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow)
}

.brand-badge i {
  width: 20px;
  height: 20px;
  color: var(--primary-fg)
}

.brand .accent {
  color: var(--primary)
}

.nav-main {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-main a {
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  position: relative;
  transition: color .2s
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--fg)
}

.nav-main a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s
}

.nav-main a:hover::after,
.nav-main a.active::after {
  width: 100%
}

.nav-toggler {
  background: transparent;
  border: 0;
  color: var(--fg);
  padding: .5rem;
  display: none
}

.mobile-menu {
  display: none;
  background: rgba(15, 23, 42, .95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 0
}

.mobile-menu a {
  display: block;
  padding: .6rem 1rem;
  color: var(--fg);
  font-weight: 500;
  font-size: .9rem
}

.mobile-menu a:hover {
  color: var(--primary)
}

.mobile-menu.show {
  display: block
}

@media(max-width:991px) {

  .nav-main,
  .nav-cta-desktop {
    display: none
  }

  .nav-toggler {
    display: inline-flex
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero)
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: .3
}

.hero-content {
  position: relative;
  z-index: 2
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.display-mega {
  font-size: clamp(3.75rem, 3.5vw, 3.5rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.03em
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .2em;
  animation: bounce 2s infinite
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* Sections */
section {
  position: relative
}

.section {
  padding: 6rem 0
}

.section-sm {
  padding: 4rem 0
}

.section-card {
  background: rgba(30, 41, 59, .35);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem
}

.section-title {
  font-size: clamp(2.25rem, 2.5vw, 3rem);
  margin: 1rem 0 .5rem
}

/* Stats */
.stat-item {
  text-align: center
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 3vw, 3rem);
  line-height: 1;
  margin-bottom: .5rem
}

.stat-label {
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin: 0 auto 1rem;
  transition: transform .3s
}

.stat-item:hover .stat-icon {
  transform: scale(1.15)
}

/* Cards */
.card-dark {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all .3s;
  overflow: hidden
}

.card-dark:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow)
}

.value-card {
  padding: 1.5rem;
  border-radius: .85rem;
  background: var(--card);
  border: 1px solid var(--border)
}

.value-card .ic {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-bottom: .75rem
}

/* Player card */
.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all .3s
}

.player-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow)
}

.player-img {
  aspect-ratio: 3/4;
  overflow: hidden
}

.player-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.player-card:hover .player-img img {
  transform: scale(1.1)
}

.player-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--accent);
  text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
  line-height: 1
}

.player-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--bg), rgba(15, 23, 42, .9), transparent)
}

.player-pos {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--primary);
  margin-bottom: .25rem
}

.player-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem
}

/* Fixtures */
.fixture {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all .3s
}

.fixture:hover {
  border-color: var(--primary)
}

.fix-date {
  text-align: center;
  padding: .75rem 1rem;
  border-radius: .6rem;
  background: var(--grad-primary);
  color: var(--primary-fg);
  min-width: 80px
}

.fix-day {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase
}

.fix-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem
}

.fix-sep {
  width: 1px;
  height: 48px;
  background: var(--border)
}

.fix-vs {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif
}

.fix-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem
}

.fix-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem
}

@media(max-width:991px) {
  .fixture {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center
  }

  .fix-sep {
    display: none
  }

  .fix-info {
    justify-content: center;
    flex-wrap: wrap
  }

  .fix-teams {
    flex-direction: column;
    gap: .5rem
  }
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card)
}

.lg-table {
  width: 100%;
  font-size: .875rem;
  border-collapse: collapse;
  color: var(--fg)
}

.lg-table thead {
  background: rgba(15, 23, 42, .5);
  color: var(--muted);
  text-transform: uppercase;
  font-size: .75rem
}

.lg-table th,
.lg-table td {
  padding: 1rem;
  text-align: center
}

.lg-table th:nth-child(1),
.lg-table th:nth-child(2),
.lg-table td:nth-child(1),
.lg-table td:nth-child(2) {
  text-align: left
}

.lg-table tbody tr {
  border-top: 1px solid var(--border)
}

.lg-table tr.highlight {
  background: rgba(22, 163, 74, .12)
}

.lg-table .pts {
  font-weight: 900;
  color: var(--accent)
}

/* Academy program card */
.prog-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  height: 100%;
  transition: all .3s
}

.prog-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow)
}

.prog-icon {
  width: 56px;
  height: 56px;
  border-radius: .85rem;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: transform .3s
}

.prog-card:hover .prog-icon {
  transform: scale(1.1)
}

.prog-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary-fg)
}

.prog-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .875rem;
  transition: gap .2s
}

.prog-card:hover .prog-link {
  gap: .6rem
}

/* Testimonial */
.tcard {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  height: 100%;
  transition: all .3s
}

.tcard:hover {
  border-color: var(--primary)
}

.stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem
}

.stars i {
  width: 16px;
  height: 16px;
  color: var(--accent);
  fill: var(--accent)
}

/* News */
.news-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all .3s;
  height: 100%
}

.news-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px)
}

.news-img {
  aspect-ratio: 16/9;
  overflow: hidden
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.news-card:hover .news-img img {
  transform: scale(1.1)
}

.news-body {
  padding: 1.5rem
}

.news-meta {
  display: flex;
  gap: .75rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .75rem
}

.news-meta .tag {
  color: var(--accent);
  font-weight: 700
}

.news-meta .date {
  color: var(--muted)
}

.news-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  transition: color .2s
}

.news-card:hover .news-title {
  color: var(--primary)
}

/* Membership form */
.form-control-dark {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: .6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: .95rem;
  transition: border-color .2s;
  font-family: inherit
}

.form-control-dark:focus {
  outline: none;
  border-color: var(--primary)
}

.form-control-dark::placeholder {
  color: var(--muted)
}

/* CTA banner */
.cta-banner {
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-primary);
  color: var(--primary-fg)
}

.cta-banner .pitch-lines {
  position: absolute;
  inset: 0;
  opacity: .3
}

/* Partners marquee */
.marquee {
  overflow: hidden;
  position: relative
}

.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
  padding: 0 2rem
}

.marquee:hover .marquee-track {
  animation-play-state: paused
}

.marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: rgba(148, 163, 184, .4);
  transition: color .3s
}

.marquee-track span:hover {
  color: var(--primary)
}

@keyframes scroll-x {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--card);
  border-top: 1px solid var(--border);
  overflow: hidden
}

.footer-wave {
  height: 4px;
  width: 100%;
  background: var(--grad-primary);
  position: relative
}

.footer-wave::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 8px;
  background: repeating-linear-gradient(135deg, var(--primary) 0, var(--primary) 10px, transparent 10px, transparent 20px);
  opacity: .3;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent)
}

.footer-main {
  padding: 5rem 0 3rem;
  position: relative
}

.footer-main .pitch-lines {
  position: absolute;
  inset: 0;
  opacity: .03
}

.f-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem
}

.f-title i {
  width: 16px;
  height: 16px;
  color: var(--primary)
}

.f-links {
  list-style: none;
  padding: 0;
  margin: 0
}

.f-links li {
  margin-bottom: .75rem;
  font-size: .875rem;
  color: var(--muted)
}

.f-links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s
}

.f-links a:hover {
  color: var(--primary)
}

.social-icons {
  display: flex;
  gap: .6rem;
  margin-bottom: 2rem
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: .75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: all .3s
}

.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-fg);
  transform: scale(1.1)
}

.social-icons i {
  width: 16px;
  height: 16px
}

.visit-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 1rem
}

.visit-icon {
  width: 32px;
  height: 32px;
  border-radius: .5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.visit-icon i {
  width: 16px;
  height: 16px;
  color: var(--primary)
}

.visit-item strong {
  display: block;
  color: var(--fg);
  font-weight: 600
}

.ticket-bar {
  border-radius: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem
}

.ticket-bar .ic {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow)
}

.ticket-bar .ic i {
  width: 24px;
  height: 24px;
  color: var(--primary-fg)
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: .75rem;
  color: var(--muted)
}

.footer-bottom a:hover {
  color: var(--primary)
}

.footer-bottom .sep {
  color: var(--border);
  margin: 0 .25rem
}

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1040;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--primary-fg);
  display: none;
  place-items: center;
  border: 0;
  box-shadow: var(--shadow-glow);
  transition: transform .2s
}

.scroll-top.show {
  display: grid
}

.scroll-top:hover {
  transform: scale(1.1)
}

/* About / page hero */
.page-hero {
  padding: 10rem 0 4rem;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, .15), rgba(15, 23, 42, .4)), var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden
}

.page-hero .pitch-lines {
  position: absolute;
  inset: 0;
  opacity: .4
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1rem
}

.breadcrumbs {
  display: inline-flex;
  gap: .5rem;
  font-size: .85rem;
  color: var(--muted)
}

.breadcrumbs a:hover {
  color: var(--primary)
}

.breadcrumbs .sep {
  opacity: .5
}

/* Contact map */
.contact-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  height: 100%;
  text-align: center
}

.contact-card .ic {
  width: 56px;
  height: 56px;
  border-radius: .85rem;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem
}

.contact-card .ic i {
  width: 28px;
  height: 28px;
  color: var(--primary-fg)
}

.map-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border)
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: invert(.92) hue-rotate(180deg)
}

/* Utilities */
.icon-sm {
  width: 16px;
  height: 16px
}

.icon-xs {
  width: 12px;
  height: 12px
}

.icon-md {
  width: 20px;
  height: 20px
}

.divider-y {
  border-color: var(--border) !important
}

/* AOS-like animations */
[data-anim] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.25, .46, .45, .94), transform .7s cubic-bezier(.25, .46, .45, .94)
}

[data-anim="fade-up"] {
  transform: translateY(40px)
}

[data-anim="fade-down"] {
  transform: translateY(-40px)
}

[data-anim="fade-left"] {
  transform: translateX(-60px)
}

[data-anim="fade-right"] {
  transform: translateX(60px)
}

[data-anim="zoom-in"] {
  transform: scale(.85)
}

[data-anim].visible {
  opacity: 1;
  transform: none
}

[data-anim-delay="100"] {
  transition-delay: .1s
}

[data-anim-delay="200"] {
  transition-delay: .2s
}

[data-anim-delay="300"] {
  transition-delay: .3s
}

[data-anim-delay="400"] {
  transition-delay: .4s
}

[data-anim-delay="500"] {
  transition-delay: .5s
}

#about .text-primary-c {
  float: right;
  margin-top: 5%;
}

/* ---------- PRELOADER ---------- */
/* =========================
   FOOTBALL PRELOADER
========================= */

#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #08111f, #0f1f38);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.football-loader {
  text-align: center;
  position: relative;
}

.pitch {
  width: 220px;
  height: 220px;
  border: 2px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulseField 2s infinite ease-in-out;
}

.pitch::before,
.pitch::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.pitch::before {
  width: 160px;
  height: 160px;
  top: 28px;
  left: 28px;
}

.pitch::after {
  width: 100px;
  height: 100px;
  top: 58px;
  left: 58px;
}

.ball {
  font-size: 80px;
  line-height: 1;
  display: inline-block;
  animation:
    rotateBall 1.2s linear infinite,
    bounceBall 1s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(240, 78, 48, .7));
}

.loading-text {
  margin-top: 30px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
}

.football-loader p {
  color: rgba(255, 255, 255, .7);
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Animations */

@keyframes rotateBall {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounceBall {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -15px;
  }
}

@keyframes pulseField {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* subtle enhancement for countdown */
.countdown-digit {
  font-family: 'Outfit', sans-serif;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  min-width: 80px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.countdown-digit span {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* video play overlay */
.video-thumb {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  object-fit: cover;
  height: 360px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(240, 78, 48, 0.5);
  transition: transform 0.3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn svg {
  fill: white;
  width: 36px;
  height: 36px;
}

/* shop card */
.shop-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  transition: all 0.25s;
  text-align: center;
}

.shop-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.shop-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.social-icons a {
  color: #fff;
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

/* Additional styling for new sections */
.philosophy-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s;
  height: 100%;
}

.philosophy-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

.staff-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Staff card */
.staff-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.8rem;
  text-align: center;
  transition: 0.3s;
}

.staff-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.staff-img {
  width: 100px;
  height: 100px;
  margin: auto;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.player-of-month {
  background: linear-gradient(135deg, rgba(240, 78, 48, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(240, 78, 48, 0.25);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Additional styling for new sections */
.result-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.25s;
}

.result-card:hover {
  border-color: var(--accent);
}

.score-badge {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  margin: 0 1rem;
}

/* additional styling for new sections */
.graduate-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 1.8rem;
  transition: 0.25s;
}

.graduate-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.schedule-table th {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.facility-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.25s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted-2);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.social-connect-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.social-connect-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Featured story card */
.featured-news-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-news-card:hover {
  border-color: var(--primary);
}

.featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.news-filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  transition: 0.2s;
}

.news-filter-btn.active,
.news-filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.article-container {
  margin: 0 auto;
}

.article-featured-img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d0d5dd;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
  font-style: italic;
  color: #ccc;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ccc;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: 0.2s;
}

.share-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.faq-section-title:first-of-type {
  margin-top: 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  margin-bottom: 0.8rem;
  transition: all 0.25s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
  user-select: none;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted-2);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.terms-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.terms-content h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.terms-content h2:first-of-type {
  margin-top: 0;
}

.terms-content p {
  margin-bottom: 1rem;
  color: var(--text-muted-2);
}

.terms-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted-2);
}

.terms-content ul li {
  margin-bottom: 0.4rem;
}

.policy-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-content h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-muted-2);
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted-2);
}

.policy-content ul li {
  margin-bottom: 0.4rem;
}

html,
body {
  overflow-x: hidden;
}

html,
body,
* {
  font-family: 'Outfit', sans-serif !important;
}