/* --------------------------------------------------------------------------
   1. TWO-TIER HEADER & NAVIGATION (EXACT MOCKUP DESIGN)
   -------------------------------------------------------------------------- */
/* Top White Tier */
.site-top-brand-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  position: relative;
  z-index: 1001;
}

.site-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.top-brand-left {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  text-decoration: none;
}

.top-brand-logo {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-accent-500);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.top-brand-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #04241e;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.top-brand-tagline-green {
  font-size: 0.82rem;
  font-weight: 800;
  color: #059669;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.top-brand-tagline-sub {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.1rem;
}

.top-brand-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-header-support {
  background-color: var(--color-accent-500);
  color: var(--color-primary-950);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  transition: all var(--transition-fast);
}

.btn-header-support:hover {
  background-color: var(--color-accent-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

/* Main Nav Bar (Dark Green Sub-bar) */
.site-main-nav-bar {
  background-color: #06382e;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.main-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.main-nav-link {
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.main-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--color-accent-400);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

.main-nav-link:hover,
.main-nav-link.active {
  color: var(--color-accent-300);
}

.main-nav-link:hover::after,
.main-nav-link.active::after {
  width: 100%;
}

/* Search Trigger Button */
.search-trigger-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.search-trigger-btn:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--color-accent-400);
  color: var(--color-accent-300);
}

/* Action CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-accent-500);
  color: var(--color-primary-950);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-accent-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent-400);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: rgba(34, 197, 94, 0.15);
  border-color: var(--color-accent-300);
  color: var(--color-accent-300);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--color-primary-800);
  color: var(--color-white);
  border: 1px solid var(--color-border-dark);
}

.btn-dark:hover {
  background-color: var(--color-primary-700);
  border-color: var(--color-accent-500);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Mobile Hamburger */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(4, 36, 30, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link:hover {
  color: var(--color-accent-400);
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-950) 0%, var(--color-primary-900) 60%, #03211c 100%);
  color: var(--color-white);
  padding: 4rem 0 5rem 0;
  overflow: hidden;
}

/* Background visual decoration (mesh / pitch lines / radial lighting) */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(34, 197, 94, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--color-accent-300);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title .highlight-text {
  color: var(--color-accent-400);
  display: inline-block;
  position: relative;
  text-shadow: 0 0 24px rgba(34, 197, 94, 0.4);
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(16, 185, 129, 0.3);
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.hero-visual-card:hover .hero-image {
  transform: scale(1.03);
}

/* ==========================================================================
   MODERN HERO SLIDESHOW / CAROUSEL (CLEAN FULL-PHOTO SLIDER)
   ========================================================================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #021713;
  user-select: none;
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* Subtle Navigation Arrows (Fade in on Hover) */
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4, 36, 30, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.35rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
}

.hero-carousel:hover .hero-carousel-btn {
  opacity: 0.85;
}

.hero-carousel-btn:hover {
  background: var(--color-accent-500);
  color: var(--color-primary-950);
  border-color: var(--color-accent-400);
  transform: translateY(-50%) scale(1.1);
  opacity: 1 !important;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

.hero-carousel-btn.prev {
  left: 1rem;
}

.hero-carousel-btn.next {
  right: 1rem;
}

/* Subtle Bottom Dots Pagination */
.hero-carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 8;
  background: rgba(2, 23, 19, 0.65);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
}

.hero-dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--color-accent-400);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(4, 36, 30, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-floating-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-950);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-floating-badge .badge-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.hero-floating-badge .badge-sub {
  font-size: 0.78rem;
  color: var(--color-accent-400);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   3. HORIZONTAL IMPACT STRIP (WHITE CARD WITH 5 SECTIONS)
   -------------------------------------------------------------------------- */
.impact-strip-section {
  position: relative;
  z-index: 20;
  margin-top: -2.75rem;
  margin-bottom: 2.5rem;
}

.impact-strip-white-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  padding: 1.75rem 1.25rem;
}

.impact-strip-white-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.impact-white-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.25rem 1rem;
  position: relative;
}

.impact-white-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e2e8f0;
}

.impact-white-icon {
  font-size: 1.85rem;
  margin-bottom: 0.4rem;
  line-height: 1;
}

.impact-white-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary-900);
  line-height: 1.25;
}

.impact-white-sub {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   3B. BARNAAMIJYADEENA (PROGRAMS 4-CARD FULL PHOTO GRID)
   -------------------------------------------------------------------------- */
.programs-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.programs-title-main {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary-900);
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.programs-title-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3.5px;
  background-color: var(--color-accent-500);
  border-radius: var(--radius-full);
}

