/* ===================================
   TRUESELF GAMES - GLOBAL STYLES
   Golden/Silver Gradient Theme
   =================================== */

:root {
  /* Golden Gradient Colors */
  --gold-light: #FFD700;
  --gold-medium: #FFA500;
  --gold-dark: #FF8C00;

  /* Silver Gradient Colors */
  --silver-light: #E8E8E8;
  --silver-medium: #C0C0C0;
  --silver-dark: #A9A9A9;

  /* Dark Theme Colors */
  --bg-dark: #0a0a0a;
  --bg-medium: #1a1a1a;
  --bg-light: #2a2a2a;

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #999999;

  /* Accent Colors */
  --accent-golden: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  --accent-silver: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 50%, #A9A9A9 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

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

html {
  height: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
}

.gradient-text {
  background: var(--accent-golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.gradient-text-silver {
  background: var(--accent-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--accent-golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-golden);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  order: -1;
  /* Move to left on mobile */
}

/* Three-line hamburger icon */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  nav {
    justify-content: center;
    position: relative;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    left: 0;
  }

  .logo {
    text-align: center;
    font-size: 1.25rem;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--bg-dark);
    width: 100%;
    height: calc(100vh - 80px);
    padding: 2rem 1.5rem;
    gap: 0;
    transition: left 0.3s ease;
    border-top: 2px solid var(--gold-light);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  /* Large, touch-friendly nav items */
  .nav-links li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1.25rem 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .nav-links a::after {
    display: none;
  }

  /* Mobile language switcher - large buttons */
  .nav-language-switcher {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0.5rem;
    margin-top: auto;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    justify-content: center;
  }

  .nav-language-switcher .language-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 80px;
  }
}

/* ===================================
   MAIN CONTENT LAYOUT
   =================================== */

main {
  margin-top: 80px;
}

section {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-lg) var(--spacing-md);
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--accent-golden);
  color: var(--bg-dark);
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  margin-bottom: var(--spacing-md);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.hero h1 {
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--accent-golden);
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: var(--accent-silver);
  color: var(--bg-dark);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--gold-light);
}

.btn-outline:hover {
  background: var(--accent-golden);
  color: var(--bg-dark);
  border-color: transparent;
}

/* ===================================
   WAVY DIVIDER
   =================================== */

.wave-divider {
  width: 100%;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23FFD700'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23FFD700'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23FFD700'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
  position: relative;
  margin: 0;
}

.wave-divider-silver {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23C0C0C0'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23C0C0C0'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23C0C0C0'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

/* ===================================
   FEATURE CARDS
   =================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.feature-card {
  background: var(--bg-medium);
  padding: var(--spacing-md);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-golden);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
}

.feature-card ul {
  list-style: none;
  margin-top: var(--spacing-sm);
}

.feature-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.feature-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: bold;
}

/* ===================================
   ALTERNATING SECTIONS
   =================================== */

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--bg-dark);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

@media (max-width: 968px) {
  .split-section {
    grid-template-columns: 1fr;
  }
}

.split-content h2 {
  margin-bottom: var(--spacing-md);
}

.split-content p {
  margin-bottom: var(--spacing-sm);
}

/* ===================================
   FORMS
   =================================== */

.form-group {
  margin-bottom: var(--spacing-md);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-medium);
  border: 2px solid var(--bg-light);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-item {
  background: var(--bg-medium);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-radius: 12px;
  border-left: 4px solid var(--gold-light);
}

.faq-item h3 {
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.faq-item p {
  color: var(--text-light);
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: var(--bg-medium);
  padding: var(--spacing-sm) var(--spacing-md) 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-top: auto;
  margin-bottom: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.footer-content {
  flex: 1;
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  list-style: none;
  margin-top: var(--spacing-xs);
  padding-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    text-align: center;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

/* ===================================
   LANGUAGE PICKER (CodyHouse)
   Adapted for Trueself Games golden theme
   =================================== */

:root {
  --picker-vertical-gap: 4px;
}

/* Hide native select when JS is enabled */
.js-language-picker select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

/* Container */
.language-picker {
  display: inline-block;
  position: relative;
}

.language-picker label {
  display: none;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

/* Icon styling */
.language-picker__icon {
  height: 16px;
  width: 16px;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
}

/* Trigger Button */
.language-picker__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  transition: all 0.2s ease;
  will-change: transform;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5em;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;

  /* Golden theme styling */
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold-light);
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.05),
    0px 1px 3px -1px rgba(0, 0, 0, 0.3);
}

.language-picker__button:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--gold-light);
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.05),
    0px 4px 12px rgba(255, 215, 0, 0.2);
}

.language-picker__button:focus {
  outline: none;
  box-shadow:
    0px 0px 0px 2px var(--bg-dark),
    0px 0px 0px 4px rgba(255, 215, 0, 0.4);
}

.language-picker__button:active {
  transform: translateY(1px);
}

.language-picker__button .language-picker__icon:first-of-type {
  margin-right: 0.375rem;
}

.language-picker__button .language-picker__icon:last-of-type {
  margin-left: 0.375rem;
}

/* Label inside button */
.language-picker__label {
  display: flex;
  align-items: center;
}

.language-picker__label em {
  font-style: normal;
}

/* Dropdown */
.language-picker__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 180px;
  background: var(--bg-medium);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow:
    0 0.9px 1.5px rgba(0, 0, 0, 0.08),
    0 3.1px 5.5px rgba(0, 0, 0, 0.12),
    0 14px 25px rgba(0, 0, 0, 0.2),
    inset 0 0 0.5px 1px rgba(255, 215, 0, 0.05);
  padding: 0.375rem 0;
  border-radius: 0.5em;
  z-index: 1000;
  margin-top: var(--picker-vertical-gap);
  margin-bottom: var(--picker-vertical-gap);

  /* Hidden by default */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.2s, opacity 0.2s;
}

.language-picker__dropdown--right {
  right: 0;
  left: auto;
}

.language-picker__dropdown--up {
  bottom: 100%;
  top: auto;
}

.language-picker__button[aria-expanded="true"]+.language-picker__dropdown {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
}

/* Dropdown list */
.language-picker__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Dropdown items */
.language-picker__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: var(--text-light);
  transition: background 0.2s;
}

.language-picker__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-picker__item:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-light);
}

.language-picker__item:focus {
  outline: none;
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold-light);
}

.language-picker__item[aria-selected="true"] {
  position: relative;
  background: var(--gold-light);
  color: var(--bg-dark);
  font-weight: 600;
}

.language-picker__item[aria-selected="true"]:focus {
  outline: 2px solid rgba(255, 215, 0, 0.3);
}

.language-picker__item[aria-selected="true"]::after {
  content: "";
  height: 16px;
  width: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
  margin-left: auto;
}

/* Flag styling (hidden by default, enable with .language-picker--flags) */
.language-picker__flag {
  display: flex;
  align-items: center;
}

.language-picker__flag::before {
  display: none;
}

/* Footer specific styling */
footer .language-picker {
  margin-top: var(--spacing-md);
}

/* Mobile hamburger menu language picker */
.nav-language-switcher {
  display: none;
  padding: 1.5rem 0.5rem;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
  margin-top: auto;
}

.nav-language-switcher .language-picker__button {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
}

.nav-language-switcher .language-picker__dropdown {
  width: 100%;
}

.nav-language-switcher .language-picker__item {
  padding: 0.875rem 1.25rem;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .nav-language-switcher {
    display: block;
  }

  .language-picker__button {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .language-picker__item {
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
  }
}