/* ==========================================================================
   COLLEGE FOOTBALL SCHEDULE TRACKER - MODERN SPORTS DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* Color Palette - Deep Dark Stadium Night */
  --bg-main: #070a12;
  --bg-surface: #0e1422;
  --bg-surface-elevated: #141d30;
  --bg-surface-glass: rgba(16, 24, 40, 0.75);
  --bg-card: rgba(20, 29, 48, 0.65);
  --bg-card-hover: rgba(27, 40, 66, 0.85);

  /* Primary Accent - Turf Emerald & Bright Green */
  --primary: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.35);
  --primary-hover: #059669;
  --primary-text: #ffffff;

  /* Secondary Accents */
  --electric-blue: #3b82f6;
  --electric-blue-glow: rgba(59, 130, 246, 0.3);
  --collegian-gold: #f59e0b;
  --collegian-gold-glow: rgba(245, 158, 11, 0.35);
  --crimson-live: #ef4444;
  --crimson-glow: rgba(239, 68, 68, 0.4);

  /* Text & Contrast */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;

  /* Borders & Glass Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(59, 130, 246, 0.5);
  --border-active: rgba(16, 185, 129, 0.5);

  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px -6px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 36px -8px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--primary-glow);

  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* ==========================================================================
   APP HEADER
   ========================================================================== */

.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 20, 34, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  text-decoration: none;
}

.brand-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #10b981, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--primary-glow);
  font-size: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-info h1 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.brand-info .tagline {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(0.95); opacity: 0.9; }
}

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

.btn-profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn-profile-trigger:hover {
  background: var(--bg-card-hover);
  border-color: var(--electric-blue);
  transform: translateY(-1px);
}