.programs-sub-tag {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 700;
}

.programs-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.program-photo-card {
  position: relative;
  height: 310px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.program-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.program-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.program-photo-card:hover .program-photo-img {
  transform: scale(1.08);
}

.program-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,36,30,0) 30%, rgba(2,23,19,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.25rem;
  color: #ffffff;
}

.program-photo-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.program-photo-sub {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-bottom: 0.65rem;
}

.program-photo-action {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--color-accent-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --------------------------------------------------------------------------
   3C. SPLIT SECTION: TARTAMADA (60%) & WARAR & SHEEKOOYIN (40%)
   -------------------------------------------------------------------------- */
.split-home-section {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.split-col-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.split-col-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--color-primary-900);
}

.split-col-sub {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.tournaments-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tournament-thumb-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tournament-thumb-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-400);
}

.tournament-thumb-img-wrap {
  height: 125px;
  width: 100%;
  overflow: hidden;
  background: var(--color-primary-900);
}

.tournament-thumb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament-thumb-body {
  padding: 0.85rem;
}

.tournament-thumb-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary-900);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.tournament-thumb-meta {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* Stories Side Column */
.stories-thumb-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-thumb-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  padding: 0.85rem;
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.story-thumb-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-400);
}

.story-thumb-img {
  width: 110px;
  height: 85px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-primary-900);
}

.story-thumb-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-thumb-date {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.story-thumb-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-primary-900);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.story-thumb-action {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--color-accent-600);
}

/* --------------------------------------------------------------------------
   3D. CTA BOTTOM QUOTE BANNER
   -------------------------------------------------------------------------- */
.cta-quote-banner {
  background: linear-gradient(135deg, #021713 0%, #04241e 50%, #06382e 100%);
  color: #ffffff;
  padding: 3.5rem 0;
  border-top: 3px solid var(--color-accent-500);
}

.cta-quote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-quote-text {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.45;
  color: #ffffff;
  max-width: 600px;
}

.cta-quote-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-quote-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   4. ABOUT / OUR STORY CARDS
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text-card {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.about-bullet-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.75rem 0 2.25rem 0;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-900);
}

.about-bullet-item i {
  color: var(--color-accent-500);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   5. MISSION & VALUES GRID
   -------------------------------------------------------------------------- */
.mission-box {
  background: linear-gradient(135deg, rgba(6, 46, 39, 0.95), rgba(4, 36, 30, 0.95));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-xl);
}

.mission-statement {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.45;
  max-width: 900px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent-500);
}

.value-icon-box {
  width: 48px;
  height: 48px;
  background: var(--color-accent-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.value-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary-900);
}

/* --------------------------------------------------------------------------
   6. PROGRAMS CARDS
   -------------------------------------------------------------------------- */
.program-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent-500);
}

.program-card-header {
  background: linear-gradient(135deg, var(--color-primary-900), var(--color-primary-800));
  color: var(--color-white);
  padding: 1.75rem;
  position: relative;
}

.program-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--color-accent-500);
  color: var(--color-primary-950);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.program-card-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-focus-list {
  list-style: none;
  margin: 1.25rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.program-focus-item {
  font-size: 0.88rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-focus-item::before {
  content: '✓';
  color: var(--color-accent-500);
  font-weight: 900;
}

/* --------------------------------------------------------------------------
   7. TOURNAMENTS CARDS
   -------------------------------------------------------------------------- */
.tournament-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.tournament-img-wrap {
  height: 200px;
  position: relative;
  background-color: var(--color-primary-900);
  overflow: hidden;
}

.tournament-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament-date-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(4, 36, 30, 0.88);
  backdrop-filter: blur(6px);
  color: var(--color-accent-400);
  border: 1px solid var(--color-accent-500);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
}

.tournament-body {
  padding: 1.75rem;
}

.tournament-meta {
  display: flex;
  gap: 1rem;
  margin: 0.75rem 0 1rem 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.tournament-results-box {
  background: var(--color-bg-subtle);
  border-left: 3px solid var(--color-accent-500);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   8. COACHES CARDS
   -------------------------------------------------------------------------- */
.coach-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-normal);
}

.coach-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.coach-img-wrap {
  height: 240px;
  background: linear-gradient(135deg, var(--color-primary-900), var(--color-primary-800));
  position: relative;
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold-400);
  color: var(--color-primary-950);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.coach-info {
  padding: 1.75rem 1.5rem;
}

.coach-role {
  color: var(--color-accent-600);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.coach-exp {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   9. PLAYER PATHWAY TIMELINE
   -------------------------------------------------------------------------- */
.pathway-chain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 3rem 0 1rem 0;
}

.pathway-chain::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-500), var(--color-accent-300));
  z-index: 1;
}

