@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:wght@200;300;400;600;700&family=Nunito:wght@200;300;400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: #111418;
  color: #f0f0f0;
  overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #c9a227;
  --gold-dark: #a07d10;
  --gold-light: #f0c84a;
  --dark: #111418;
  --dark-2: #181c22;
  --dark-3: #1e232b;
  --dark-4: #252b35;
  --light: #f8f9fa;
  --text-muted: #8a9ab5;
  --white: #ffffff;
  --green: #27c95e;
  --red: #e03e3e;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition: 0.25s ease;
}

/* ===== SHARED UTILITIES ===== */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 0.5rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-dark {
  background-color: var(--dark-2);
}

.section-darker {
  background-color: var(--dark-3);
}

.section-light {
  background-color: #1a1f27;
}

.btn-golden {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-golden:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}


/* ===== NAVBAR ===== */
#mainNav {
  background: transparent;
  /* backdrop-filter: blur(12px); */
  padding: 0.75rem 0;
  transition: var(--transition);
}

#mainNav.scrolled {
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  background: rgba(10, 12, 16, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.navbar-brand .logo {
  height: 48px;
  object-fit: contain;
}

.navbar-dark .navbar-toggler {
  background: var(--gold);
  border: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
  background: rgba(201, 162, 39, 0.1);
}


/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  min-height: 100vh;
  background: url('../img/banner/Banner.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 6vw 60px;
  max-width: 780px;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  min-height: 1.2em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions .btn {
  border-radius: var(--radius-sm);
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}


/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--gold-dark), #7a5e08);
  padding: 1.5rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.5rem;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}


/* ===== MATCH RESULT CARD ===== */
.match-result-card {
  position: relative;
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.2);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.match-result-badge {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 14px;
  border-radius: 20px;
  z-index: 2;
}

.match-teams {
  display: flex;
  align-items: stretch;
}

.match-team {
  flex: 1;
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.match-team:first-child {
  background: linear-gradient(135deg, #0d0f13, #181c22);
}

.match-team:last-child {
  background: linear-gradient(135deg, var(--gold-dark), #6b4d00);
}

.match-team img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.team-status {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.team-status.win {
  background: rgba(39, 201, 94, 0.2);
  color: var(--green);
  border: 1px solid var(--green);
}

.team-status.lose {
  background: rgba(224, 62, 62, 0.2);
  color: var(--red);
  border: 1px solid var(--red);
}

.player-list {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

.player-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.player-list .jersey {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
}

.match-score-center {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--dark-4);
  padding: 2rem 1rem;
}

.match-score {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.score-sep {
  color: var(--gold);
}

.match-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.match-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.match-meta i {
  color: var(--gold);
}

.match-result-footer {
  background: var(--dark-4);
  padding: 1.2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

@media (max-width: 768px) {
  .match-teams {
    flex-direction: column;
  }

  .match-score-center {
    width: 100%;
    padding: 1.5rem;
  }

  .match-score {
    font-size: 2.5rem;
  }
}


/* ===== ABOUT SECTION ===== */
.about-images {
  position: relative;
  height: 420px;
}

.about-img-main {
  width: 75%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}

.about-img-accent {
  width: 55%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow);
  border: 3px solid rgba(201, 162, 39, 0.4);
}

.about-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-highlights {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-item i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.highlight-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 991px) {
  .about-images {
    height: 280px;
  }

  .about-img-main {
    height: 240px;
  }

  .about-img-accent {
    height: 160px;
  }
}


/* ===== PLAYERS SECTION ===== */
.player-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
  transition: var(--transition);
  text-align: center;
}

.player-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.2);
}

.player-img-wrap {
  position: relative;
  overflow: hidden;
  height: 160px;
  background: var(--dark-4);
}

.player-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.player-card:hover .player-img-wrap img {
  transform: scale(1.08);
}

.player-number {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
}

.player-info {
  padding: 0.8rem;
}

.player-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.player-info span {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}


/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
  position: relative;
  background: url('../img/stats/stats.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  padding: 5rem 0;
}

.highlights-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.88);
}

.highlights-section .container {
  position: relative;
  z-index: 2;
}

.highlight-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.highlight-stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.highlight-stat-card i {
  font-size: 1.6rem;
  color: var(--gold);
}

.hs-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.hs-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}


/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--dark-4);
  min-height: 180px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-overlay i {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(201, 162, 39, 0.4);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
}

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

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}


/* ===== CONTACT / FEEDBACK FORMS ===== */
.form-card {
  background: var(--dark-4);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.sv-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.sv-input {
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--dark-3);
  color: var(--white);
}

.sv-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.sv-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
  background: var(--dark-2);
  color: var(--white);
}

.dark-input {
  background: var(--dark-3) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
}

.dark-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.dark-input:focus {
  border-color: var(--gold) !important;
  background: var(--dark-2) !important;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success i {
  font-size: 3rem;
  color: var(--green);
  display: block;
  margin-bottom: 1rem;
}

.form-success h4 {
  color: var(--white);
}

.form-success p {
  color: var(--text-muted);
}

/* Contact info */
.contact-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.contact-info-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

#contactSuccess,
#feedbackSuccess {
  text-align: center;
}

#contactSuccess button,
#feedbackSuccess button {
  background: none !important;
  border: none;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  margin: 15px auto 0;
  cursor: pointer;
}

