/* ══════════════════════════════════════════
   OFFSYNTAX — SHARED STYLES
   ══════════════════════════════════════════ */

@import url('https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.3.2/css/flag-icons.min.css');

:root {
  --accent:         #00D9FF;
  --accent-hover:   #00FFFF;
  --accent-muted:   #33E3FF;
  --accent-glow:    rgba(0, 217, 255, 0.4);
  --accent-subtle:  rgba(0, 217, 255, 0.08);

  --black:          #0A0A0A;
  --dark-1:         #111111;
  --dark-2:         #1A1A1A;
  --dark-3:         #242424;
  --dark-border:    rgba(0, 217, 255, 0.15);

  --white:          #0A0A0A;
  --white-pure:     #111111;
  --light-border:   rgba(0, 217, 255, 0.1);
  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted:     rgba(255, 255, 255, 0.4);
  --text-accent:    #00D9FF;

  /* ── CODE WINDOW (hero) ── */
  --code-bg:        #0D1117;
  --code-border:    rgba(0, 217, 255, 0.2);

  --dark-text-1:    #FFFFFF;
  --dark-text-2:    rgba(255, 255, 255, 0.7);
  --dark-text-3:    rgba(255, 255, 255, 0.4);

  --hero-circle-gradient: radial-gradient(ellipse at center, rgba(0,217,255,0.15) 0%, rgba(0,217,255,0.05) 40%, transparent 70%);
  --cta-glow:        radial-gradient(circle 600px at center, rgba(0,217,255,0.12) 0%, transparent 70%);
  --btn-gradient:    linear-gradient(135deg, #00D9FF 0%, #00FFFF 100%);
  --icon-gradient:   linear-gradient(135deg, #00D9FF 0%, #0099FF 100%);
  --accent-shine:    linear-gradient(90deg, transparent 0%, rgba(0,255,255,0.30) 50%, transparent 100%);
  --neon-glow:       0 0 20px rgba(0,217,255,0.5), 0 0 40px rgba(0,217,255,0.3), 0 0 60px rgba(0,217,255,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0A0A0A;
  color: var(--text-primary);
  overflow-x: hidden;
}
.bebas { font-family: 'Bebas Neue', sans-serif; }

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo {
  height: 9rem;
  width: auto;
  display: block;
  animation: preloader-pulse 2s ease-in-out infinite;
  transform-origin: center;
}
/* Soft float up/down */
@keyframes preloader-float {
  0%, 100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
/* Glow pulse only (logo fixed) */
@keyframes preloader-glow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(0,217,255,0.4)) drop-shadow(0 0 35px rgba(0,217,255,0.2)); }
  50%     { filter: drop-shadow(0 0 25px rgba(0,217,255,0.7)) drop-shadow(0 0 50px rgba(0,217,255,0.35)); }
}
/* Soft fade in/out */
@keyframes preloader-fade {
  0%, 100% { opacity: 0.7; }
  50%     { opacity: 1; }
}
/* Scale pulse */
@keyframes preloader-pulse {
  0%   { transform: scale(0.9);  opacity: 0.8; }
  50%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.9);  opacity: 0.8; }
}
#preloader.exit {
  animation: preloader-exit 0.6s cubic-bezier(0.76,0,0.24,1) forwards;
}
@keyframes preloader-exit {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(-100%); opacity: 1; }
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  z-index: 100;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  background: rgba(10,10,10,0.9);
  border-bottom: 1px solid var(--dark-border);
  transition: all 0.4s ease;
  box-sizing: border-box;
}
nav.scrolled {
  padding: 0.75rem 1.5rem;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(0, 217, 255, 0.25);
  box-shadow: 0 4px 24px rgba(0, 217, 255, 0.1);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-img {
  height: 1.75rem;
  width: auto;
  display: block;
}
.nav-logo-text { display: inline-block; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.6rem;
  background: var(--accent);
  color: #0A0A0A;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px var(--accent-glow);
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.nav-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.nav-icon-btn:hover {
  background: rgba(0, 217, 255, 0.08);
}
.nav-menu-btn {
  display: none;
  color: var(--accent);
}
.nav-menu-btn svg,
.nav-menu-btn .icon-svg {
  color: var(--accent);
  stroke: var(--accent);
}

/* ── SECTION COMMON ── */
.section-label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ── TICKER ── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #111111;
  border-top: 1px solid rgba(0,217,255,0.15);
  border-bottom: 1px solid rgba(0,217,255,0.15);
  padding: 0.875rem 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 1rem 2.5rem;
  background: var(--btn-gradient);
  color: #0A0A0A;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--btn-gradient);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.6), 0 0 60px rgba(0, 217, 255, 0.3);
}
.btn-primary:active {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}
.btn-primary svg { transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1); }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid var(--dark-border);
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-secondary:hover {
  border-color: rgba(0, 217, 255, 0.4);
  background: var(--accent-subtle);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: #111111;
  padding: 5rem 4rem 2.5rem;
  color: var(--text-muted);
  border-top: 1px solid var(--dark-border);
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-img {
  height: 3rem;
  width: auto;
  display: block;
}
.footer-logo-text { display: inline-block; }
.footer-logo span { color: var(--accent); }
.footer-links-group h5 {
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links-group a {
  display: block;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-links-group a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* ── SCROLL ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px) skewY(1deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO LETTER ANIMATION ── */
.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotate(5deg);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.hero-letter.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 10rem 4rem;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: var(--cta-glow);
  pointer-events: none;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: 0.88;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 12rem 4rem 7rem;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s both;
}
.page-hero-bg {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22vw;
  color: rgba(0, 217, 255, 0.05);
  top: 50%; right: -5%;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ── MOBILE MENU (drawer) ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; }
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--dark-1);
  border-left: 1px solid var(--dark-border);
  z-index: 101;
  padding: 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.nav-drawer.open {
  transform: translateX(0);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}
.nav-drawer .nav-links {
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.nav-drawer .nav-links a {
  padding: 0.9rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--dark-border);
}
.nav-drawer .nav-cta { margin-top: 1rem; text-align: center; padding: 0.9rem 1.5rem; }

/* ── LEGAL PAGES (Privacy, Terms, Security) ── */
.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
  list-style: disc;
}
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }
.legal-content .legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.legal-content strong { color: var(--text-primary); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .page-hero { padding: 10rem 2.5rem 5rem; }
}
@media (max-width: 768px) {
  nav { padding: 0.875rem 1.25rem; }
  nav.scrolled { padding: 0.625rem 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { padding: 0.65rem 1.25rem; font-size: 0.75rem; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .nav-menu-btn { display: flex; min-width: 44px; min-height: 44px; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.open { pointer-events: auto; }
  .nav-drawer .nav-links { display: flex; }
  footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .page-hero { padding: 8rem 1.25rem 4rem; }
  .page-hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .page-hero-sub { font-size: 0.95rem; }
  .cta-section { padding: 5rem 1.25rem; }
  .cta-title { font-size: clamp(2.5rem, 10vw, 5rem); }
  .cta-sub { font-size: 0.9rem; }
  .cta-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .cta-btns .btn-primary,
  .cta-btns .btn-secondary { width: 100%; max-width: 280px; justify-content: center; min-height: 48px; }
  .section-label { font-size: 0.65rem; letter-spacing: 0.22em; }
  .btn-primary, .btn-secondary { min-height: 48px; padding: 0.9rem 1.75rem; }
}
@media (max-width: 480px) {
  nav { padding: 0.75rem 1rem; }
  .nav-logo { font-size: 1.35rem; }
  .nav-logo-img { height: 1.5rem; }
  footer { padding: 2.5rem 1rem 1.25rem; }
  .footer-logo { font-size: 2rem; }
  .footer-logo-img { height: 2.5rem; }
  .footer-bottom { font-size: 0.7rem; }
  .page-hero { padding: 7rem 1rem 3rem; }
  .page-hero-bg { font-size: 18vw; right: -10%; }
  .cta-section { padding: 4rem 1rem; }
  .ticker-item { font-size: 0.65rem; padding: 0 1.25rem; }
}

/* ── LANGUAGE SWITCHER (dropdown + flag-icons) ── */
.lang-switcher {
  position: relative;
  margin-right: 0.5rem;
}
.lang-dropdown {
  position: relative;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 217, 255, 0.06);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
  min-width: 120px;
  justify-content: space-between;
}
.lang-trigger:hover {
  color: var(--text-primary);
  background: rgba(0, 217, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.25);
}
.lang-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lang-trigger-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.lang-trigger-text {
  flex: 1;
  text-align: left;
}
.lang-trigger-chevron {
  font-size: 0.55rem;
  opacity: 0.8;
  transition: transform 0.2s ease;
}
.lang-dropdown.lang-open .lang-trigger-chevron {
  transform: rotate(180deg);
}
.lang-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: var(--dark-2);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 8px;
  padding: 0.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.lang-dropdown.lang-open .lang-list {
  display: flex;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}
.lang-option:hover {
  color: var(--text-primary);
  background: rgba(0, 217, 255, 0.08);
}
.lang-option.active {
  color: var(--accent);
  background: rgba(0, 217, 255, 0.12);
}
.lang-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.lang-option-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

/* ── LANGUAGE BUBBLE (bottom-left, flags only) ── */
.lang-bubble-container {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
}
.lang-bubble-wrap {
  position: relative;
}
.lang-bubble-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(0, 217, 255, 0.6);
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(0, 217, 255, 0.4),
    0 0 40px rgba(0, 217, 255, 0.25),
    0 0 60px rgba(0, 217, 255, 0.15);
  transition: all 0.25s ease;
  outline: none;
  overflow: hidden;
}
.lang-bubble-trigger:hover {
  border-color: rgba(0, 217, 255, 0.9);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(0, 217, 255, 0.55),
    0 0 50px rgba(0, 217, 255, 0.35),
    0 0 75px rgba(0, 217, 255, 0.2);
  transform: scale(1.05);
}
.lang-bubble-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
/* Bayrak tam yuvarlağın içini doldurur; hafif aşağı hizalama alttaki boşluğu kapatır */
.lang-bubble-trigger-flag {
  position: absolute;
  inset: 0;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  border-radius: 54%;
  display: block;
  background-size: cover !important;
  background-position: 50% 52% !important;
  background-repeat: no-repeat !important;
  transform: scale(1.2);
}
.lang-bubble-trigger-flag::before {
  content: none !important;
  display: none !important;
}
.lang-bubble-list {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--dark-2);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 217, 255, 0.08);
  border-radius: 12px;
}
.lang-bubble-wrap.lang-open .lang-bubble-list {
  display: flex;
}
.lang-bubble-option {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  overflow: hidden;
}
.lang-bubble-option:hover {
  background: rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.3);
  transform: scale(1.08);
}
.lang-bubble-option.active {
  background: rgba(0, 217, 255, 0.2);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.3);
}
.lang-bubble-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lang-bubble-flag {
  position: absolute;
  inset: 3px;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  border-radius: 50%;
  display: block;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.lang-bubble-flag::before {
  content: none !important;
  display: none !important;
}

/* Hide nav lang switcher (language is in bubble only) */
.lang-switcher {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-lang-desktop {
    display: none;
  }
}
@media (min-width: 769px) {
  .nav-drawer .lang-switcher {
    display: none;
  }
}

/* ── SHARED JS INIT ── */
/* Nav scroll + reveal handled inline per page */
