/* Rockstar Casino — Global Design System & Lobby UI Kit */
:root {
  --bg: #0d0814;
  --surface: #160f24;
  --surface-2: #1e1531;
  --surface-3: #281c42;
  --border: #2c1e4a;
  --border-light: #3e2b68;
  --text: #ffffff;
  --muted: #a5a0b8;
  --accent: #ff1493;
  --accent-hover: #ff33a6;
  --accent-glow: rgba(255, 20, 147, 0.25);
  --login-fill: #4b2d7e;
  --login-hover: #5d389b;
  --success: #10b981;
  --warning: #f59e0b;
  --radius: 6px;
  --radius-lg: 10px;
  --header-h: 68px;
  --container: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition: 0.2s ease;
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

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

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 10000;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(13, 8, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 42px;
  padding: 0 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 16px var(--accent-glow);
}

.btn-secondary {
  background-color: var(--login-fill);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
  background-color: var(--login-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn-outline:hover {
  background-color: var(--surface-2);
  border-color: var(--accent);
  color: var(--text);
}

.btn-lg {
  height: 48px;
  padding: 0 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Hamburger & Mobile Menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 8, 20, 0.98);
  z-index: 999;
  padding: 1.5rem 1.25rem;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}

.mobile-menu-overlay.open {
  display: flex;
}

.mobile-menu-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

/* Sticky Mobile Bottom Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(13, 8, 20, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 1000;
  padding: 0 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-sticky-bar .btn {
  flex: 1;
  height: 40px;
  font-size: 0.875rem;
}

/* Hero Section (Full-Bleed) */
.hero {
  position: relative;
  background-color: var(--surface);
  background-image: linear-gradient(180deg, rgba(13, 8, 20, 0.6) 0%, rgba(13, 8, 20, 0.9) 100%), url(/media/banner.webp);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 780px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Inner Page Hero */
.page-hero {
  background-color: var(--surface);
  background-image: radial-gradient(circle at 50% 0%, rgba(75, 45, 126, 0.3) 0%, rgba(13, 8, 20, 0.95) 70%);
  padding: 2.75rem 0 2.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.page-hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.page-hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 720px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs-sep {
  opacity: 0.5;
}

/* Main Content Area */
.lobby-body {
  padding: 2rem 0 4rem;
  flex: 1;
}

.content-flow > * + * {
  margin-top: 2.25rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  color: #d1cddb;
  margin-bottom: 1rem;
  line-height: 1.65;
}

p:last-child {
  margin-bottom: 0;
}

/* Section Header */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin-bottom: 0;
}

.link-more {
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.link-more:hover {
  color: var(--accent);
}

/* Games Tabs */
.tabs-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  scrollbar-width: thin;
}

.tab-btn {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.tab-btn:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-light);
}

.tab-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

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

.game-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 12px var(--accent-glow);
}

.game-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  overflow: hidden;
}

.game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-thumb {
  transform: scale(1.05);
}

.game-card-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--muted);
  background: var(--surface-2);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 8, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.play-badge {
  background: var(--accent);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.game-info {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--surface);
  flex: 1;
}

.game-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Tables */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-top: 0.75rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
}

.data-table th,
.data-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--surface-2);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.data-table td:first-child {
  font-weight: 500;
  color: #ffffff;
}

.data-table td {
  color: #d1cddb;
}

/* Badges / Chips */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  background: var(--surface-3);
  color: var(--text);
}
.badge-accent {
  background: rgba(255, 20, 147, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 20, 147, 0.3);
}
.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Strips (Providers, Payments) */
.strip-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.strip-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  transition: border-color var(--transition), background-color var(--transition);
}

.strip-item:hover {
  border-color: var(--border-light);
  background: var(--surface-2);
}

.strip-item img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(20%) brightness(95%);
  transition: filter var(--transition);
}

.strip-item:hover img {
  filter: grayscale(0%) brightness(100%);
}

.strip-item-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

/* Steps List (How-to) */
.steps-list {
  list-style: none;
  counter-reset: steps-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.step-item {
  counter-increment: steps-counter;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--surface-3);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Editorial Article (homepage_article / inner_page_articles) */
.editorial-prose {
  margin-top: 2rem;
}

.editorial-prose section {
  margin-bottom: 2rem;
}

.editorial-prose h2 {
  font-size: 1.375rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.editorial-prose p {
  color: #d1cddb;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Bonuses Cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--login-fill));
}

.bonus-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px var(--accent-glow);
}

.bonus-tag {
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.bonus-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bonus-terms {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-light);
}

.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
  content: '−';
  color: var(--accent);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: #d1cddb;
  line-height: 1.65;
}

/* Forms */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 640px;
  margin-top: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Info Grid (Contact / Support) */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.info-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Soft Page End CTA */
.page-end-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.page-end-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-end-cta p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* 404 Page */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.25rem;
  flex: 1;
}

.error-code {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 24px var(--accent-glow);
}

.error-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.error-desc {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #08040d;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-nav a:hover {
  color: var(--text);
}

.footer-trust {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
}

.trust-logo-link,
.trust-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%) opacity(0.85);
  transition: filter var(--transition);
}

.trust-logo-link:hover .trust-logo-img {
  filter: grayscale(0%) opacity(1);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.responsible-note {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  color: #8c879c;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }
  body {
    padding-bottom: 60px; /* Space for sticky bottom bar */
  }
  .header-auth {
    display: none; /* Login & Register move to sticky bottom bar */
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .hero {
    padding: 2.5rem 0 2rem;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .steps-list {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .game-info {
    padding: 0.5rem;
  }
  .game-title {
    font-size: 0.8125rem;
  }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-btn {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition);
}

.lang-btn:hover {
  background: var(--surface-3);
  border-color: var(--border-light);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0.35rem;
  min-width: 110px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  flex-direction: column;
  gap: 0.25rem;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 4px;
  transition: all var(--transition);
}

.lang-option:hover,
.lang-option.active {
  background: var(--surface-3);
  color: var(--text);
}
