/* Page layout: fixed header, centered column, components — min width 320px */

:root {
  --color-bg: #0f1419;
  --color-surface: #161d27;
  --color-border: #2a3444;
  --color-text: #e8eef7;
  --color-muted: #9aa7ba;
  --color-accent: #5b8cff;
  --color-accent-soft: rgba(91, 140, 255, 0.18);
  --color-pro: #3dd68c;
  --color-con: #ff7b7b;
  --container: 910px;
  --hero-title: 1175px;
  --header-h: 64px;
  --radius: 10px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 8px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section__intro {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  max-width: 65ch;
}

.card-surface {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(15, 20, 25, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.site-header__logo {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header__logo:hover {
  color: var(--color-accent);
}

.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-header__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__list a {
  display: inline-block;
  padding: 6px 8px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.site-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.08);
}

/* Login hidden 320–379px */
@media (max-width: 379px) {
  .site-header__login {
    display: none;
  }
}

@media (min-width: 380px) {
  .site-header__login {
    display: inline-flex;
  }
}

@media (max-width: 639px) {
  .site-header__inner {
    flex-wrap: wrap;
    height: auto;
    min-height: var(--header-h);
    padding-block: 10px;
  }

  .site-header__nav {
    order: 3;
    flex-basis: 100%;
  }

  .site-header__list {
    justify-content: flex-start;
  }

  body {
    padding-top: calc(var(--header-h) + 40px);
  }
}

@media (max-width: 379px) {
  body {
    padding-top: calc(var(--header-h) + 48px);
  }
}

/* ——— Hero ——— */
.hero {
  padding-block: clamp(2rem, 5vw, 3.25rem);
}

.hero__title-wrap {
  max-width: var(--hero-title);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.hero__title {
  margin: 0 auto 1rem;
  text-align: center;
  font-size: clamp(1.75rem, 5vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__lead.container {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-muted);
}

/* ——— Media full width inside container ——— */
.media-wide {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, #1a2535, #141b24);
}

.media-wide__inner {
  aspect-ratio: 21 / 9;
  display: grid;
  place-items: center;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.media-wide img,
.media-wide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Tables ——— */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.table th {
  font-weight: 600;
  color: var(--color-text);
  background: rgba(91, 140, 255, 0.08);
}

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

.table-caption-above {
  caption-side: top;
  padding: 0 0 0.75rem;
  font-weight: 600;
}

.table-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ——— Pros / cons grid ——— */
.procon {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-block: 1rem 1.25rem;
}

@media (max-width: 640px) {
  .procon {
    grid-template-columns: 1fr;
  }
}

.procon__block {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
}

.procon__title {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.procon__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text);
}

.procon--pro .procon__title {
  color: var(--color-pro);
}

.procon--con .procon__title {
  color: var(--color-con);
}

/* ——— Panels / subs ——— */
.subsection {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection__title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.figure-center {
  max-width: min(560px, 100%);
  margin: 1.5rem auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #111824;
}

.figure-center figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.figure-center .media-placeholder {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ——— Steps ——— */
.steps-list {
  margin: 1rem 0 1rem;
  padding-left: 1.35rem;
  max-width: 65ch;
}

.steps-list li {
  margin-bottom: 0.5rem;
}

.section-outro {
  margin: 1.25rem 0 0;
  color: var(--color-muted);
  max-width: 65ch;
}

.u-mt-md {
  margin-top: 1.5rem;
}

.u-mt-sm {
  margin-top: 1rem;
}

.u-mt-lg {
  margin-top: 1.35rem;
}

/* ——— Card grid ——— */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.card-tile {
  padding: 1rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.85rem;
  min-height: 88px;
  display: flex;
  align-items: flex-end;
}

.card-tile__label {
  font-weight: 600;
  margin: 0;
}

.bullet-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-muted);
}

/* ——— FAQ details accordion ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-muted);
  border-bottom: 2px solid var(--color-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item__answer {
  padding: 0 16px 16px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding-block: 1.25rem 1.75rem;
  background: rgba(12, 16, 22, 0.95);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  padding-inline: clamp(16px, 4vw, 24px);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 0.88rem;
}

.site-footer__links a {
  color: var(--color-text);
  text-decoration: none;
}

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

/* ==== Cowboyspin redesign overrides ==== */
:root {
  --cb-bg-1: #040d09;
  --cb-bg-2: #0b1b14;
  --cb-panel: #13231b;
  --cb-panel-2: #1a2c22;
  --cb-border: #284233;
  --cb-text: #e8f0eb;
  --cb-muted: #9cb2a6;
  --cb-yellow: #f2d545;
  --cb-yellow-strong: #ffe35c;
  --cb-green: #2ea82a;
  --cb-glow: 0 12px 45px rgba(0, 0, 0, 0.42);
}

html {
  scroll-padding-top: 90px;
}

body.cb-page {
  min-width: 320px;
  padding-top: 0;
  background:
    radial-gradient(1000px 460px at 86% 8%, rgba(240, 193, 54, 0.18), transparent 56%),
    radial-gradient(760px 420px at 5% 25%, rgba(59, 111, 76, 0.16), transparent 58%),
    linear-gradient(180deg, var(--cb-bg-1) 0%, var(--cb-bg-2) 100%);
  color: var(--cb-text);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
}

a {
  text-decoration: none;
}

.site-header-wrap {
  background: rgba(5, 15, 11, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

.cb-header-brand {
  flex: 1 1 auto;
  min-width: 0;
}

.cb-auth-actions {
  flex: 0 0 auto;
  white-space: nowrap;
}

.cb-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 8px 14px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  transition: 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.cb-auth-btn--login {
  background: rgba(35, 51, 42, 0.85);
  color: #f1f6f3;
  border-color: var(--cb-border);
}

.cb-auth-btn--signup {
  background: linear-gradient(180deg, var(--cb-yellow-strong) 0%, var(--cb-yellow) 100%);
  color: #242116;
  border-color: rgba(99, 81, 21, 0.35);
}

.cb-auth-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.site-header-wrap > div a img,
.cb-footer img {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.32));
}

.cb-burger,
.cb-menu-close {
  border: 1px solid var(--cb-border);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 50, 40, 0.6);
}

.cb-main {
  width: 100%;
  max-width: 910px;
  margin-inline: auto;
}

.cb-main section {
  scroll-margin-top: 90px;
}

.cb-main .section {
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}

.cb-main .section__title {
  font-family: "Teko", "Manrope", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--cb-text);
}

.cb-main .section p,
.cb-main .section-outro,
.cb-main .faq-item__answer {
  color: var(--cb-muted);
  max-width: 65ch;
}

.cb-main .subsection__title {
  color: var(--cb-text);
  font-family: "Teko", "Manrope", sans-serif;
}

.cb-main .table-wrap {
  margin-top: 0.75rem;
}

.cb-main .table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.cb-main .table th,
.cb-main .table td {
  border: 1px solid var(--cb-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.cb-main .table th {
  background: rgba(26, 43, 34, 0.85);
  color: var(--cb-text);
}

.cb-main .procon__block {
  border: 1px solid var(--cb-border);
  border-radius: 14px;
  background: rgba(19, 35, 28, 0.75);
}

.cb-main a {
  color: var(--cb-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cb-main a:hover {
  color: var(--cb-yellow-strong);
}

.cb-intro h1 {
  font-family: "Teko", "Manrope", sans-serif;
  text-transform: none;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  letter-spacing: 0.01em;
  line-height: 0.96;
  width: calc(100% + 20px);
  max-width: none;
  margin: 0 -10px 1rem;
  transform: none;
  text-wrap: balance;
  text-align: center;
}

.cb-intro p {
  color: var(--cb-muted);
  max-width: 910px;
  font-size: clamp(0.95rem, 1.6vw, 1.02rem);
}

.cb-bonus-banner {
  background:
    linear-gradient(116deg, rgba(31, 45, 38, 0.98) 0%, rgba(27, 38, 31, 0.95) 52%, rgba(17, 28, 22, 0.96) 100%);
  border: 1px solid var(--cb-border);
  box-shadow: var(--cb-glow);
}

.cb-bonus-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px 180px at 12% 40%, rgba(240, 167, 38, 0.2), transparent 65%),
    radial-gradient(340px 200px at 86% 50%, rgba(245, 219, 83, 0.22), transparent 64%);
  pointer-events: none;
}

.cb-bonus-banner .z-20 {
  max-width: 100%;
}

.cb-bonus-banner button,
.cb-bonus-banner a.bg-cb-yellow,
.cb-experience button {
  background: linear-gradient(180deg, var(--cb-yellow-strong) 0%, var(--cb-yellow) 100%);
  border: 1px solid rgba(85, 67, 4, 0.34);
  color: #000;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(226, 193, 59, 0.28);
}

.cb-bonus-banner button:hover,
.cb-bonus-banner a.bg-cb-yellow:hover,
.cb-experience button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cb-bonus-banner h2 {
  font-family: "Teko", "Manrope", sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.cb-bonus-banner .text-4xl.md\:text-6xl {
  text-shadow: 0 0 26px rgba(255, 222, 100, 0.25);
}

.cb-payments {
  padding: 16px 20px;
  border: 1px solid var(--cb-border);
  border-radius: 18px;
  background: rgba(11, 27, 21, 0.75);
  backdrop-filter: blur(4px);
}

.cb-payments span {
  font-size: clamp(0.86rem, 2.2vw, 1.08rem);
}

.cb-experience h2 {
  font-family: "Teko", "Manrope", sans-serif;
  font-size: clamp(2rem, 4.3vw, 3rem);
  line-height: 1;
  margin-bottom: 18px;
}

.cb-experience p {
  color: var(--cb-muted);
}

.cb-experience .text-\[150px\],
.cb-experience .text-\[100px\] {
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.cb-features > div {
  background: linear-gradient(155deg, rgba(26, 43, 34, 0.96) 0%, rgba(19, 35, 28, 0.95) 100%);
  border: 1px solid var(--cb-border);
  box-shadow: var(--cb-glow);
}

.cb-features h3 {
  font-size: 1.42rem;
  font-family: "Teko", "Manrope", sans-serif;
  line-height: 1;
  letter-spacing: 0.02em;
}

.cb-features p {
  color: var(--cb-muted);
}

.cb-footer {
  border-top: 1px solid var(--cb-border);
  background: linear-gradient(180deg, rgba(4, 13, 9, 0.96) 0%, rgba(6, 20, 14, 1) 100%);
}

.cb-footer a {
  color: var(--cb-muted);
}

.cb-footer a:hover {
  color: var(--cb-yellow);
}

.cb-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 6, 0.66);
  z-index: 60;
}

.cb-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(92vw, 400px);
  height: 100vh;
  z-index: 70;
  background: linear-gradient(180deg, #0a1712 0%, #10231a 100%);
  border-right: 1px solid var(--cb-border);
  box-shadow: 14px 0 40px rgba(0, 0, 0, 0.45);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cb-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cb-mobile-menu__nav {
  display: grid;
  gap: 8px;
}

.cb-mobile-menu__nav a {
  border-radius: 14px;
  border: 1px solid var(--cb-border);
  background: rgba(37, 58, 48, 0.62);
  color: var(--cb-text);
  padding: 14px 16px;
  font-weight: 700;
}

.cb-support-pill {
  margin-top: auto;
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #30ae2e 0%, #268c25 100%);
  color: #eefde8;
  font-size: 1.42rem;
  font-family: "Teko", "Manrope", sans-serif;
  letter-spacing: 0.02em;
}

body.cb-menu-open {
  overflow: hidden;
}

/* ——— Language switcher ——— */
.lang-switcher {
  position: relative;
  flex: 0 0 auto;
}

.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid var(--cb-border);
  background: rgba(31, 50, 40, 0.72);
  color: var(--cb-text);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lang-switcher__toggle:hover,
.lang-switcher__toggle:focus-visible {
  border-color: rgba(245, 219, 83, 0.45);
  background: rgba(37, 58, 48, 0.88);
  box-shadow: 0 0 0 1px rgba(245, 219, 83, 0.18);
}

.lang-switcher__flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.lang-switcher__code {
  letter-spacing: 0.04em;
}

.lang-switcher__chevron {
  display: inline-flex;
  opacity: 0.72;
  transition: transform 0.2s ease;
}

.lang-switcher[data-open="true"] .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 188px;
  max-height: min(60vh, 320px);
  overflow-y: auto;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--cb-border);
  background: linear-gradient(180deg, rgba(14, 28, 22, 0.98) 0%, rgba(10, 23, 18, 0.99) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 219, 83, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 219, 83, 0.35) transparent;
}

.lang-switcher[data-open="true"] .lang-switcher__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--cb-text);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.lang-switcher__option:hover {
  background: linear-gradient(90deg, rgba(245, 219, 83, 0.12) 0%, rgba(37, 58, 48, 0.85) 100%);
  border-color: rgba(245, 219, 83, 0.22);
}

.lang-switcher__option[aria-current="true"] {
  background: linear-gradient(90deg, rgba(245, 219, 83, 0.2) 0%, rgba(37, 58, 48, 0.92) 100%);
  border-color: rgba(245, 219, 83, 0.55);
  box-shadow: 0 0 14px rgba(245, 219, 83, 0.18);
}

.lang-switcher__label {
  white-space: nowrap;
}

@media (max-width: 400px) {
  .lang-switcher__code {
    display: none;
  }

  .lang-switcher__toggle {
    padding: 6px 8px;
    gap: 4px;
  }
}

@media (min-width: 401px) {
  .lang-switcher__code {
    display: inline;
  }
}

@media (min-width: 768px) {
  .cb-burger,
  .cb-mobile-menu,
  .cb-menu-overlay {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .site-header-wrap {
    padding: 10px 12px;
    gap: 8px;
  }

  .cb-header-brand {
    gap: 8px;
  }

  .cb-header-brand a img {
    height: 34px;
    width: auto;
  }

  .cb-auth-actions {
    gap: 6px;
  }

  .cb-auth-btn {
    padding: 8px 11px;
    font-size: 0.84rem;
  }

  .cb-main {
    max-width: 100%;
    padding-inline: 14px;
  }

  .cb-intro h1 {
    width: calc(100% + 20px);
    margin: 0 -10px 1rem;
    max-width: none;
    font-size: clamp(1.85rem, 9vw, 2.65rem);
    text-align: center;
  }

  .cb-auth-btn--login {
    display: none;
  }

  .cb-bonus-banner .z-20 {
    padding: 20px 16px;
  }

  .cb-bonus-banner .text-lg.md\:text-2xl {
    font-size: 1.12rem;
    line-height: 1.2;
  }

  .cb-payments {
    gap: 14px;
    justify-content: flex-start;
  }

  .cb-payments span {
    font-size: 0.82rem;
  }

  .cb-experience {
    gap: 24px;
  }

  .cb-experience .min-h-\[300px\] {
    min-height: 220px;
  }

  .cb-features {
    gap: 14px;
  }

  .cb-features > div {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .cb-footer {
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .cb-footer > div {
    gap: 24px;
  }
}

@media (min-width: 381px) and (max-width: 767px) {
  .cb-auth-btn--login {
    display: inline-flex;
  }
}