.pathway-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 160px;
}

.pathway-node {
  width: 56px;
  height: 56px;
  background: var(--color-primary-900);
  border: 3px solid var(--color-accent-400);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  margin-bottom: 0.85rem;
}

.pathway-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-primary-900);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   10. STORIES & GALLERY TABS
   -------------------------------------------------------------------------- */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab.active,
.filter-tab:hover {
  background-color: var(--color-primary-900);
  color: var(--color-accent-400);
  border-color: var(--color-primary-900);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 23, 19, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--color-white);
}

.gallery-card-title {
  font-size: 0.95rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   11. SUPPORT US CTA STRIP
   -------------------------------------------------------------------------- */
.support-banner {
  background: linear-gradient(135deg, var(--color-primary-950), var(--color-primary-900));
  border: 2px solid var(--color-accent-500);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
}

.support-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.support-banner p {
  color: #cbd5e1;
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
}

/* --------------------------------------------------------------------------
   12. TRANSPARENCY REPORT LIST
   -------------------------------------------------------------------------- */
.report-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.report-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all var(--transition-fast);
}

.report-item:hover {
  border-color: var(--color-accent-500);
  box-shadow: var(--shadow-md);
}

.report-info h4 {
  margin-bottom: 0.25rem;
}

.report-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   13. CONTACT FORM
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--color-primary-900);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
}

.contact-info-card h3 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-accent-300);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-900);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background-color: var(--color-bg-light);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-primary-950);
  color: #cbd5e1;
  padding: 4.5rem 0 2rem 0;
  border-top: 3px solid var(--color-accent-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-tagline-text {
  color: var(--color-accent-400);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-link {
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-accent-400);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   15. MODAL SYSTEM
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 23, 19, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   16. MOBILE BOTTOM NAVIGATION BAR
   -------------------------------------------------------------------------- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 1002;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.5rem;
}

.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  transition: all var(--transition-fast);
}

.mobile-bottom-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.mobile-bottom-item.active,
.mobile-bottom-item:hover {
  color: var(--color-accent-600);
}

.mobile-bottom-item.active .mobile-bottom-icon {
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   16. 1v1 PLAYER BATTLE CHALLENGE & TOURNAMENT VOTING ARENA
   -------------------------------------------------------------------------- */
.section-challenge {
  background: radial-gradient(circle at top right, #09372e 0%, #031d17 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.section-challenge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
}

.challenge-header-card {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 43, 35, 0.65) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  backdrop-filter: blur(8px);
}

.challenge-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.challenge-main-title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.challenge-main-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.challenge-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge-timer-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.timer-icon {
  font-size: 1.5rem;
}

.timer-label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timer-digits {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fbbf24;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.04em;
}

.challenge-awards-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.award-pill {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: #f8fafc;
}

/* Battle Matches Grid */
.battle-matches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

/* Battle Match Card */
.battle-card {
  background: #041c16;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.battle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 16px 35px -8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.15);
}

.battle-card.match-voted {
  border-color: rgba(245, 158, 11, 0.4);
}

.battle-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.battle-match-badge {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #34d399;
}

.battle-social-req-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.tag-tiktok {
  background: rgba(0, 0, 0, 0.75);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.tag-facebook {
  background: rgba(24, 119, 242, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.4);
}

.tag-youtube {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.tag-instagram {
  background: rgba(225, 48, 108, 0.2);
  color: #f472b6;
  border: 1px solid rgba(244, 114, 182, 0.4);
}

.tag-whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
}

/* 1v1 Battle Arena Players Row */
.battle-arena-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  padding: 1.25rem;
  gap: 0.75rem;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.battle-player-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  position: relative;
}

.battle-player-side:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
}

.battle-player-side.is-voted {
  background: rgba(16, 185, 129, 0.12);
  border-color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.battle-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 0.75rem;
  border: 3px solid rgba(16, 185, 129, 0.35);
  overflow: hidden;
  background: #02120e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.battle-player-side.is-voted .battle-avatar-wrap {
  border-color: #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.battle-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.battle-avatar-initial {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
}

.battle-jersey-pill {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0f172a;
  border: 2px solid #10b981;
  color: #6ee7b7;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

.battle-player-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.battle-player-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.65rem;
}

.battle-vote-btn {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: all var(--transition-fast);
}