.profile-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.profile-channel-badge {
  font-size: 0.7rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* ==========================================================================
   HERO BANNER & CONTROLS
   ========================================================================== */

.hero-banner {
  max-width: 1320px;
  margin: 1.5rem auto 1rem;
  padding: 0 1.5rem;
}

.hero-glass-card {
  background: linear-gradient(145deg, rgba(20, 29, 48, 0.85), rgba(14, 20, 34, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-glass-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-title-group {
  margin-bottom: 1.5rem;
}

.hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}

.hero-title span {
  background: linear-gradient(135deg, #10b981, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 0.4rem;
  max-width: 680px;
}

/* Hero Controls Form / Grid */
.hero-controls-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: rgba(8, 12, 20, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

/* Primary Fetch Button */
.btn-primary-fetch {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border: none;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px var(--primary-glow);
  white-space: nowrap;
}

.btn-primary-fetch:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #34d399, #059669);
}

.btn-primary-fetch:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary-fetch .btn-icon {
  font-size: 1.25rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-primary-fetch.loading .btn-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Date Range Controls */
.date-selector-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.date-inputs-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.date-input-field {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  transition: all 0.2s ease;
}

.date-input-field:focus-within {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 2px var(--electric-blue-glow);
}

.date-input-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.5rem;
  text-transform: uppercase;
}

.date-input-field input[type="date"] {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  color-scheme: dark;
}

.date-range-separator {
  color: var(--text-muted);
  font-weight: 700;
}

/* Quick Presets Bar */
.date-presets-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.preset-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.15s ease;
}

.preset-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.preset-chip.active {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border-color: var(--primary);
  font-weight: 700;
}

/* Subdivision Picker */
.subdivision-control {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 140px;
}

.subdivision-control label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.select-subdivision {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.select-subdivision:focus {
  border-color: var(--electric-blue);
}

/* ==========================================================================
   FILTER & REAL-TIME SEARCH TOOLBAR
   ========================================================================== */

.filter-toolbar-section {
  max-width: 1320px;
  margin: 1.25rem auto 1rem;
  padding: 0 1.5rem;
}

.filter-toolbar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.filter-primary-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Search Box */
.search-box-wrapper {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.search-box-wrapper .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.search-box-wrapper input {
  width: 100%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
}

.search-box-wrapper input:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px var(--electric-blue-glow);
}

.search-box-wrapper input::placeholder {
  color: var(--text-muted);
}

/* Dropdown Filters */
.dropdown-filters-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-select {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-select:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-select:focus {
  border-color: var(--electric-blue);
}

/* Secondary Filter Chips Row */
.filter-chips-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-filter-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.15s ease;
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.filter-pill.active {
  background: var(--electric-blue);
  color: #ffffff;
  border-color: var(--electric-blue);
  box-shadow: 0 2px 10px var(--electric-blue-glow);
}

.filter-pill.active-gold {
  background: var(--collegian-gold);
  color: #000000;
  border-color: var(--collegian-gold);
  box-shadow: 0 2px 10px var(--collegian-gold-glow);
  font-weight: 700;
}

.filter-pill.active-turf {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 2px 10px var(--primary-glow);
}

/* View Mode & Stats */
.view-and-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.schedule-count-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.schedule-count-label strong {
  color: var(--text-primary);
}

.view-mode-toggle {
  display: flex;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.15rem;
}

.view-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.15s ease;
}

.view-btn.active {
  background: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   SCHEDULE CONTAINER & DATE SECTIONS
   ========================================================================== */

.schedule-main-container {
  max-width: 1320px;
  margin: 1rem auto 4rem;
  padding: 0 1.5rem;
}

.date-group-section {
  margin-bottom: 2.25rem;
}

.date-group-header {
  position: sticky;
  top: 68px;
  z-index: 20;
  background: rgba(14, 20, 34, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.date-group-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.date-calendar-icon {
  color: var(--primary);
  font-size: 1.1rem;
}

.date-game-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 1.25rem;
}

/* ==========================================================================
   GAME CARD STYLES
   ========================================================================== */

.game-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.game-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Highlight favorite teams or accessible channels */
.game-card.highlight-favorite {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.08), rgba(20, 29, 48, 0.75));
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.game-card.channel-unavailable {
  opacity: 0.65;
  filter: grayscale(0.2);
}

.game-card.channel-unavailable:hover {
  opacity: 0.95;
  filter: none;
}

/* Card Header: Kickoff & TV Network Pill */
.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-time-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-time-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.game-status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.game-status-badge.live {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
  animation: pulse-ring 2s infinite ease-out;
}

.game-status-badge.final {
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-secondary);
}

.game-status-badge.scheduled {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* Network Badge Styling */
.network-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.network-badge .access-icon {
  font-size: 0.7rem;
}

/* Matchup Arena */
.matchup-arena {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.15s ease;
}

.team-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.team-row.winner {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid var(--primary);
}

.team-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.team-logo-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px;
  flex-shrink: 0;
}

.team-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.team-name-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.team-headline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.team-rank {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--collegian-gold);
  background: rgba(245, 158, 11, 0.15);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
}

.team-display-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.favorite-star-indicator {
  color: var(--collegian-gold);
  font-size: 0.85rem;
}

.team-sub-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.team-score {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  min-width: 32px;
  text-align: right;
}

.team-score.winner-score {
  color: var(--primary);
}

/* Card Footer */
.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.venue-info {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-actions-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-card-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-card-action:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   LIST / TABLE VIEW STYLES
   ========================================================================== */

.schedule-table-view {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.schedule-table th {
  background: var(--bg-surface-elevated);
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.schedule-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
  vertical-align: middle;
}

.schedule-table tr {
  transition: background 0.15s ease;
}

.schedule-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Highlight for Favorite/Chosen Teams in List View without moving them to the top */
.schedule-table tr.highlight-favorite-row {
  background: rgba(245, 158, 11, 0.07) !important;
  position: relative;
}

.schedule-table tr.highlight-favorite-row:hover {
  background: rgba(245, 158, 11, 0.13) !important;
}

.schedule-table tr.highlight-favorite-row td:first-child {
  border-left: 3px solid var(--collegian-gold);
}

.winner-score {
  color: var(--primary) !important;
}

/* ==========================================================================
   SKELETON LOADERS & EMPTY STATES
   ========================================================================== */

.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.skeleton-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.empty-state-card {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 600px;
  margin: 2rem auto;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.empty-state-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   MODAL / PROFILE DRAWER STYLES
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 0, 0, 0.8);
  transform: translateY(20px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-backdrop.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-group h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-title-group p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-modal-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.15s ease;
}

.btn-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Modal Tabs Navigation */
.modal-nav-tabs {
  display: flex;
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 1.5rem;
  gap: 1.5rem;
  overflow-x: auto;
}

.modal-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.9rem 0;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.modal-tab-btn:hover {
  color: var(--text-primary);
}

.modal-tab-btn.active {
  color: var(--primary);
}

.modal-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

/* Modal Scrollable Body */
.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.tab-pane {
  display: none;
}

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

/* Channels List in Profile */
.channels-quick-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.channel-category-group {
  margin-bottom: 1.5rem;
}

.channel-category-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.channels-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.65rem;
}

.channel-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.channel-checkbox-label:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.channel-checkbox-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.channel-pill-tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
}

/* Teams Picker in Profile */
.selected-teams-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  min-height: 40px;
  padding: 0.5rem;
  background: var(--bg-surface-elevated);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
}

.selected-team-chip {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.selected-team-chip .remove-chip-btn {
  cursor: pointer;
  color: rgba(251, 191, 36, 0.7);
}

.popular-teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.65rem;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.popular-team-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.popular-team-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--collegian-gold);
}

.popular-team-item.active {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--collegian-gold);
}

/* Conferences Picker in Profile */
.conferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.65rem;
}

.fav-conf-tag {
  color: var(--collegian-gold) !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

/* Modal Footer */
.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-elevated);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.btn-save-profile {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--primary-glow);
  transition: all 0.2s ease;
}

