/**
 * State Hub Page Styles
 * Scoped under .state-hub to avoid leaking styles
 * Matches visual patterns from games-list-styles.css
 */

/* ============================================
   CSS CUSTOM PROPERTIES (must be defined here
   since games-list-styles.css is NOT loaded
   on hub pages)
   ============================================ */

:root {
  --color-primary: #004986;
  --color-primary-contrast: #ffffff;
  --color-success: #319B42;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-highlight: #004986;
  --color-gray: #5B6770;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #6b7280;
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8f9fa;
  --color-bg-tertiary: #e9ecef;
  --color-border-light: #e0e0e0;
  --color-border-medium: #d1d5db;
}

/* ============================================
   SCOPED CONTAINER
   ============================================ */

.state-hub {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text-primary, #1a1a1a);
}

/* ============================================
   HEADER SECTION
   ============================================ */

.state-hub .state-hub-header {
  text-align: center;
  margin-bottom: 2rem;
}

.state-hub .state-hub-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.state-hub .state-hub-header .freshness-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.925rem;
  color: var(--color-text-primary, #1a1a1a);
}

.state-hub .state-hub-header .freshness-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.state-hub .freshness-dot.green {
  background-color: #319B42;
}

.state-hub .freshness-dot.yellow {
  background-color: #f59e0b;
}

.state-hub .freshness-dot.red {
  background-color: #ef4444;
}


.state-hub .state-hub-header .intro-text {
  font-size: 1.125rem;
  color: #374151 !important;
  margin: 0;
  max-width: none;
  line-height: 1.6;
  text-align: left !important;
}

/* ============================================
   QUICK PICKS SECTION
   ============================================ */

.state-hub .quick-picks-section {
  margin-bottom: 2.5rem;
}

.state-hub .quick-picks-section .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary, #1a1a1a);
  text-align: center;
  margin: 0 0 1.25rem 0;
}

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

.state-hub .quick-picks-column h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary, #004986);
  margin: 0 0 0.75rem 0;
  cursor: pointer;
  transition: color 0.2s;
  text-align: center;
}

.state-hub .quick-picks-column h2:hover {
  color: #003d6e;
  text-decoration: underline;
}

.state-hub .quick-picks-column h2 a {
  color: inherit;
  text-decoration: none;
}

.state-hub .quick-picks-column h2 a:hover {
  text-decoration: underline;
}

/* ============================================
   QUICK PICKS CARD
   ============================================ */

.state-hub .quick-picks-card {
  background-color: var(--color-bg-secondary, #f8f9fa);
  border: 1px solid var(--color-border-light, #e0e0e0);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  min-height: 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.state-hub .quick-picks-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.state-hub .quick-picks-card .qp-card-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.state-hub .quick-picks-card .qp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--color-bg-tertiary, #e9ecef);
  border-radius: 6px;
}

.state-hub .quick-picks-card .qp-card-image .qp-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary, #004986) 0%, #003d6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.state-hub .quick-picks-card .qp-card-text {
  flex: 1;
  min-width: 0;
}

.state-hub .quick-picks-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0 0 0.375rem 0;
  line-height: 1.3;
}

.state-hub .quick-picks-card h3 a {
  color: inherit;
  text-decoration: none;
}