.battle-vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.battle-vote-btn.btn-voted-active {
  background: #0f766e;
  border: 1px solid #14b8a6;
  box-shadow: none;
  cursor: default;
}

.battle-vote-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Central VS Divider */
.battle-vs-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.battle-vs-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  letter-spacing: -0.02em;
}

/* Battle Vote Meter / Percentage Bar */
.battle-meter-footer {
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.battle-meter-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.meter-left-info {
  color: #34d399;
}

.meter-right-info {
  color: #38bdf8;
  text-align: right;
}

.battle-meter-track {
  width: 100%;
  height: 10px;
  background: #0b221b;
  border-radius: var(--radius-full);
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.battle-meter-fill-left {
  height: 100%;
  background: linear-gradient(90deg, #059669, #34d399);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.battle-meter-fill-right {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.battle-bracket-path {
  margin-top: 0.75rem;
  padding: 0.45rem 0.65rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 8px;
  font-size: 0.73rem;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.35;
  text-align: left;
}

.battle-bracket-path strong {
  color: #fbbf24;
}

/* Challenge-Only Landing Focus Banner */
.challenge-focus-banner {
  background: linear-gradient(90deg, #064e3b 0%, #047857 50%, #059669 100%);
  color: #ffffff;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: bannerSlideDown 0.4s ease-out;
}

@keyframes bannerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.challenge-landing-focus .section-challenge {
  padding-top: 2rem;
  animation: arenaGlow 2s infinite alternate ease-in-out;
}

@keyframes arenaGlow {
  from { box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.05); }
  to { box-shadow: inset 0 0 60px rgba(16, 185, 129, 0.15); }
}

.battle-total-votes-count {
  text-align: center;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   17. SOCIAL VOTING MODAL STYLES (MOBILE-FIRST BOTTOM SHEET & DESKTOP DIALOG)
   -------------------------------------------------------------------------- */
.vote-modal-box {
  max-width: 520px;
  width: 100%;
  background: linear-gradient(165deg, #0a332a 0%, #031c16 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #ffffff;
  padding: 2.25rem 2rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9), 0 0 35px rgba(16, 185, 129, 0.2);
  position: relative;
  animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.vote-modal-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.vote-step-tag {
  font-size: 0.72rem;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: 0.08em;
  display: inline-block;
  background: rgba(251, 191, 36, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.4rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.vote-modal-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.vote-modal-subtitle {
  font-size: 0.85rem;
  color: #94a3b8;
}

.vote-player-target-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vote-target-avatar-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #10b981;
  background: #041813;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.vote-target-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vote-target-initial {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
}

.vote-target-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.vote-target-pos {
  font-size: 0.8rem;
  color: #6ee7b7;
  font-weight: 700;
}

.vote-target-badge {
  font-size: 0.74rem;
  color: #fde68a;
  font-weight: 700;
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.vote-action-step-card,
.vote-submit-step-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.vote-step-indicator {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.step-num.unlocked {
  background: #fbbf24;
  color: #000000;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}

.step-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.step-desc {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.btn-vote-social-action {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  transition: all var(--transition-fast);
}

.btn-vote-social-action:hover,
.btn-vote-social-action:active {
  transform: scale(0.98);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}

.btn-confirm-vote {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.45);
  transition: all var(--transition-fast);
}

.btn-confirm-vote:hover:not(:disabled),
.btn-confirm-vote:active:not(:disabled) {
  transform: scale(0.98);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.7);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.btn-confirm-vote:disabled {
  background: #334155;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.vote-modal-footer-note {
  font-size: 0.74rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.45;
  margin-top: 0.6rem;
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS (ULTRA-POLISHED MOBILE VIEW)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .main-nav-links { display: none; }
  .mobile-toggle-btn { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual-card { max-width: 580px; margin: 0 auto; }
  .programs-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .split-home-section { grid-template-columns: 1fr; }
  .tournaments-thumb-row { grid-template-columns: repeat(3, 1fr); }
  .impact-strip-white-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .impact-white-item:nth-child(3)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .battle-matches-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-top-inner { flex-wrap: wrap; gap: 0.75rem; }
  .top-brand-title { font-size: 1.25rem; }
  .top-brand-tagline-sub { display: none; }
  .hero-section { padding-top: 1.5rem; padding-bottom: 2rem; }
  .hero-title { font-size: 2.1rem; line-height: 1.15; }
  .hero-desc { font-size: 0.95rem; }
  .hero-carousel { height: 360px; }
  .hero-carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
  .impact-strip-white-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .impact-white-item::after { display: none !important; }
  .programs-photo-grid { grid-template-columns: 1fr; }
  .tournaments-thumb-row { grid-template-columns: 1fr; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 70px; }
  
  /* Challenge & 1v1 Mobile Optimizations */
  .section-challenge { padding: 3rem 0; }
  .challenge-main-title { font-size: 1.85rem; }
  .challenge-header-card { padding: 1.5rem 1.15rem; margin-bottom: 1.75rem; border-radius: 16px; }
  .challenge-meta-bar { flex-direction: column; align-items: stretch; gap: 1rem; }
  .challenge-timer-box { justify-content: center; width: 100%; }
  .challenge-awards-box { justify-content: center; width: 100%; gap: 0.4rem; }
  .award-pill { font-size: 0.72rem; padding: 0.35rem 0.65rem; }
  
  /* Keep 1v1 Battle Side-by-Side on Mobile for Excitement */
  .battle-card { border-radius: 16px; }
  .battle-card-header { padding: 0.75rem 1rem; }
  .battle-arena-row {
    grid-template-columns: 1fr auto 1fr !important;
    padding: 1rem 0.6rem;
    gap: 0.4rem;
  }
  .battle-player-side { padding: 0.65rem 0.4rem; }
  .battle-avatar-wrap { width: 68px; height: 68px; margin-bottom: 0.5rem; }
  .battle-player-name { font-size: 0.85rem; margin-bottom: 0.15rem; }
  .battle-player-sub { font-size: 0.68rem; margin-bottom: 0.5rem; }
  .battle-vote-btn { padding: 0.55rem 0.4rem; font-size: 0.75rem; border-radius: 10px; }
  .battle-vs-badge { width: 34px; height: 34px; font-size: 0.72rem; }
  .battle-meter-footer { padding: 0.85rem 1rem; }
  .battle-meter-labels { font-size: 0.72rem; }

  /* Mobile Bottom Sheet Modal */
  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .vote-modal-box {
    border-radius: 24px 24px 0 0;
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 1.75rem 1.25rem 2.25rem;
    border-bottom: none;
    animation: slideUpDrawer 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@keyframes slideUpDrawer {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .hero-carousel { height: 290px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .impact-strip-white-grid { grid-template-columns: 1fr; }
  .cta-quote-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .battle-avatar-wrap { width: 58px; height: 58px; }
  .battle-jersey-pill { font-size: 0.6rem; padding: 0.05rem 0.3rem; }
  .battle-player-name { font-size: 0.8rem; }
  .battle-vote-btn { font-size: 0.72rem; padding: 0.5rem 0.3rem; }
  .battle-vs-badge { width: 28px; height: 28px; font-size: 0.65rem; }
}/* ==========================================================================
   20. INTERACTIVE ANIMATED VIDEO GUIDE & SIMULATOR
   ========================================================================== */
.video-guide-modal-box {
  background: #061e18;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.2);
  max-width: 820px;
  width: 95%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem;
  color: #ffffff;
  position: relative;
}

.video-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-guide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.video-guide-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.video-guide-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.75rem;
  align-items: center;
}

@media (max-width: 768px) {
  .video-guide-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Simulated Smartphone Mockup */
.sim-phone-frame {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: #02120e;
  border: 8px solid #1e293b;
  border-radius: 36px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.3);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/17;
  display: flex;
  flex-direction: column;
}

.sim-phone-notch {
  width: 110px;
  height: 18px;
  background: #1e293b;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.sim-phone-camera {
  width: 6px;
  height: 6px;
  background: #0f172a;
  border-radius: 50%;
}

.sim-screen-content {
  flex: 1;
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #062b21 0%, #031712 100%);
  position: relative;
  overflow: hidden;
}

/* Simulated Cursor Hand Pointer */
.sim-hand-cursor {
  position: absolute;
  font-size: 2rem;
  z-index: 50;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

.sim-hand-cursor.clicking {
  transform: scale(0.85) rotate(-15deg);
}

.sim-ripple {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.6);
  transform: scale(0);
  animation: simRippleAnim 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 45;
}

@keyframes simRippleAnim {
  0% { transform: scale(0.2); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Interactive Steps Guide Cards */
.guide-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.guide-step-card.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.guide-step-card.completed {
  border-color: rgba(34, 197, 94, 0.4);
}

.guide-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.guide-step-card.active .guide-step-number {
  background: #10b981;
  color: #04241e;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.guide-step-card.completed .guide-step-number {
  background: #22c55e;
  color: #04241e;
}

.guide-step-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.guide-step-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.35;
}

.guide-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.guide-progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.guide-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399, #f59e0b);
  width: 33%;
  transition: width 0.4s ease;
}
