/* ==========================================================================
   FOOS APP DESIGN SYSTEM - WEB VERSION
   ==========================================================================
   Premium dark theme with bold accents
   Designed for viral engagement and sports-app clarity
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables (Design Tokens) - DARK THEME DEFAULT
   -------------------------------------------------------------------------- */

:root {
  /* Brand */
  --brand-red: #f94144;
  --brand-red-glow: rgba(249, 65, 68, 0.4);
  --brand-red-subtle: rgba(249, 65, 68, 0.12);
  --brand-black: #020202;
  
  /* Core Colors - Dark Theme */
  --background: #020202;
  --background-elevated: #0a0a0a;
  --foreground: #f8f8f8;
  --foreground-muted: #a0a0a0;
  
  /* Card & Surface */
  --card: #0f0f0f;
  --card-hover: #141414;
  --card-foreground: #f8f8f8;
  --card-border: rgba(255, 255, 255, 0.06);
  
  /* Primary Action */
  --primary: #f94144;
  --primary-hover: #ff5a5d;
  --primary-foreground: #ffffff;
  
  /* Secondary */
  --secondary: #1a1a1a;
  --secondary-hover: #242424;
  --secondary-foreground: #f8f8f8;
  
  /* Accent & Status */
  --accent: #f94144;
  --accent-glow: 0 0 20px rgba(249, 65, 68, 0.3);
  --success: #22c55e;
  --success-subtle: rgba(34, 197, 94, 0.12);
  --warning: #fbbf24;
  --destructive: #dc2626;
  
  /* Muted & Disabled */
  --muted: #161616;
  --muted-foreground: #666666;
  
  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --input: #1a1a1a;
  --ring: #f94144;
  
  /* Live Indicators */
  --live-color: #f94144;
  --live-glow: rgba(249, 65, 68, 0.4);
  --live-bg: rgba(249, 65, 68, 0.15);
  
  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #f94144 0%, #ff6b6b 50%, #f94144 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(249, 65, 68, 0.15) 0%, transparent 70%);
  --gradient-hero: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-xxxl: 64px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-xxl: 28px;
  --radius-full: 9999px;
  
  /* Shadows - Dark theme optimized */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(249, 65, 68, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  
  /* Motion */
  --motion-fast: 120ms;
  --motion-normal: 200ms;
  --motion-slow: 350ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  
  /* Typography - Premium Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family: var(--font-body);
  
  /* Component sizes */
  --button-height-sm: 38px;
  --button-height-md: 48px;
  --button-height-lg: 56px;
  --input-height: 52px;
  
  /* Layout */
  --max-content-width: 720px;
  --max-page-width: 1200px;
  --header-height: 72px;
}

/* --------------------------------------------------------------------------
   Base Reset & Foundation
   -------------------------------------------------------------------------- */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249, 65, 68, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 80% 100%, rgba(249, 65, 68, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

::selection {
  background: var(--primary);
  color: white;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--motion-fast) ease;
}

a:hover {
  color: var(--primary-hover);
}

/* --------------------------------------------------------------------------
   Typography - Premium & Bold
   -------------------------------------------------------------------------- */

.text-display {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--foreground);
}

.text-h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.text-h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.3px;
}

.text-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--foreground-muted);
}

.text-body-medium {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.text-caption {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.text-small {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.text-stat {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--foreground);
}

/* --------------------------------------------------------------------------
   Color Utilities
   -------------------------------------------------------------------------- */

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-destructive { color: var(--destructive); }
.text-success { color: var(--success); }
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--max-page-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* --------------------------------------------------------------------------
   Spacing Utilities
   -------------------------------------------------------------------------- */

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.px-xs { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* --------------------------------------------------------------------------
   Cards - Glassmorphism Style
   -------------------------------------------------------------------------- */

.card {
  background: var(--card);
  background-image: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--motion-normal) var(--motion-ease);
}

.card:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.card-elevated {
  background: var(--card);
  background-image: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.card-glow {
  position: relative;
  overflow: hidden;
}

.card-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(249, 65, 68, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--motion-slow) ease;
}

.card-glow:hover::before {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Buttons - Premium Feel
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: var(--button-height-md);
  padding: 0 var(--space-xl);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.2px;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--motion-normal) var(--motion-ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--gradient-brand);
  background-size: 200% 200%;
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(249, 65, 68, 0.35);
}

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 6px 20px rgba(249, 65, 68, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--muted);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground-muted);
}

