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

/* ===== CSS VARIABLES ===== */
:root {
  --red: #e63946;
  --red-dark: #c1121f;
  --navy: #0d1b2a;
  --navy-mid: #1b2d45;
  --gold: #f4a11d;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --card-bg: #ffffff;
  --shadow: 0 8px 32px rgba(13,27,42,0.10);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--navy);
  font-family: 'Outfit', 'Noto Sans Ethiopic', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  z-index: 200;
  background: transparent;
}

.navbar-inner {
  position: relative;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}

.logo img:hover { transform: scale(1.05); }

.logo-text {
  display: flex;
  flex-direction: column;
  color: white;
  line-height: 1.2;
}

.logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.logo-text span:last-child {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-menu a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-menu a:hover, .nav-menu a.active {
  color: white;
  background: rgba(230,57,70,0.2);
}

.search-lang {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-box {
  padding: 8px 16px;
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  outline: none;
  width: 150px;
  transition: var(--transition);
}

.search-box::placeholder { color: rgba(255,255,255,0.55); }

.search-box:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.18);
  width: 200px;
}

#languageSwitcher {
  padding: 7px 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

#languageSwitcher:hover { border-color: var(--gold); }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.slide.active img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.75) 0%, rgba(13,27,42,0.35) 60%, rgba(230,57,70,0.15) 100%);
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.hero-text {
  color: white;
  max-width: 580px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--gold);
}

.hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}

.hero-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,57,70,0.5);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.slider-btn:hover { background: var(--red); border-color: var(--red); }
.prev { left: 24px; }
.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== SECTION ===== */
.section {
  padding: 70px 80px;
  background: white;
  margin: 40px auto;
  width: 88%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.intro-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 18px;
  text-align: justify;
}

/* ===== VIDEO ===== */
.video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 88%;
  margin: 0 auto 40px;
}

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 80px 50px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.3) 60%, transparent 100%);
}

.page-hero h1 {
  position: relative;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 3px;
  z-index: 2;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  width: 88%;
  margin: 50px auto;
  background: white;
  padding: 60px 80px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.page-content p {
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

/* ===== CLUBS GRID ===== */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.club-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
}

.club-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.club-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}

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

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

.club-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.6) 0%, transparent 60%);
}

.club-info {
  padding: 18px;
}

.club-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 6px;
}

.club-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(230,57,70,0.1);
  color: var(--red);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== LEADERSHIP ===== */
.leaders { margin-top: 40px; }

.president-card {
  max-width: 320px;
  margin: 0 auto 50px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.president-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.president-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.president-card .card-info {
  padding: 22px;
  text-align: center;
}

.card-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 10px;
}

.card-contact {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

.card-contact a {
  color: var(--gray);
  text-decoration: none;
}

.card-contact a:hover { color: var(--red); }

.leaders-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.leader-card {
  width: 230px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.leader-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.leader-card .card-info {
  padding: 16px;
  text-align: center;
}

/* ===== SCHEDULE ===== */
.schedule-section { margin-top: 40px; }

.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 30px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.team-tag {
  background: var(--navy);
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.team-tag:hover {
  background: var(--red);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.schedule-table th {
  background: var(--navy);
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.schedule-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--light-gray);
  color: #374151;
}

.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--off-white); }

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-upcoming { background: rgba(244,161,29,0.15); color: #b45309; }
.status-completed { background: rgba(16,185,129,0.12); color: #065f46; }
.status-live { background: rgba(230,57,70,0.12); color: var(--red); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  margin-top: 40px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--navy);
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-icon {
  width: 42px; height: 42px;
  background: rgba(230,57,70,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 2px;
}

.info-text span {
  font-size: 14px;
  color: var(--gray);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.social-link.facebook { background: #1877f2; color: white; }
.social-link.telegram { background: #26a5e4; color: white; }
.social-link.tiktok { background: #010101; color: white; }
.social-link.youtube { background: #ff0000; color: white; }

.social-link:hover { transform: translateY(-2px); opacity: 0.9; }

.contact-form-box { }

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
}

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.35);
}

/* ===== REGISTER FORM ===== */
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ===== COMPETITIONS ===== */
.competitions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.comp-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 5px solid var(--red);
  transition: var(--transition);
}

.comp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.comp-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}

.comp-card p { font-size: 14px; color: var(--gray); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: white;
  padding: 60px 80px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}

.footer-brand .logo img {
  height: 68px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover { color: white; padding-left: 4px; }

/* Override for social links — must come AFTER .footer-col a rules */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-link,
.footer-col .footer-social-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: white !important;
  transition: var(--transition);
  margin-bottom: 0;
}

.footer-social-link svg {
  width: 18px; height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  display: block;
}

.footer-social-link span {
  display: inline !important;
  color: white !important;
}

.footer-social-link.facebook { background: rgba(24,119,242,0.25); border: 1px solid rgba(24,119,242,0.3); }
.footer-social-link.telegram { background: rgba(38,165,228,0.25); border: 1px solid rgba(38,165,228,0.3); }
.footer-social-link.tiktok { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15); }
.footer-social-link.youtube { background: rgba(255,0,0,0.25); border: 1px solid rgba(255,0,0,0.3); }

.footer-social-link:hover {
  opacity: 1 !important;
  transform: translateX(4px);
  padding-left: 14px !important;
  filter: brightness(1.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 30px;
}

.about-stat-box {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
}

.about-stat-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 8px;
}

.about-stat-box p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.25s ease;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 28px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  z-index: 10000;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); }
.lightbox-caption {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: 20px;
}
.club-img-wrap { cursor: zoom-in; }
.club-card.search-hidden { display: none; }
.club-card.search-visible { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== UTILITY ===== */
.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  width: 60px;
  margin-bottom: 20px;
}

.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-8 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }

/* ===== MOBILE ===== */
@media (max-width: 1100px) {
  .clubs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .register-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .navbar { flex-direction: column; gap: 12px; padding: 16px 20px; }
  .nav-menu { flex-wrap: wrap; justify-content: center; }
  .hero-text h1 { font-size: 42px; }
  .hero-overlay { padding-left: 30px; }
  .section, .page-content { padding: 40px 30px; width: 95%; }
  .video-section { grid-template-columns: 1fr; }
  .clubs-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 30px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .competitions-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 0 30px 40px; }
  .page-hero h1 { font-size: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .clubs-grid { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: 1fr 1fr; }
  .logo-text { display: none; }
}
/* Newsflash Ticker Animation */
@keyframes tickerMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
/* ============================================================
   PREMIUM FULL-SCREEN INFINITE PARTNERS MARQUEE
   ============================================================ */
.partners-section-premium {
  background: radial-gradient(circle at center, #1b2d45 0%, #0d1b2a 100%);
  padding: 60px 0;
  border-top: 2px solid #f4a11d;
  border-bottom: 2px solid #f4a11d;
  overflow: hidden; /* Hides posters scrolling off-screen */
  position: relative;
  width: 100%;
}

/* Full Width Track Container */
.marquee-viewport {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 30px;
}

/* Moving conveyor belt track */
.marquee-2d-track {
  display: flex;
  gap: 30px; /* Space between logo cards */
  width: max-content;
  align-items: center; /* Keeps everything cleanly aligned vertically */
  animation: scrollMarquee 40s linear infinite; /* Higher seconds = slower crawl */
}

/* Pause the scrolling animation gracefully on hover */
.marquee-2d-track:hover {
  animation-play-state: paused;
}

/* Square Poster-Fitting Cards (Matches dark background to prevent cropping) */
.sponsor-marquee-card {
  width: 260px;   /* Robust visual width */
  height: 260px;  /* Square aspect ratio to fit full flyers/posters */
  background: #0d1b2a; /* Blends natively into your website background */
  border: 2px solid rgba(244, 161, 29, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
  padding: 0;
  overflow: hidden; /* Clips the images to the card's rounded corners */
  flex-shrink: 0; /* Prevents browser layout engine from squishing cards */
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Interactive Hover effect */
.sponsor-marquee-card:hover {
  border-color: #f4a11d;
  box-shadow: 0 0 25px rgba(244, 161, 29, 0.6);
  transform: scale(1.03); /* Subtle premium lift */
}

/* 100% Poster Preservation Scaling Engine */
.sponsor-marquee-card img {
  width: 100%;
  height: 100%;
  padding: 6px; /* Protection margin to keep text away from borders */
  object-fit: contain; /* Displays 100% of your uploaded asset without any cropping */
  box-sizing: border-box;
}

/* Keyframe tracking for seamless infinite loop */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Loop points back exactly halfway through the duplicate set */
  }
}
/* ==========================================================================
   📱 ADAPTIVE MOBILE OPTIMIZATION ENGINE & MEDIA QUERY BREAKPOINTS
   ========================================================================== */

/* Universal structural grid & spacing fixes */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0d1b2a;
}

/* Hide desktop elements on small viewpoints */
@media (max-width: 1024px) {
  .nav-menu.desktop-only {
    display: none !important;
  }
}

/* Hamburger Icon Layout */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
}
.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex; /* Appears only on mobile screens */
  }
}

/* Sliding Mobile Navigation Drawer Overlay Frame CSS */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #1b2d45;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-overlay.active .mobile-nav-drawer {
  right: 0;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.close-drawer {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.mobile-menu-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active {
  background: rgba(244, 161, 29, 0.15);
  color: #f4a11d;
}

/* Mobile Breakpoints for Content Blocks */
@media (max-width: 768px) {
  /* Logo Text Resizing */
  .logo-text span:first-child { font-size: 18px; }
  .logo-text span:last-child { font-size: 10px; }
  .search-box { width: 100px; padding: 6px 10px; font-size: 12px; }

  /* Hero Slider Optimization */
  .hero { height: 60vh; } /* Prevents giant whitespace cutoff */
  .hero-text h1 { font-size: 28px !important; line-height: 1.2; }
  .hero-text p { font-size: 13px !important; }
  .hero-btn { padding: 10px 18px; font-size: 12px; }
  .slider-btn { width: 35px; height: 35px; font-size: 16px; }

  /* Grid & Flex Layout Conversions to Single Column */
  .section { padding: 30px 15px; }
  .video-section {
    grid-template-columns: 1fr !important; /* Forces vertical stacking */
    gap: 15px !important;
    padding: 0 15px 30px 15px !important;
  }
  .video-card video { border-radius: 8px; }
  
  /* Tables & Lists responsiveness */
  table { display: block; overflow-x: auto; white-space: nowrap; }
}