@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --bg-dark: #051018;
  --bg-card: #0c1a24;
  --bg-card-hover: #142830;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(45, 212, 191, 0.35);
  --border-gold: rgba(232, 163, 23, 0.45);
  --accent-cyan: #2dd4bf;
  --accent-gold: #e8a317;
  --accent-green: #10b981;
  --text-main: #f0f4f8;
  --text-muted: #8ba3b8;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 25px rgba(45, 212, 191, 0.12);
  --shadow-gold: 0 0 25px rgba(232, 163, 23, 0.15);
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--accent-cyan);
  color: #000;
  padding: 10px 16px;
  z-index: 10000;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 10px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Header & Navigation System */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 19, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 10px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .logo-img {
    width: 44px;
    height: 44px;
  }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-tag {
  background: linear-gradient(135deg, var(--accent-gold), #ff8800);
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Burger Button Toggle Icon */
.mobile-burger-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
  transition: all 0.3s ease;
}

@media (min-width: 1025px) {
  .mobile-burger-toggle {
    display: none;
  }
}

.mobile-burger-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--accent-cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-burger-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-burger-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-burger-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Navigation Drawer */
@media (max-width: 1024px) {
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(7, 9, 19, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 16px;
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }

  nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  nav a {
    display: block;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
  }

  nav a.active {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
  }
}

@media (min-width: 1025px) {
  nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }

  nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  nav a:hover, nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--accent-cyan), #00a8ff);
  color: #000;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Top Ticker */
.top-ticker {
  background: #04060d;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ticker-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ticker-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse 1.5s infinite;
}

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

.jackpot-counter {
  color: var(--accent-gold);
  font-weight: 800;
  font-family: var(--font-heading);
}

/* Hero Section */
.hero-ultra {
  position: relative;
  padding: 30px 0 40px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-ultra {
    padding: 60px 0 80px;
  }
}

.hero-glow-bg {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.hero-grid-ultra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid-ultra {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }
}

.hero-badge-ultra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -1px;
}

h1 span {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #fff 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
  line-height: 1.6;
}

.hero-actions-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .hero-actions-group {
    flex-direction: row;
    align-items: center;
  }
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent-gold), #ff9900);
  color: #000;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s ease;
  font-size: 1rem;
}

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

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: #fff;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-size: 0.95rem;
}

.glass-showcase {
  background: rgba(14, 18, 37, 0.7);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-glow);
}

.showcase-poster-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 520px) {
  .showcase-poster-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
  .showcase-poster-wrapper .showcase-table {
    flex: 1;
  }
}

.showcase-game-poster {
  width: 140px;
  height: 209px;
  aspect-ratio: 226 / 338;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .glass-showcase {
    padding: 28px;
  }
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.showcase-title {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

.offer-highlight-box {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 215, 0, 0.1));
  border: 1px dashed var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.offer-huge {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1.2;
}

.offer-spins {
  font-size: 0.95rem;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-top: 4px;
}

.showcase-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.showcase-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.showcase-table td:last-child {
  text-align: right;
  color: #fff;
  font-weight: 700;
}

/* Filter & Search Bar */
.filter-bar-container {
  margin-bottom: 30px;
}

.filter-glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 768px) {
  .filter-glass-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.search-input-wrapper {
  position: relative;
  flex: 1;
}

.search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 12px 16px 12px 42px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-pills::-webkit-scrollbar {
  display: none;
}

.pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.pill-btn.active, .pill-btn:hover {
  background: var(--accent-cyan);
  color: #000;
  border-color: var(--accent-cyan);
}

/* Sections & Typography */
.section {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.context-links-section {
  width: min(100% - 32px, 1200px);
  margin: 56px auto 0;
  padding: 28px;
  background: linear-gradient(135deg, rgba(13, 25, 46, 0.94), rgba(8, 18, 34, 0.94));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.context-links-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.context-links-section > p {
  margin: 0;
  color: var(--text-muted);
}

.context-links-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.context-links-list li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

.context-links-list a {
  color: #fff;
  font-weight: 750;
  text-decoration-color: var(--accent-gold);
  text-underline-offset: 3px;
}

.context-links-list a:hover,
.context-links-list a:focus-visible {
  color: var(--accent-gold);
}

@media (max-width: 700px) {
  .context-links-section {
    width: min(100% - 24px, 1200px);
    padding: 22px 18px;
  }

  .context-links-list {
    grid-template-columns: 1fr;
  }
}

/* Ultra Game Grid Mobile Responsive */
.game-grid-ultra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 576px) {
  .game-grid-ultra {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 992px) {
  .game-grid-ultra {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .game-grid-ultra {
    grid-template-columns: repeat(5, 1fr);
  }
}

.game-card-ultra {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card-ultra:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
}

.poster-box {
  position: relative;
  width: 100%;
  aspect-ratio: 226 / 338;
  overflow: hidden;
  background: #04060d;
}

.poster-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rtp-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(7, 9, 19, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}

.card-overlay-btn {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 19, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 12px;
  z-index: 3;
}

.game-card-ultra:hover .card-overlay-btn {
  opacity: 1;
}

.card-details {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-sub-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Scrollable Tables on Mobile */
.matrix-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 0.9rem;
}

.matrix-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-cyan);
  font-weight: 800;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
}

.matrix-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
}

.pros-cons-grid-ultra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
}

@media (min-width: 768px) {
  .pros-cons-grid-ultra {
    grid-template-columns: 1fr 1fr;
  }
}

.pro-card-ultra {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
}

.con-card-ultra {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(7, 9, 19, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  display: block;
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-bar .btn-hero-primary {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 0.95rem;
}

/* Footer Responsive Layout */
footer {
  background: #04060d;
  border-top: 1px solid var(--border-color);
  padding: 40px 0 30px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-grid-ultra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .footer-grid-ultra {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid-ultra {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-brand p {
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
}

.rg-banner-ultra {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-bottom-flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-flex {
    flex-direction: row;
    text-align: left;
  }
}

/* GEO / Language Dropdown Selector */
.geo-dropdown {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.geo-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.geo-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
}

.geo-arrow {
  font-size: 0.7rem;
  color: var(--accent-gold);
  transition: transform 0.2s ease;
}

.geo-dropdown:hover .geo-arrow,
.geo-dropdown.is-open .geo-arrow,
.geo-dropdown:focus-within .geo-arrow {
  transform: rotate(180deg);
}

.geo-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 4px;
  background: rgba(7, 9, 19, 0.98);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  min-width: 110px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1010;
  padding: 6px;
  flex-direction: column;
  gap: 3px;
}

/* Hover bridge to keep dropdown open during mouse movement */
.geo-dropdown-content::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.geo-dropdown:hover .geo-dropdown-content,
.geo-dropdown.is-open .geo-dropdown-content,
.geo-dropdown:focus-within .geo-dropdown-content {
  display: flex;
}

.geo-option {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.geo-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.geo-option.active {
  background: rgba(255, 215, 0, 0.12);
  color: var(--accent-gold);
  font-weight: 800;
}