.btn-ghost:hover {
  background: var(--muted);
  color: var(--foreground);
}

.btn-sm {
  height: var(--button-height-sm);
  padding: 0 var(--space-lg);
  font-size: 14px;
}

.btn-lg {
  height: var(--button-height-lg);
  padding: 0 var(--space-xxl);
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   Badges - Vibrant & Clear
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--radius-full);
  background: var(--muted);
  color: var(--foreground-muted);
}

.badge-primary {
  background: var(--brand-red-subtle);
  color: var(--primary);
}

.badge-success {
  background: var(--success-subtle);
  color: var(--success);
}

.badge-live {
  background: var(--live-bg);
  color: var(--live-color);
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { 
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(249, 65, 68, 0.4);
  }
  50% { 
    opacity: 0.9;
    box-shadow: 0 0 0 6px rgba(249, 65, 68, 0);
  }
}

/* --------------------------------------------------------------------------
   Avatar
   -------------------------------------------------------------------------- */

.avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  background: var(--muted);
  border: 2px solid var(--border);
}

.avatar-sm { width: 36px; height: 36px; }
.avatar-lg { width: 72px; height: 72px; }
.avatar-xl { width: 100px; height: 100px; }

.avatar-ring {
  box-shadow: 0 0 0 3px var(--background), 0 0 0 5px var(--primary);
}

/* --------------------------------------------------------------------------
   App Banner - Sleek & Premium
   -------------------------------------------------------------------------- */

.app-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(90deg, rgba(249, 65, 68, 0.08) 0%, var(--card) 50%, rgba(249, 65, 68, 0.08) 100%);
  border-bottom: 1px solid var(--border);
}

.app-banner__content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.app-banner__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.app-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-banner__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--foreground);
}

.app-banner__subtitle {
  font-size: 13px;
  color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   Header - Premium Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--space-xl);
  background: rgba(2, 2, 2, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: opacity var(--motion-fast) ease;
}

.site-header__logo:hover {
  opacity: 0.85;
}

.site-header__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* FoosKings wordmark ships on a black plate — screen-blend drops the bg.
   Kept compact: this sticky bar sits on every inner page (draft, prices,
   leaderboard), so a shorter header keeps the page's primary action above
   the fold. The marketing homepage uses its own larger logo treatment. */
.site-header--fooskings {
  height: auto;
  min-height: 60px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.site-header--fooskings .site-header__logo-img {
  height: 60px;
  max-width: min(64vw, 260px);
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground-muted);
  transition: color var(--motion-fast) ease;
}

.site-header__nav-link:hover {
  color: var(--foreground);
}

/* --------------------------------------------------------------------------
   Footer - Call to Action Focus
   -------------------------------------------------------------------------- */