.state-hub .quick-picks-card h3 a:hover {
  color: var(--color-primary, #004986);
  text-decoration: underline;
}

.state-hub .quick-picks-card .card-data {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.state-hub .quick-picks-card .card-data-line {
  font-size: 0.8125rem;
  color: var(--color-text-secondary, #6b7280);
  line-height: 1.4;
}

.state-hub .quick-picks-card .card-data-line strong {
  color: var(--color-text-primary, #1a1a1a);
  font-weight: 600;
}

.state-hub .quick-picks-card .text-success {
  color: #319B42 !important;
}

.state-hub .quick-picks-card .text-error {
  color: #ef4444 !important;
}

.state-hub .quick-picks-card .text-warning {
  color: #ef4444 !important;
  font-weight: 600;
}


/* ============================================
   TAB BAR
   ============================================ */

.state-hub .tab-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--color-border-light, #e0e0e0);
}

/* !important on background/color/border to override Astra's inline
   button{background-color:#5b6770;color:#fff;border-color:#5b6770}
   which targets all <button> elements and loads after our stylesheet. */
.state-hub .tab-bar .tab-btn {
  padding: 0.5rem 1rem;
  background-color: #004986 !important;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 6px !important;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #004986 !important;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: none !important;
}

.state-hub .tab-bar .tab-btn:hover {
  background-color: #003d6e !important;
  border-color: #003d6e !important;
}

.state-hub .tab-bar .tab-btn.active {
  background-color: #319B42 !important;
  color: #ffffff !important;
  border-color: #319B42 !important;
  font-weight: 600;
}

.state-hub .tab-bar .tab-btn.active:hover {
  background-color: #287a35 !important;
  border-color: #287a35 !important;
}

/* ============================================
   FILTER BAR
   ============================================ */

.state-hub .filter-bar {
  background-color: var(--color-bg-secondary, #f8f9fa);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border-light, #e0e0e0);
}

.state-hub .filter-bar .filter-bar-controls {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
}

.state-hub .filter-bar .search-input {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  padding: 0.375rem 0.625rem;
  border: 1px solid var(--color-border-medium, #d1d5db);
  border-radius: 4px;
  font-size: 0.875rem;
  background-color: var(--color-bg-primary, #ffffff);
}

.state-hub .filter-bar .search-input:focus {
  outline: none;
  border-color: var(--color-primary, #004986);
}

.state-hub .filter-bar .filter-select {
  padding: 0.375rem 0.625rem;
  border: 1px solid var(--color-border-medium, #d1d5db);
  border-radius: 4px;
  font-size: 0.875rem;
  background-color: var(--color-bg-primary, #ffffff);
  cursor: pointer;
  width: auto;
  flex-shrink: 0;
}

.state-hub .filter-bar .filter-select:focus {
  outline: none;
  border-color: var(--color-primary, #004986);
}

.state-hub .filter-bar .reset-filters-btn {
  padding: 0.375rem 0.875rem;
  color: #6b7280 !important;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #d1d5db !important;
  border-radius: 4px !important;
  background-color: #ffffff !important;
  transition: all 0.2s;
  display: none;
  box-shadow: none !important;
}

.state-hub .filter-bar .reset-filters-btn.visible {
  display: inline-block;
}

.state-hub .filter-bar .reset-filters-btn:hover {
  color: #1a1a1a !important;
  border-color: #6b7280 !important;
  background-color: #ffffff !important;
}

.state-hub .filter-bar .results-count {
  margin-left: auto;
  font-size: 0.875rem;
  color: var(--color-text-secondary, #6b7280);
  white-space: nowrap;
  padding-left: 0.5rem;
}

/* Filter Bar Freshness */
.state-hub .filter-bar-freshness {
  font-size: 0.8rem;
  color: var(--color-text-secondary, #6b7280);
  margin-top: 0.5rem;
  text-align: right;
}


/* ============================================
   TAB CONTENT & GAME CARD GRID
   ============================================ */

.state-hub .tab-content {
  margin-bottom: 2rem;
}

.state-hub .tab-content .games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.state-hub .tab-content .no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-text-secondary, #6b7280);
}

.state-hub .tab-content .no-results p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.state-hub .tab-content .no-results a {
  color: var(--color-primary, #004986);
  text-decoration: underline;
  cursor: pointer;
}

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

/* Game Card Image */
.state-hub .game-card .game-card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
}

.state-hub .game-card .game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--color-bg-tertiary, #e9ecef);
  border: 1px solid var(--color-border-light, #e0e0e0);
  border-radius: 8px;
}

.state-hub .game-card .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary, #004986) 0%, #003d6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.state-hub .game-card .price-display {
  color: var(--color-primary-contrast, #ffffff);
  font-size: 3rem;
  font-weight: bold;
}

.state-hub .game-card {
  background-color: var(--color-bg-secondary, #f8f9fa);
  border: 1px solid var(--color-border-light, #e0e0e0);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.state-hub .game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.state-hub .game-card .game-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.state-hub .game-card .game-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0;
  flex: 1;
  line-height: 1.3;
}

.state-hub .game-card .game-card-title a {
  color: inherit;
  text-decoration: none;
}

.state-hub .game-card .game-card-title a:hover {
  color: var(--color-primary, #004986);
}

.state-hub .game-card .price-badge {
  background-color: var(--color-primary, #004986);
  color: var(--color-primary-contrast, #ffffff);
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.state-hub .game-card .game-card-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.state-hub .game-card .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.state-hub .game-card .stat-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary, #6b7280);
}

.state-hub .game-card .stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
}

.state-hub .game-card .game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border-light, #e0e0e0);
}

.state-hub .game-card .game-card-footer--actions-only {
  justify-content: flex-end;
}

.state-hub .game-card .footer-stat {
  text-align: center;
}

.state-hub .game-card .footer-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.state-hub .game-card .sp-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--color-text-secondary, #6b7280);
  transition: color 0.15s;
  line-height: 1;
  white-space: nowrap;
}
.state-hub .game-card .sp-card-action:hover {
  color: var(--color-text-primary, #1a1a1a);
}
.state-hub .game-card .sp-card-action-icon {
  font-size: 1.1rem;
  line-height: 1;
}
.state-hub .game-card .sp-card-action-label {
  font-size: 0.7rem;
  font-weight: 500;
}
.state-hub .game-card .sp-card-heart.sp-saved {
  color: #ef4444;
}
.state-hub .game-card .sp-card-heart:hover {
  color: #f87171;
}
.state-hub .game-card .sp-card-compare.sp-selected {
  color: #319B42;
}
.state-hub .game-card .sp-card-compare:hover {
  color: #004986;
}

.state-hub .game-card .footer-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-secondary, #6b7280);
  margin-bottom: 0.25rem;
}

.state-hub .game-card .footer-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary, #1a1a1a);
}

/* ROI colors */
.state-hub .game-card .roi-positive {
  color: #319B42 !important;
}

.state-hub .game-card .roi-negative {
  color: #ef4444 !important;
}

/* Badges */
.state-hub .game-card .top-prize-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: #ef4444;
  color: var(--color-primary-contrast, #ffffff);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.state-hub .game-card .game-type-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.state-hub .game-card .badge-fast-cash {
  background-color: #fef3c7;
  color: #92400e;
}

.state-hub .game-card .badge-pull-tab {
  background-color: #dbeafe;
  color: #1e40af;
}

.state-hub .game-card .badge-scratcher {
  background-color: #d1fae5;
  color: #065f46;
}


/* ============================================
   LOAD MORE BUTTON
   ============================================ */

.state-hub .load-more-btn {
  display: block;
  width: auto;
  max-width: 300px;
  margin: 1.5rem auto 0;
  padding: 0.75rem 2rem;
  background-color: #004986 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
  box-shadow: none !important;
}

.state-hub .load-more-btn:hover {
  background-color: #003d6e !important;
}

.state-hub .load-more-btn.hidden {
  display: none;
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */

.state-hub .seo-content {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light, #e0e0e0);
}

.state-hub .seo-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary, #1a1a1a);
  margin: 2rem 0 0.75rem 0;
}

.state-hub .seo-content h2:first-child {
  margin-top: 0;
}

.state-hub .seo-content p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.state-hub .seo-content ul,
.state-hub .seo-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem 0;
}

.state-hub .seo-content li {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.state-hub .seo-content strong {
  color: var(--color-text-primary, #1a1a1a);
}

.state-hub .seo-content .insights-list {
  list-style: none;
  padding: 0;
}

.state-hub .seo-content .insights-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border-light, #e0e0e0);
  font-size: 1rem;
}

.state-hub .seo-content .insights-list li:last-child {
  border-bottom: none;
}

/* FAQ within SEO content */
.state-hub .seo-content .faq-item {
  margin-bottom: 1.25rem;
}

.state-hub .seo-content .faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0 0 0.375rem 0;
}

.state-hub .seo-content .faq-item p {
  margin: 0;
}

/* ============================================
   DISCLAIMER
   ============================================ */

.state-hub .disclaimer-section {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background-color: #fffbeb;
  border-left: 4px solid var(--color-warning, #f59e0b);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--color-text-secondary, #6b7280);
  line-height: 1.6;
}

.state-hub .disclaimer-section .game-disclaimer p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary, #6b7280);
}

.state-hub .disclaimer-section .game-disclaimer strong {
  color: var(--color-text-primary, #1a1a1a);
}

.state-hub .disclaimer-section a {
  color: var(--color-primary, #004986);
  text-decoration: underline;
}

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

.state-hub .toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.state-hub .toast-notification.show {
  animation: toast-fade 3s ease-in-out forwards;
}

@keyframes toast-fade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(100%);
  }
  10% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(100%);
  }
}


/* ============================================
   RESPONSIVE: TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
  .state-hub .tab-content .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE: MOBILE (max-width: 921px)
   Astra theme uses 921px as its mobile breakpoint.
   We MUST match it, otherwise Astra applies mobile
   button resets while our desktop styles still apply,
   causing the circular breakage we kept hitting.
   ============================================ */

@media (max-width: 921px) {
  .state-hub {
    padding: 1rem 0.5rem;
  }

  /* Header */
  .state-hub .state-hub-header h1 {
    font-size: 1.75rem;
  }

  .state-hub .state-hub-header .intro-text {
    font-size: 1rem;
  }

  /* Quick Picks: stack columns vertically with dividers.
     !important overrides the inline grid-template-columns
     set by PHP (e.g. repeat(3,1fr)). */
  .state-hub .quick-picks-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .state-hub .quick-picks-column {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .state-hub .quick-picks-column:first-child {
    padding-top: 0;
  }

  .state-hub .quick-picks-column:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .state-hub .quick-picks-column h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .state-hub .quick-picks-card .qp-card-image {
    width: 50px;
    height: 50px;
  }

  /* Tab bar: wrap onto multiple lines on mobile */
  .state-hub .tab-bar {
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 0.375rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

  .state-hub .tab-bar .tab-btn {
    padding: 0.375rem 0.75rem !important;
    font-size: 0.8125rem !important;
    white-space: normal !important;
    text-align: center;
    min-width: 0 !important;
  }

  /* Filter bar: wrap controls with spacing */
  .state-hub .filter-bar {
    margin-bottom: 1.25rem;
  }

  .state-hub .filter-bar .filter-bar-controls {
    flex-wrap: wrap;
  }

  .state-hub .filter-bar .search-input {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .state-hub .filter-bar .filter-select {
    flex: 1;
    min-width: 0;
  }

  .state-hub .filter-bar .reset-filters-btn {
    flex: 0 0 auto;
  }

  .state-hub .filter-bar .results-count {
    flex: 1 1 100%;
    margin-left: 0;
    text-align: center;
    padding-left: 0;
    padding-top: 0.5rem;
  }

  .state-hub .filter-bar-freshness {
    text-align: center;
  }

  /* Game grid: single column */
  .state-hub .tab-content .games-grid {
    grid-template-columns: 1fr;
  }

  /* Keep game card images visible on mobile */
  .state-hub .game-card .game-card-image {
    height: 180px;
  }

  .state-hub .game-card .game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .state-hub .game-card .image-placeholder {
    display: flex;
  }

  .state-hub .game-card .price-display {
    font-size: 2.5rem;
  }

  /* Game card header stacks on mobile */
  .state-hub .game-card .game-card-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .state-hub .game-card .price-badge {
    align-self: flex-start;
  }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
  .state-hub .state-hub-header h1 {
    font-size: 1.5rem;
  }

  .state-hub .quick-picks-card {
    min-height: auto;
  }

  .state-hub .game-card .top-prize-badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }

  .state-hub .toast-notification {
    left: 1rem;
    right: 1rem;
    transform: translateX(0) translateY(100%);
    text-align: center;
  }

  .state-hub .toast-notification.show {
    animation: toast-fade-mobile 3s ease-in-out forwards;
  }

  @keyframes toast-fade-mobile {
    0% {
      opacity: 0;
      transform: translateX(0) translateY(100%);
    }
    10% {
      opacity: 1;
      transform: translateX(0) translateY(0);
    }
    80% {
      opacity: 1;
      transform: translateX(0) translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateX(0) translateY(100%);
    }
  }
}