#contactSuccess button span i,
#feedbackSuccess button span i {
  font-size: 20px;
  padding-left: 5px;
}
/* Star Rating */
.star-rating {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.star-rating i {
  font-size: 1.4rem;
  color: #444;
  cursor: pointer;
  transition: var(--transition);
}

.star-rating i.active,
.star-rating i:hover {
  color: var(--gold);
}


/* ===== PAGE HERO (Matches page) ===== */
.page-hero {
  position: relative;
  background: url('../img/banner/Banner.jpg') center 30% / cover no-repeat;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(10, 12, 16, 0.97) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
}

.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 0.5rem 0;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-muted);
}


/* ===== NEXT MATCH CARD ===== */
.next-match-card {
  background: var(--dark-4);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.25);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.next-match-league {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.next-match-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
}

.next-match-team {
  flex: 1;
}

.next-match-team img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.next-match-team h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.list-unstyled2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-unstyled2 li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 2px 0;
}

.next-match-vs-center {
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 220px;
}

.vs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vs-badge span {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--gold);
  color: #000;
  padding: 8px 24px;
  border-radius: 30px;
}

.next-match-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.next-match-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.next-match-info i {
  color: var(--gold);
}

/* Countdown */
#countdown {
  width: 100%;
}

#countdown h5 {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

#countdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  justify-content: center;
}

#countdown li {
  background: var(--dark-2);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

#countdown li span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

#countdown li small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .next-match-body {
    flex-direction: column;
  }

  .next-match-vs-center {
    width: 100%;
  }
}


/* ===== UPCOMING MATCHES ===== */
.upcoming-match-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
  transition: var(--transition);
}

.upcoming-match-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.15);
  transform: translateY(-3px);
}

.upcoming-match-label {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  display: inline-block;
}

.upcoming-teams {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem;
  gap: 1rem;
}

.upcoming-teams>div:not(.upcoming-vs) img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.5rem;
}

.upcoming-teams>div:not(.upcoming-vs) p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

.upcoming-vs span {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
}

.upcoming-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.upcoming-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.upcoming-info i {
  color: var(--gold);
}


/* ===== MATCH TABS ===== */
.match-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.match-tab-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.65rem 1.4rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--dark-4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.match-tab-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.match-tab-link.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-color: transparent;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}


/* ===== TABLE CARD ===== */
.table-card {
  background: var(--dark-4);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
}

.table-card-title {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-card-title i {
  color: var(--gold);
}

.sv-table {
  margin: 0;
  color: var(--white);
}

.sv-table thead tr {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}

.sv-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border: none;
  color: #000;
}

.sv-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.sv-table tbody tr:hover {
  background: rgba(201, 162, 39, 0.08);
}

.sv-table tbody td {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  vertical-align: middle;
  border: none;
  color: var(--text-muted);
}

.sv-table tbody td:first-child {
  font-weight: 700;
  color: var(--gold);
}

.sv-table tbody td:nth-child(2) {
  font-weight: 600;
  color: var(--white);
}


/* ===== LINEUP CARD ===== */
.lineup-card {
  background: var(--dark-4);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
}

.lineup-header {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lineup-header img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.lineup-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}


/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: var(--dark-4);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.15);
  padding: 1.25rem 1.5rem;
}

.stat-card-team {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-key {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-key i {
  color: var(--gold);
  width: 14px;
}

.stat-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.stat-bar-wrap {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  margin: 0 10px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 3px;
}


/* ===== MATCH RESULTS ===== */
.results-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-row {
  background: var(--dark-4);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.12);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.result-row:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.12);
}

.result-teams {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.result-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  min-width: 120px;
}

.result-team img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.result-team.right {
  justify-content: flex-end;
}

.result-score {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
  min-width: 80px;
}

.result-score.win-score {
  color: var(--gold);
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.result-meta>span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.result-meta i {
  color: var(--gold);
}

.result-badge {
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.full-time {
  background: rgba(39, 201, 94, 0.15);
  color: var(--green);
  border: 1px solid var(--green);
}


/* Players page specific */
.players-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.players-filter-bar .filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(201, 162, 39, 0.3);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.players-filter-bar .filter-btn:hover,
.players-filter-bar .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-color: transparent;
}

.player-full-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.player-full-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.2);
}

.player-full-card .pfc-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--dark-4);
}

.player-full-card .pfc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.player-full-card:hover .pfc-img img {
  transform: scale(1.06);
}

.pfc-number {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.pfc-team-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
}

.pfc-body {
  padding: 1rem 1.2rem;
}

.pfc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pfc-position {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pfc-stats {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pfc-stat {
  text-align: center;
  flex: 1;
}

.pfc-stat-val {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.pfc-stat-key {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Search bar */
.player-search-wrap {
  max-width: 420px;
  margin: 0 auto 2rem;
  position: relative;
}

.player-search-wrap input {
  width: 100%;
  background: var(--dark-4);
  border: 1.5px solid rgba(201, 162, 39, 0.25);
  border-radius: 40px;
  padding: 0.7rem 1rem 0.7rem 3rem;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.player-search-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.player-search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.player-search-wrap .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.9rem;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  display: none;
}

.no-results i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}



.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(201, 162, 39, 0.3);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-color: transparent;
}

.gallery-full-grid {
  columns: 4;
  column-gap: 14px;
}

.gallery-full-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  min-height: auto;
}

.gallery-full-grid .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .gallery-full-grid {
    columns: 3;
  }
}

@media (max-width: 767px) {
  .gallery-full-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .gallery-full-grid {
    columns: 1;
  }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.lightbox-close:hover {
  background: var(--gold);
  color: #000;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: #000;
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-align: center;
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0c10;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  padding: 4rem 0 0;
}

.footer-logo {
  height: 44px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--dark-4);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.footer-heading {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-score-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.footer-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.footer-teams img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-score {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}

.footer-score-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom div a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: var(--transition);
}

.footer-bottom div a:hover {
  color: var(--gold);
}