.btn-save-profile:hover {
  background: linear-gradient(135deg, #34d399, #059669);
  transform: translateY(-1px);
}

/* ==========================================================================
   TOAST NOTIFICATION COMPONENT
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast-message {
  pointer-events: auto;
  background: #1e293b;
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  animation: slideInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-message.success {
  border-color: var(--primary);
  background: #0f271e;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */

@media (max-width: 960px) {
  .hero-controls-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .btn-primary-fetch {
    width: 100%;
    justify-content: center;
  }
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 640px) {
  .app-header {
    padding: 0.75rem 1rem;
  }
  .brand-info h1 {
    font-size: 1.1rem;
  }
  .hero-banner {
    padding: 0 1rem;
  }
  .hero-glass-card {
    padding: 1.25rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .filter-toolbar-section {
    padding: 0 1rem;
  }
  .schedule-main-container {
    padding: 0 1rem;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .date-inputs-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   GOOGLE ADSENSE & MONETIZATION STYLES
   ========================================================================== */

.ad-container-section {
  max-width: 1320px;
  margin: 0.5rem auto 1rem;
  padding: 0 1.5rem;
}

.ad-unit-wrapper {
  background: rgba(14, 20, 34, 0.7);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  position: relative;
  text-align: center;
  transition: all 0.2s ease;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.ad-unit-wrapper.leaderboard {
  max-width: 100%;
}

.ad-label-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

/* Demo / Placeholder Ad Styling */
.demo-ad-container {
  background: linear-gradient(135deg, rgba(20, 29, 48, 0.75), rgba(14, 20, 34, 0.85));
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.demo-ad-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  max-width: 650px;
  width: 100%;
}

.demo-ad-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--collegian-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
}

.demo-ad-headline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.demo-ad-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.btn-configure-ad {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.25rem;
  transition: all 0.2s ease;
}

.btn-configure-ad:hover {
  background: rgba(59, 130, 246, 0.3);
  color: #ffffff;
  border-color: var(--electric-blue);
  transform: translateY(-1px);
}

/* In-Feed Native Matchup Ad Card */
.in-feed-ad-card {
  background: linear-gradient(145deg, rgba(20, 29, 48, 0.8), rgba(14, 20, 34, 0.9));
  border: 1px dashed rgba(245, 158, 11, 0.35);
}

.demo-ad-card {
  display: flex;
  flex-direction: column;
}

.in-feed-ad-body {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0;
  flex: 1;
}

.in-feed-ad-icon {
  font-size: 2.2rem;
  background: rgba(255, 255, 255, 0.04);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.in-feed-ad-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.in-feed-ad-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.in-feed-ad-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Sticky Bottom / Anchor Banner Ad */
.ad-sticky-bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(14, 20, 34, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.5rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInUp 0.35s ease;
}

.sticky-ad-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
}

.sticky-ad-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.btn-dismiss-sticky-ad {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.15s ease;
}

.btn-dismiss-sticky-ad:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* ==========================================================================
   MULTI-USER PROFILE SWITCHER & ADMIN LOCK STYLES
   ========================================================================== */

.profile-dropdown-wrapper {
  position: relative;
}

.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 260px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.7);
  padding: 0.5rem;
  z-index: 200;
  display: none;
  flex-direction: column;
  animation: fadeInDown 0.15s ease-out;
}

.profile-dropdown-menu.show {
  display: flex;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem 0.2rem;
}

.user-account-menu-header {
  padding: 0.5rem 0.65rem 0.35rem;
}

.user-account-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.user-account-status {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.15rem;
}

.btn-signin-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-signin-trigger:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.text-danger {
  color: #f87171 !important;
}

.text-danger:hover {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #fca5a5 !important;
}

/* Auth Modal Tabs & Elements */
.auth-tabs-bar {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.2);
}

.auth-tab-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.auth-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.auth-tab-btn.active {
  color: #ffffff;
  border-bottom-color: var(--primary);
  background: rgba(16, 185, 129, 0.08);
}

.auth-tab-pane {
  display: none;
}

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

.pin-input {
  letter-spacing: 0.25em;
  text-align: center;
  font-size: 1.25rem !important;
  font-weight: 700;
  padding: 0.65rem !important;
}

.auth-error-box {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  animation: fadeInDown 0.2s ease-out;
}

.auth-success-box {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  animation: fadeInDown 0.2s ease-out;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.4rem 0;
}

.dropdown-action-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.15s ease;
}

.dropdown-action-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.dropdown-action-icon {
  font-size: 0.95rem;
}

.dropdown-arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.profile-dropdown-wrapper.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Owner / Admin Trigger Button */
.btn-admin-trigger {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fef08a;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.btn-admin-trigger:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--collegian-gold);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

/* Avatar Selection Grid */
.avatar-selection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.avatar-option {
  font-size: 1.5rem;
  padding: 0.6rem;
  background: var(--bg-surface-elevated);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.avatar-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.avatar-option.active {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.18);
  box-shadow: 0 0 12px var(--primary-glow);
}


