/* ==========================================================================
   TENNIKOIT ASSOCIATION MAHARASHTRA - OFFICIAL STATE PORTAL
   Pure CSS Design System (style.css)
   Colors: Athletic Orange (#EA580C), Pure White (#FFFFFF), Deep Black (#18181B)
   100% Pure CSS - Clean, High-Contrast Athletic Typography & Layouts
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Athletic Orange */
  --orange-500: #EA580C;
  --orange-600: #C2410C;
  --orange-700: #9A3412;
  --orange-400: #FB923C;
  --orange-300: #FDBA74;
  --orange-100: #FFEDD5;
  --orange-50: #FFF7ED;

  /* Neutral Dark & Slate */
  --dark-900: #18181B;
  --dark-800: #27272A;
  --dark-700: #3F3F46;
  --dark-500: #71717A;
  --dark-400: #A1A1AA;

  /* Light Neutrals & Canvas */
  --light-50: #F8FAFC;
  --light-100: #F1F5F9;
  --light-200: #E2E8F0;
  --light-300: #CBD5E1;
  --white: #FFFFFF;

  /* Text Hierarchy */
  --text-main: #18181B;
  --text-muted: #64748B;
  --text-subtle: #94A3B8;
  --text-inverted: #FFFFFF;

  /* Status */
  --green-600: #16A34A;
  --red-600: #DC2626;
  --amber-500: #F59E0B;

  /* Typography */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-marathi: 'Noto Sans Devanagari', 'Montserrat', sans-serif;

  /* Elevation Shadows */
  --shadow-retro: 3px 3px 0px #18181B;
  --shadow-retro-sm: 2px 2px 0px #18181B;
  --shadow-retro-orange: 3px 3px 0px #EA580C;
  --shadow-retro-white: 2px 2px 0px #FFFFFF;
  --shadow-soft: 0 4px 16px -2px rgba(15, 23, 42, 0.06);
}

/* --------------------------------------------------------------------------
   2. Reset & Universal Defaults
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light-50);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(at 10% 10%, rgba(234, 88, 12, 0.04) 0px, transparent 40%),
    radial-gradient(at 90% 10%, rgba(24, 24, 27, 0.04) 0px, transparent 40%),
    linear-gradient(rgba(226, 232, 240, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.6) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
}

::selection {
  background-color: var(--orange-500);
  color: #FFFFFF;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img, svg, canvas {
  display: block;
  max-width: 100%;
}
.hidden {
  display: none;
}

/* --------------------------------------------------------------------------
   3. Base Container & Grid Framework
   -------------------------------------------------------------------------- */