.site-footer--fooskings {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer--fooskings::before {
  display: none;
}

.site-footer--fooskings .site-footer__bottom {
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.site-footer {
  position: relative;
  padding: var(--space-xxl) var(--space-xl);
  background: var(--card);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(249, 65, 68, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer__cta {
  position: relative;
  max-width: 520px;
  margin: 0 auto var(--space-xxl);
  padding: var(--space-xxl) var(--space-xl);
  background: var(--muted);
  background-image: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
}

.site-footer__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(249, 65, 68, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer__cta-icon {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
}

.site-footer__cta-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-sm);
  color: var(--foreground);
}

.site-footer__cta-subtitle {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted-foreground);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.site-footer__app-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.site-footer__copyright {
  font-size: 13px;
  color: var(--muted-foreground);
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.site-footer__link {
  font-size: 13px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color var(--motion-fast) ease;
}

.site-footer__link:hover {
  color: var(--foreground);
}

/* "Home" is the most useful nav link in the footer (since the page might
   have been arrived at via a deep share link), so it gets brand color
   styling to stand out from the legal/contact links beside it. */
.site-footer__link--home {
  color: var(--primary, #d40924);
  font-weight: 600;
}

.site-footer__link--home:hover {
  color: var(--foreground);
}

/* Copyright wordmark links back to the homepage so visitors who came in
   via a shared bracket/club URL have an obvious "explore the rest of
   Foos App" affordance at the bottom of the page. */
.site-footer__home {
  color: inherit;
  text-decoration: none;
  transition: color var(--motion-fast) ease;
}

.site-footer__home:hover {
  color: var(--foreground);
}

.site-footer__home strong {
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Hero Section - Dramatic & Immersive
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 450px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xxl) var(--radius-xxl);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) ease;
}

.hero:hover .hero__image {
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(2, 2, 2, 0.2) 0%, 
    rgba(2, 2, 2, 0.4) 50%,
    rgba(2, 2, 2, 0.85) 100%
  );
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
}

@media (max-width: 640px) {
  .hero {
    aspect-ratio: 16 / 9;
    max-height: 280px;
  }
}

/* --------------------------------------------------------------------------
   Club/User Page Specific
   -------------------------------------------------------------------------- */

.club-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
}

.club-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -1px;
}

.club-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  color: var(--muted-foreground);
  font-size: 14px;
}

.club-meta__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--foreground-muted);
}

.club-meta__item svg {
  color: var(--primary);
  opacity: 0.8;
}

.club-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

/* Schedule List */
.schedule-list {
  list-style: none;
  padding: 0;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--motion-fast) ease;
}

.schedule-item:hover {
  background: rgba(255, 255, 255, 0.02);
  margin: 0 calc(var(--space-md) * -1);
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  border-radius: var(--radius-md);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-day {
  min-width: 100px;
  font-weight: 600;
  color: var(--primary);
}

.schedule-time {
  min-width: 80px;
  color: var(--foreground);
  font-weight: 500;
}

.schedule-description {
  flex: 1;
  color: var(--foreground-muted);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
}

.stat-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */

.faq-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  color: var(--foreground);
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: var(--foreground-muted);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes fade-in {
  from { 
    opacity: 0; 
    transform: translateY(10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes slide-up {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.animate-fade-in {
  animation: fade-in 0.5s var(--motion-ease) forwards;
}

.animate-slide-up {
  animation: slide-up 0.6s var(--motion-ease) forwards;
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  animation: fade-in 0.5s var(--motion-ease) forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.25s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.3s; }

/* --------------------------------------------------------------------------
   Utility: Visibility
   -------------------------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  
  .container,
  .container-narrow {
    padding: 0 var(--space-md);
  }
  
  .site-header {
    padding: 0 var(--space-md);
  }

  .site-header--fooskings {
    min-height: 54px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .site-header--fooskings .site-header__logo-img {
    height: 52px;
    max-width: min(70vw, 240px);
  }
  
  .site-footer {
    padding: var(--space-xl) var(--space-md);
  }
  
  .site-footer__cta {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .site-footer__app-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .site-footer__app-buttons .btn {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .club-actions {
    flex-direction: column;
  }
  
  .club-actions .btn {
    width: 100%;
  }
  
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  
  .schedule-day {
    min-width: auto;
  }
}

/* --------------------------------------------------------------------------
   Responsive Visibility Utilities
   -------------------------------------------------------------------------- */

/* Mobile only - hidden on desktop */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  
  .mobile-only.flex,
  .mobile-only.inline-flex {
    display: flex;
  }
  
  .mobile-only.inline {
    display: inline;
  }
}

/* Desktop only - hidden on mobile */
.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}