.max-w-7xl {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl { max-width: 48rem; width: 100%; }
.max-w-xl { max-width: 36rem; width: 100%; }
.max-w-lg { max-width: 32rem; width: 100%; }
.max-w-sm { max-width: 24rem; width: 100%; }
.max-w-\[200px\] { max-width: 200px; }

.min-h-screen { min-height: 100vh; }
.max-h-\[90vh\] { max-height: 90vh; }
.max-h-\[85px\] { max-height: 85px; }

/* Display & Layout */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-full { grid-column: 1 / -1; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.space-x-12 > * + * { margin-left: 3rem; }

/* --------------------------------------------------------------------------
   4. Spacing, Widths & Heights
   -------------------------------------------------------------------------- */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-2\.5 { width: 0.625rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-72 { width: 18rem; }

.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-44 { height: 11rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-\[360px\] { height: 360px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-3 { padding-left: 0.75rem; }
.pr-1 { padding-right: 0.25rem; }
.pr-4 { padding-right: 1rem; }
.pr-10 { padding-right: 2.5rem; }

/* --------------------------------------------------------------------------
   5. Typography Classes
   -------------------------------------------------------------------------- */
.font-montserrat { font-family: var(--font-sans); }
.font-heading { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.02em; }
.font-display { font-family: var(--font-sans); font-weight: 900; letter-spacing: -0.03em; }
.font-retro-serif { font-family: var(--font-serif); }
.font-devanagari { font-family: var(--font-marathi); }
.font-mono { font-family: var(--font-sans); font-feature-settings: "tnum" 1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-none { line-height: 1; }
.leading-snug { line-height: 1.3; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.08\] { line-height: 1.08; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.underline { text-decoration: underline; }

.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }

/* Colors */
.text-\[\#EA580C\], .text-orange-600 { color: #EA580C; }
.text-\[\#C2410C\] { color: #C2410C; }
.text-\[\#18181B\] { color: #18181B; }
.text-\[\#1E293B\] { color: #1E293B; }
.text-\[\#334155\] { color: #334155; }
.text-\[\#475569\] { color: #475569; }
.text-\[\#52525B\] { color: #52525B; }
.text-\[\#64748B\] { color: #64748B; }
.text-\[\#71717A\] { color: #71717A; }
.text-\[\#94A3B8\] { color: #94A3B8; }
.text-\[\#A1A1AA\] { color: #A1A1AA; }
.text-\[\#CBD5E1\] { color: #CBD5E1; }
.text-\[\#E4E4E7\] { color: #E4E4E7; }
.text-\[\#F1F5F9\] { color: #F1F5F9; }
.text-\[\#F8FAFC\] { color: #F8FAFC; }
.text-\[\#F59E0B\] { color: #F59E0B; }
.text-white { color: #FFFFFF; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/95 { color: rgba(255, 255, 255, 0.95); }
.text-slate-200 { color: #E2E8F0; }
.text-emerald-400 { color: #34D399; }

.bg-\[\#EA580C\] { background-color: #EA580C; }
.bg-\[\#C2410C\] { background-color: #C2410C; }
.bg-\[\#18181B\] { background-color: #18181B; }
.bg-\[\#27272A\] { background-color: #27272A; }
.bg-white, .bg-\[\#FFFFFF\] { background-color: #FFFFFF; }
.bg-\[\#F8FAFC\] { background-color: #F8FAFC; }
.bg-\[\#F1F5F9\] { background-color: #F1F5F9; }
.bg-\[\#FFF7ED\] { background-color: #FFF7ED; }
.bg-\[\#FFEDD5\] { background-color: #FFEDD5; }
.bg-\[\#F59E0B\] { background-color: #F59E0B; }
.bg-slate-900 { background-color: #0F172A; }
.bg-slate-800 { background-color: #1E293B; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-transparent { background-color: transparent; }

.decoration-\[\#FB923C\] { text-decoration-color: #FB923C; }
.decoration-4 { text-decoration-thickness: 4px; }

/* --------------------------------------------------------------------------
   6. Borders, Radius & Shadows
   -------------------------------------------------------------------------- */
.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 10px; }
.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 20px; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--light-200); }
.border-2 { border: 2px solid var(--dark-900); }
.border-4 { border: 4px solid var(--orange-500); }
.border-t { border-top: 1px solid var(--light-200); }
.border-b { border-bottom: 1px solid var(--light-200); }
.border-r { border-right: 1px solid var(--light-200); }
.border-b-2 { border-bottom: 2px solid var(--dark-900); }
.border-t-2 { border-top: 2px solid var(--dark-900); }
.border-t-4 { border-top: 4px solid var(--orange-500); }
.border-dashed { border-style: dashed; }

.border-\[\#18181B\] { border-color: #18181B; }
.border-\[\#EA580C\] { border-color: #EA580C; }
.border-\[\#FDBA74\] { border-color: #FDBA74; }
.border-\[\#3F3F46\] { border-color: #3F3F46; }
.border-white { border-color: #FFFFFF; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }
.border-slate-200 { border-color: #E2E8F0; }
.border-slate-300 { border-color: #CBD5E1; }
.border-slate-800 { border-color: #1E293B; }

.shadow-xs { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-sm { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)); }

.shadow-\[2px_2px_0px_\#18181B\] { box-shadow: 2px 2px 0px #18181B; }
.shadow-\[3px_3px_0px_\#18181B\] { box-shadow: 3px 3px 0px #18181B; }
.shadow-\[4px_4px_0px_\#18181B\] { box-shadow: 4px 4px 0px #18181B; }
.shadow-\[2px_2px_0px_\#EA580C\] { box-shadow: 2px 2px 0px #EA580C; }
.shadow-\[3px_3px_0px_\#EA580C\] { box-shadow: 3px 3px 0px #EA580C; }
.shadow-\[2px_2px_0px_\#FFFFFF\] { box-shadow: 2px 2px 0px #FFFFFF; }

/* --------------------------------------------------------------------------
   7. Positions, Overflows & States
   -------------------------------------------------------------------------- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-1\/2 { top: 50%; }
.top-\[41px\] { top: 41px; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.left-2\.5 { left: 0.625rem; }
.left-3 { left: 0.75rem; }
.right-2\.5 { right: 0.625rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.inset-0 { inset: 0; }

.-right-6 { right: -1.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-translate-y-1\/2 { transform: translateY(-50%); }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cursor-pointer { cursor: pointer; }
.cursor-crosshair { cursor: crosshair; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.select-none { user-select: none; }
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-60 { opacity: 0.6; }
.opacity-100 { opacity: 1; }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(8px); }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* --------------------------------------------------------------------------
   8. Navigation Menu (Desktop & Mobile Drawer)
   -------------------------------------------------------------------------- */
#main-navigation {
  background-color: var(--white);
  border-bottom: 2px solid var(--dark-900);
  position: sticky;
  top: 41px;
  z-index: 40;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-link {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-main);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.15s ease, transform 0.15s ease;
}

.nav-link:hover {
  color: var(--orange-500);
}

#mobile-menu {
  display: none;
}

#mobile-menu:not(.hidden) {
  display: block;
}

/* --------------------------------------------------------------------------
   9. Component Cards & Retro Buttons
   -------------------------------------------------------------------------- */
.retro-card {
  background: var(--white);
  border: 1.5px solid var(--dark-900);
  border-radius: 16px;
  box-shadow: var(--shadow-retro);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease;
}

.retro-card-forest {
  background: linear-gradient(135deg, #18181B 0%, #27272A 100%);
  border: 2px solid #EA580C;
  border-radius: 16px;
  box-shadow: 3px 3px 0px #EA580C;
}

.retro-card-terracotta {
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  border: 2px solid #18181B;
  border-radius: 16px;
  box-shadow: 3px 3px 0px #18181B;
}

.retro-heritage-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF7ED 50%, #FFEDD5 100%);
  border: 2px solid #FDBA74;
  border-radius: 20px;
  box-shadow: 0 8px 24px -4px rgba(234, 88, 12, 0.12);
}

.retro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: 6px;
  border: 1.5px solid var(--dark-900);
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.retro-btn:hover {
  transform: translateY(-2px);
}

.retro-btn:active {
  transform: translateY(1px);
}

/* --------------------------------------------------------------------------
   10. Carousel Slider & Hero Slides
   -------------------------------------------------------------------------- */
.slider-slide, .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97) translateX(15px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.slider-slide.active-slide, .hero-slide.active-slide {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(0);
  z-index: 2;
  pointer-events: auto;
}

.slider-slide img {
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-slide.active-slide img {
  transform: scale(1.04);
}

/* Slide Gradients */
.bg-gradient-to-t {
  background: linear-gradient(to top, #090D16 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.2) 100%);
}

.bg-gradient-to-r {
  background: linear-gradient(to right, rgba(6, 78, 59, 0.4) 0%, transparent 50%, rgba(234, 88, 12, 0.25) 100%);
}

.bg-gradient-to-br {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
}

/* --------------------------------------------------------------------------
   11. Animations
   -------------------------------------------------------------------------- */
@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-ticker-smooth {
  display: flex;
  width: max-content;
  animation: ticker-slide 35s linear infinite;
}

.animate-ticker-smooth:hover {
  animation-play-state: paused;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.04); }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-5%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes float-flower {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translateY(-140px) rotate(240deg) scale(1.3);
    opacity: 0;
  }
}

.petal-particle {
  position: absolute;
  pointer-events: none;
  animation: float-flower 1.4s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
  z-index: 999;
}

/* --------------------------------------------------------------------------
   12. Tabs, Modals & Toast
   -------------------------------------------------------------------------- */
.tab-btn {
  transition: all 0.2s ease;
}

.tab-btn.active-tab {
  background-color: var(--orange-500) !important;
  color: #FFFFFF !important;
  border-color: var(--dark-900) !important;
  box-shadow: 2px 2px 0px var(--dark-900) !important;
}

.modal-backdrop-blur {
  background: rgba(24, 24, 27, 0.75);
  backdrop-filter: blur(8px);
}

.translate-y-2 { transform: translateY(0.5rem); }
.translate-y-0 { transform: translateY(0); }

/* --------------------------------------------------------------------------
   13. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .sm\:p-7 { padding: 1.75rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:h-\[400px\] { height: 400px; }
  .sm\:h-96 { height: 24rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .sm\:col-span-1 { grid-column: span 1 / span 1; }
  .sm\:flex { display: flex; }
  .sm\:inline-block { display: inline-block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:w-auto { width: auto; }
  .md\:w-72 { width: 18rem; }
  .md\:flex-initial { flex: 0 1 auto; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1280px) {
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
}




.media-dropdown {
    position: relative;
    display: inline-block;
}

.media-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-btn:hover {
    color: #EA580C;
}

.arrow {
    font-size: 16px;
    transition: transform 0.25s ease;
}

/* Dropdown */
.media-dropdown .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;

    width: 170px;
    padding: 8px;
    margin: 0;

    list-style: none;
    background: #fff;

    border: 1px solid #eee;
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 9999;
}

/* Open state */
.media-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Arrow rotate */
.media-dropdown.active .arrow {
    transform: rotate(180deg);
}

.media-dropdown .dropdown li a {
    display: block;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 7px;
    transition: all 0.2s ease;
}

.media-dropdown .dropdown li a:hover {
    background: #fff7ed;
    color: #EA580C;
}

.media-dropdown .separator {
    height: 1px;
    background: #f1f1f1;
    margin: 2px 8px;
}








.slider-section {
    width: min(100% - 40px, 650px);
}

/* Header */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.slider-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ea580c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}
.dot {
    width: 12px;
    height: 12px;
    background: #ea580c;
    border-radius: 50%;
}
/* Controls */

.slider-controls {
    display: flex;
    gap: 8px;
}
.slider-controls button {
    width: 38px;
    height: 34px;
    background: #fff;
    border: 1px solid #111;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease;
}
.slider-controls button:hover {
    background: #111;
    color: #fff;
}

/* Slider */

.slider-wrapper {
    width: 100%;
    height: 390px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #0f172a;
    box-shadow:
        5px 7px 0 #111;
}


.slides {
    width: 100%;
    height: 100%;
    position: relative;
}


/* Individual slide */

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity .7s ease,
        transform .8s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}


/* Image */

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Dark overlay */

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
/*    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .9),
            rgba(15, 23, 42, .25),
            rgba(15, 23, 42, .05)
        );*/
}


/* Content */

.slide-content {
    position: absolute;
    left: 40px;
    bottom: 45px;
    max-width: 400px;
    color: #fff;
    z-index: 2;
}

.slide-content h2 {
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 10px;
}

.slide-content p {
    margin: 0 0 20px;
    font-size: 15px;
    color: #ddd;
}

.slide-content a {
    display: inline-block;
    padding: 10px 18px;
    background: #ea580c;
    color: white;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .2s;
}

.slide-content a:hover {
    background: #f97316;
    transform: translateY(-2px);
}
/* Footer */

.slider-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 5px;
}

/* Progress */

.progress-container {
    width: 35px;
    height: 10px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}
.progress-bar {
    width: 0%;
    height: 100%;
    background: #ea580c;
    border-radius: 10px;
}


/* Auto text */

.auto-slide {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}
.auto-slide span {
    color: #475569;
}
.auto-slide b {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 5px;
    background: #ea580c;
    border-radius: 50%;
}


/* Responsive */

@media(max-width: 600px) {
    .slider-section {
        width: calc(100% - 25px);
    }
    .slider-wrapper {
        height: 350px;
        border-radius: 20px;
    }
    .slide-content {
        left: 25px;
        bottom: 30px;
        right: 20px;
    }
    .slide-content h2 {
        font-size: 23px;
    }
    .slide-content p {
        font-size: 13px;
    }
    .slider-title {
        font-size: 14px;
    }

}










.text-center.space-y-1 {
  background: #00000008;
  border-bottom: 2px solid #9c9c9c;
  padding: 27px;
}

.w-48.sm\:w-52.bearer-card{
border: 1px solid #ababab;
  border-radius: 1px;
  margin: 2em auto 0 auto;
  width: 225px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  padding: 12px;
}
#players-grid {
  width: 100%;
  margin: 0 auto 11em;
  max-width: 1120px;
}

.hierarchy-outer-container.space-y-6, .hierarchy-outer-container.space-y-8.sm\:space-y-10 {
  width: 73%;
  margin: 1em auto;
  max-width: 1020px;
}

#section-coaching .text-center .sub-comm-title {
  font-size: 24px;
  border-bottom: 1px solid #b6b6b6;
  margin-top: 2em;
}
#section-referee .text-center .sub-comm-title {
  font-size: 24px;
  border-bottom: 1px solid #b6b6b6;
  margin-top: 2em;
}

.district-table-container {
  width: 77%;
  margin: auto;
  margin-bottom: 11em;
}
@media only screen and (min-width: 990px) {
  .official-page-heading {
    font-size: 30px;
  }
}
@media only screen and (max-width: 471px) {
  .official-page-heading {
    font-size: 23px;
    max-width: 12em;
  }
  .district-table-container {
    width: 98%;
    margin: auto;
    margin-bottom: 11em;
  }

  #players-grid {
    width: 98%;
    margin: 0 auto 11em;
  }

}
.official-page-heading {
  border-bottom: 2px solid #444242;
  width: max-content;
  text-align: center;
  margin: 1em auto;
}
.eael-team-img {
  width: 100%;
  max-width: 200px;
  box-shadow: 2px 2px 4px #979696;
  border-bottom: 1px solid black;
}


.logo-tennikoit {
  width: 100%;
  max-width: 122px;
}

#site-footer {
  background: black;
  padding: 3em;
  color: white;
}
.mt-14.mb-8.text-center.px-4 {
  padding: 4em 1em;
}