:root {
  --bg: #080a1c;
  --panel: #10132b;
  --panel-2: #151936;
  --line: rgba(255, 255, 255, 0.09);
  --muted: #9aa2be;
  --text: #f7f8ff;
  --teal: #49e1c1;
  --teal-2: #21bfa4;
  --purple: #8f5cff;
  --gold: #f2bd5b;
  --danger: #ff657d;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% -10%, rgba(93, 54, 190, 0.25), transparent 32rem),
    radial-gradient(circle at -10% 25%, rgba(27, 193, 167, 0.1), transparent 28rem),
    var(--bg);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.shell { min-height: 100vh; }
.site-header {
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 28, 0.95);
}
.topbar {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 72px;
  padding: 0 max(22px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  transition: min-height .2s ease, padding .2s ease;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img { display: block; width: 134px; height: auto; transition: width .2s ease; }
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
}
.nav a {
  padding: 10px 13px;
  border-radius: 10px;
  color: #b9bfd5;
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255, 255, 255, 0.07); }
.header-actions { position: relative; display: flex; align-items: center; gap: 10px; }
.language-switcher { position: relative; }
.language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(22, 26, 55, .92), rgba(12, 15, 36, .92));
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.language i {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.language-switcher.open .language i { transform: rotate(225deg) translate(-1px, -1px); }
.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  display: none;
  width: 210px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(73, 225, 193, .2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0, rgba(143, 92, 255, .16), transparent 55%),
    linear-gradient(155deg, #171a38, #0d1027);
  box-shadow: 0 18px 45px rgba(0,0,0,.42), 0 0 24px rgba(73,225,193,.06);
}
.language-switcher.open .language-menu { display: block; }
.language-option {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  color: #e2e4eb;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.language-option:hover { background: rgba(143, 92, 255, .11); }
.language-option.active { color: #fff; background: linear-gradient(90deg, rgba(73,225,193,.17), rgba(143,92,255,.1)); }
.language-option b { color: var(--teal); font-size: 12px; letter-spacing: .04em; }
.language-option span { font-size: 14px; font-weight: 600; }
.language-option:focus-visible { outline: 2px solid var(--teal); outline-offset: -3px; }
.language-menu::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  pointer-events: none;
}
.register, .primary-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  padding: 12px 20px;
  color: #061611;
  background: linear-gradient(115deg, #79f1d7, var(--teal-2), #a98aff, #79f1d7);
  background-size: 260% 100%;
  box-shadow: 0 10px 28px rgba(33, 191, 164, 0.25);
  font-weight: 800;
  cursor: pointer;
  animation: button-gradient 4.5s ease-in-out infinite;
}
.register::after, .primary-button::after, .secondary-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px auto -2px -55%;
  width: 38%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  animation: button-shine 3.8s ease-in-out infinite;
}
.menu-button { display: none; border: 0; background: transparent; font-size: 24px; }

.category-strip {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding: 10px max(22px, calc((100vw - 1440px) / 2));
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  transition: padding .2s ease;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-strip a {
  flex: 0 0 auto;
  padding: 9px 15px;
  color: #a6aec8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: 9px;
  scroll-snap-align: center;
  transition: padding .2s ease, font-size .2s ease, color .2s ease, background .2s ease;
}
.category-strip a:hover, .category-strip a.active { color: var(--teal); background: rgba(73, 225, 193, 0.1); }

.page { width: min(1440px, calc(100% - 44px)); margin: 0 auto; padding: 24px 0 70px; }
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #0a0d25 url("assets/azimut-hero.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 8, 27, 0.98) 0%, rgba(7, 9, 29, 0.85) 35%, rgba(8, 10, 28, 0.05) 70%);
}
.hero-content { position: relative; z-index: 1; width: min(610px, 58%); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
h1, h2, h3 { font-family: Manrope, sans-serif; line-height: 1.08; }
h1 { margin: 0 0 20px; font-size: clamp(40px, 5vw, 72px); letter-spacing: -3px; }
h1 .accent { color: var(--teal); }
.hero p { margin: 0 0 28px; color: #c5cae0; font-size: 17px; max-width: 560px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.secondary-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: linear-gradient(120deg, rgba(255,255,255,.05), rgba(73,225,193,.1), rgba(143,92,255,.11), rgba(255,255,255,.05));
  background-size: 240% 100%;
  font-weight: 700;
  animation: button-gradient 5.5s ease-in-out infinite;
}

@keyframes button-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes button-shine {
  0%, 55% { left: -55%; opacity: 0; }
  65% { opacity: .8; }
  88%, 100% { left: 125%; opacity: 0; }
}

[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
[dir="rtl"] .nav { margin-right: 0; margin-left: auto; }
[dir="rtl"] .language-menu { right: auto; left: 0; }
[dir="rtl"] .language-option { text-align: right; }
[dir="rtl"] .language-option b { direction: ltr; text-align: left; }
[dir="rtl"] .hero::after { transform: scaleX(-1); }
[dir="rtl"] .hero-content, [dir="rtl"] .article-content, [dir="rtl"] .blog-article { text-align: right; }
[dir="rtl"] .eyebrow::before { order: 2; }
[dir="rtl"] .card-link span { transform: scaleX(-1); }
[dir="rtl"] .check-list { padding-right: 0; }
[dir="rtl"] .info-box { border-left: 0; border-right: 3px solid var(--teal); border-radius: 14px 0 0 14px; }

@media (prefers-reduced-motion: reduce) {
  .register, .primary-button, .secondary-button,
  .register::after, .primary-button::after, .secondary-button::after {
    animation: none;
  }
}
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: var(--muted); font-size: 12px; font-weight: 700; }
.trust-row span::before { content: "✓"; color: var(--teal); margin-right: 7px; }

.section { padding: 62px 0 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-heading h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); letter-spacing: -1.5px; }
.section-heading p { max-width: 580px; margin: 0; color: var(--muted); }
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24, 28, 58, 0.95), rgba(13, 16, 38, 0.95));
}
.card:hover { border-color: rgba(73, 225, 193, 0.34); transform: translateY(-2px); transition: 0.2s ease; }
.card h3 { margin: 12px 0 10px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: var(--teal);
  background: rgba(73, 225, 193, 0.1);
  border: 1px solid rgba(73, 225, 193, 0.18);
  font-family: Manrope, sans-serif;
  font-weight: 800;
}
.bonus-card { min-height: 240px; display: flex; flex-direction: column; }
.bonus-card::after {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 92, 255, 0.42), transparent 65%);
}
.bonus-label { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; }
.bonus-value { margin: 8px 0; font: 800 34px/1.05 Manrope, sans-serif; }
.bonus-card .primary-button { align-self: flex-start; margin-top: auto; padding: 10px 15px; font-size: 13px; }
.game-card { min-height: 230px; display: flex; flex-direction: column; justify-content: end; }
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, var(--glow, #6b44d9), transparent 30%),
    linear-gradient(140deg, #202552, #0d102b 70%);
}
.game-card > * { position: relative; }
.game-symbol { position: absolute; top: 20px; right: 22px; font: 800 62px/1 Manrope, sans-serif; color: rgba(255,255,255,.12); }
.game-card small { color: var(--teal); font-weight: 700; }
.card-link { display: flex; justify-content: space-between; margin-top: 18px; color: #d9dded; font-size: 13px; font-weight: 800; }
.card-link span { color: var(--teal); }

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(73,225,193,.22);
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(73,225,193,.11), rgba(143,92,255,.09));
}
.promo-strip div { display: flex; align-items: center; gap: 18px; }
.promo-strip span { color: var(--teal); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; }
.promo-strip strong { font: 800 22px/1.2 Manrope, sans-serif; }

.split-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 480px;
  padding: 0;
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, #121633, #0c0f27);
}
.feature-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  background:
    radial-gradient(circle at 50% 50%, rgba(73,225,193,.2), transparent 28%),
    radial-gradient(circle at 30% 25%, rgba(143,92,255,.42), transparent 35%),
    linear-gradient(145deg, #171b42, #0b0e27);
}
.orb {
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border: 2px solid rgba(73,225,193,.6);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(73,225,193,.04), 0 0 70px rgba(73,225,193,.18), inset 0 0 50px rgba(143,92,255,.25);
}
.orb span { font: 800 54px/1 Manrope, sans-serif; color: var(--teal); }
.feature-copy { align-self: center; padding: 50px; }
.feature-copy h2 { margin: 0 0 16px; font-size: clamp(32px,4vw,50px); }
.feature-copy > p { color: var(--muted); }
.mini-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 28px; }
.mini-grid div { display: grid; grid-template-columns: 38px 1fr; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.03); }
.mini-grid b { grid-row: span 2; color: var(--teal); font-size: 18px; }
.mini-grid strong { font-size: 13px; }
.mini-grid span { color: var(--muted); font-size: 11px; }

.payment-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.payment-grid article { display: flex; flex-direction: column; min-height: 132px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--panel); }
.payment-grid b { margin-bottom: auto; color: var(--teal); font-size: 11px; letter-spacing: .08em; }
.payment-grid strong { font-size: 14px; }
.payment-grid span { color: var(--muted); font-size: 11px; }

.info-sections { display: grid; gap: 18px; }
.detail-row {
  display: grid;
  grid-template-columns: minmax(260px,.75fr) 1.25fr;
  align-items: center;
  gap: 54px;
  min-height: 400px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(21,25,54,.9),rgba(11,14,34,.9));
}
.detail-row.reverse { grid-template-columns: 1.25fr minmax(260px,.75fr); }
.detail-row.reverse .detail-art { order: 2; }
.detail-row h2 { margin: 0 0 15px; font-size: clamp(30px,4vw,48px); }
.detail-row p { color: var(--muted); }
.detail-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(73,225,193,.25), transparent 20%),
    radial-gradient(circle at 60% 30%, rgba(143,92,255,.55), transparent 38%),
    linear-gradient(145deg,#181d49,#0a0d26);
}
.detail-art::before, .detail-art::after { content:""; position:absolute; width:190px; height:190px; border:1px solid rgba(255,255,255,.12); border-radius:50%; }
.detail-art::after { width:250px; height:250px; border-color:rgba(73,225,193,.12); }
.detail-art span { position:relative; z-index:1; font:800 76px/1 Manrope,sans-serif; color:rgba(255,255,255,.18); }
.check-list { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li { color: #d5daec; }
.check-list li::before { content:"✓"; display:inline-grid; place-items:center; width:22px; height:22px; margin-right:10px; border-radius:50%; color:#071a15; background:var(--teal); font-size:12px; font-weight:900; }

.provider-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.provider-grid div { display:flex; align-items:center; gap:14px; min-height:82px; padding:16px; border:1px solid var(--line); border-radius:14px; background:rgba(16,19,43,.72); font:700 14px Manrope,sans-serif; }
.provider-grid span { color:var(--teal); font-size:11px; }
.vip-banner { margin-top: 62px;display:flex; align-items:center; justify-content:space-between; gap:30px; padding:44px; border:1px solid rgba(143,92,255,.3); border-radius:22px; background:radial-gradient(circle at 80% 10%,rgba(143,92,255,.36),transparent 20rem),linear-gradient(135deg,#181535,#0d1029); }
.vip-banner h2 { margin:0 0 10px; font-size:clamp(32px,4vw,50px); }
.vip-banner p { max-width:760px; margin:0; color:var(--muted); }
.vip-banner .primary-button { flex:0 0 auto; }

.faq-list { display:grid; gap:10px; width:100%; }
.faq-list details { border:1px solid var(--line); border-radius:14px; background:rgba(16,19,43,.75); }
.faq-list summary { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:20px 22px; cursor:pointer; list-style:none; font-weight:800; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary span { color:var(--teal); font-size:24px; transition:.2s; }
.faq-list details[open] summary span { transform:rotate(45deg); }
.faq-list details p { margin:0; padding:0 22px 22px; color:var(--muted); }
.overview-grid { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--line); border-radius:18px; overflow:hidden; }
.overview-grid div { display:flex; flex-direction:column; gap:6px; padding:22px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:rgba(16,19,43,.65); }
.overview-grid span { color:var(--muted); font-size:12px; }
.overview-grid strong { font-size:14px; }
.pros-cons { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.pros-cons article { padding:26px; border:1px solid var(--line); border-radius:18px; background:var(--panel); }
.pros-cons h3 { margin-top:0; font-size:24px; }
.pros-cons p { color:#c4c9da; }
.positive::before, .negative::before { display:inline-grid; place-items:center; width:21px; height:21px; margin-right:10px; border-radius:50%; font-size:11px; font-weight:900; }
.positive::before { content:"✓"; color:#062019; background:var(--teal); }
.negative::before { content:"!"; color:#260a10; background:var(--danger); }

.article-hero {
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 20%, rgba(143, 92, 255, 0.36), transparent 26rem),
    linear-gradient(135deg, #141832, #0c0f27);
}
/* Blog article hero with background image */
.article-hero.has-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #141832, #0c0f27);
  border-color: rgba(110, 72, 232, 0.35);
}
/* The actual photo — right half of hero */
.blog-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Gradient overlay: solid left → transparent right, covering the image */
.article-hero.has-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0d1028 0%,
    #0d1028 36%,
    rgba(13,16,40,0.88) 52%,
    rgba(13,16,40,0.40) 68%,
    rgba(13,16,40,0.05) 100%
  );
  pointer-events: none;
}
.blog-hero-content { position: relative; z-index: 1; max-width: 60%; }
.article-hero h1 { max-width: 900px; font-size: clamp(42px, 6vw, 74px); }
.article-hero p { max-width: 750px; margin: 0; color: #bdc3da; font-size: 17px; }
.article-meta { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.article-meta span { padding:7px 11px; border:1px solid var(--line); border-radius:8px; color:#b9bfd5; background:rgba(255,255,255,.035); font-size:11px; font-weight:700; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 30px; align-items: start; padding-top: 34px; }
.article-content { min-width: 0; padding: 14px 0; }
.article-content section { position:relative; min-width:0; scroll-margin-top: 110px; margin-bottom:18px; padding:30px; border:1px solid var(--line); border-radius:18px; background:rgba(13,16,38,.72); }
.article-content h2 { max-width:760px; margin: 0 0 14px; font-size: clamp(28px,3vw,38px); }
.article-content h3 { margin: 25px 0 9px; font-size: 20px; }
.article-content p, .article-content li { color: #b7bed5; }
.article-content ul { padding-left: 20px; }
.article-content .lead { max-width:850px; margin-bottom:25px; font-size:16px; }
.chapter-number { position:absolute; right:24px; top:20px; color:rgba(73,225,193,.18); font:800 50px/1 Manrope,sans-serif; }
.subsection { padding-top:6px; }
.subsection + .subsection { margin-top:18px; padding-top:22px; border-top:1px solid var(--line); }
.table-wrap { width:100%; max-width:100%; overflow-x:auto; }
.side-nav {
  position: sticky;
  top: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 19, 43, 0.85);
}
.side-nav strong { display: block; margin-bottom: 10px; }
.side-nav a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--muted); font-size: 13px; }
.side-nav a:hover { color: var(--teal); background: rgba(73,225,193,.07); }
.info-box { margin: 20px 0; padding: 20px; border-left: 3px solid var(--teal); border-radius: 0 14px 14px 0; background: rgba(73,225,193,.07); color: #d8fff6; }
.comparison { width: 100%; border-collapse: collapse; margin: 20px 0; overflow: hidden; border-radius: 14px; }
.comparison th, .comparison td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison th { color: var(--teal); background: #151936; }
.comparison td { color: #b9bfd5; background: rgba(16,19,43,.7); }
.bonus-limits-wrap {
  margin-top: 26px;
  border: 1px solid rgba(73,225,193,.16);
  border-radius: 14px;
}
.bonus-limits {
  min-width: 820px;
  margin: 0;
  table-layout: fixed;
  font-variant-numeric: tabular-nums;
}
.bonus-limits th {
  padding: 14px 7px;
  color: #fff;
  background: linear-gradient(145deg, #171b3c, #10132c);
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
  line-height: 1.35;
}
.bonus-limits td {
  padding: 11px 7px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 12px;
}
.bonus-amount { white-space: nowrap; }
.bonus-amount b { color: var(--teal); font-size: .82em; letter-spacing: .04em; }
.bonus-limits tr:hover td { background: rgba(73,225,193,.07); }
.alphabet { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.alphabet a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); font-weight: 800; }
.alphabet a:hover { color: #071814; background: var(--teal); }
.term-list { display: grid; gap: 12px; }
.term { display:grid; grid-template-columns:42px 1fr; gap:16px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(16,19,43,.65); }
.term > span { display:grid; place-items:center; width:38px; height:38px; border-radius:10px; color:#061914; background:var(--teal); font-weight:900; }
.term strong { display: block; color: var(--teal); font-size: 18px; }
.term p { margin: 6px 0 0; }
.term[hidden] { display:none; }
.glossary-tools { display:flex; align-items:center; justify-content:space-between; gap:20px; margin:22px 0; }
.glossary-tools .alphabet { margin:0; }
.search-box { display:flex; align-items:center; min-width:280px; padding:0 14px; border:1px solid var(--line); border-radius:11px; background:var(--panel); }
.search-box span { color:var(--teal); font-size:20px; }
.search-box input { width:100%; padding:12px; border:0; outline:0; color:var(--text); background:transparent; }
.glossary-layout { display:grid; grid-template-columns:minmax(0,1fr) 290px; gap:24px; align-items:start; }
.glossary-note { position:sticky; top:110px; padding:22px; border:1px solid var(--line); border-radius:16px; background:linear-gradient(145deg,#171a3d,#0d1029); }
.glossary-note strong { font:800 20px/1.2 Manrope,sans-serif; }
.glossary-note p { color:var(--muted); font-size:13px; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24, 28, 58, 0.95), rgba(13, 16, 38, 0.95));
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { border-color: rgba(73, 225, 193, 0.34); transform: translateY(-2px); }
.blog-card-visual {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 180px;
  margin: -24px -24px 18px;
  padding: 18px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(143, 92, 255, 0.42), transparent 58%),
    linear-gradient(140deg, #202552, #0d102b 72%);
}
.blog-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
}
.blog-card-visual span {
  position: relative;
  z-index: 1;
  padding: 6px 10px;
  border: 1px solid rgba(73, 225, 193, 0.22);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(8, 10, 28, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card time { color: var(--muted); font-size: 12px; font-weight: 700; }
.blog-card h3 { margin: 10px 0 12px; font-size: 22px; line-height: 1.2; }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { flex: 1; margin: 0; color: var(--muted); font-size: 14px; }
.blog-card .card-link { margin-top: 18px; }
.blog-actions { display: flex; justify-content: center; margin-top: 24px; }
.blog-preview { padding-bottom: 20px; }
.blog-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.blog-hero .breadcrumb a:hover { color: var(--teal); }
.blog-article {
  margin-top: 28px;
  padding: 8px 0 10px;
}
.blog-article section {
  margin-bottom: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 16, 38, 0.72);
}
.blog-article h2 { margin: 0 0 12px; font-size: clamp(24px, 2.5vw, 32px); }
.blog-article p { margin: 0; color: #b7bed5; font-size: 16px; }
.blog-related { padding-top: 34px; }

.footer { border-top: 1px solid var(--line); background: #070918; }
.footer-inner { width: min(1440px, calc(100% - 44px)); margin: auto; padding: 42px 0 26px; }
.footer .brand img { width: 150px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; }
.footer h4 { margin: 0 0 12px; }
.footer a { display: block; margin: 8px 0; color: var(--muted); font-size: 13px; }
.footer-copy { max-width: 420px; color: var(--muted); font-size: 13px; }
.legal { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); color: #6f7691; font-size: 11px; }

@media (min-width: 1051px) {
  section[id], article[id] { scroll-margin-top: 112px; }
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0);
    transition: box-shadow .2s ease, background .2s ease;
  }
  .site-header.is-scrolled {
    background: rgba(7, 9, 25, 0.97);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
  }
  .site-header.is-scrolled .topbar { min-height: 52px; }
  .site-header.is-scrolled .brand img { width: 112px; }
  .site-header.is-scrolled .nav a { padding-block: 7px; font-size: 12px; }
  .site-header.is-scrolled .language { padding: 7px 11px; font-size: 11px; }
  .site-header.is-scrolled .register { padding: 8px 14px; font-size: 11px; }
  .site-header.is-scrolled .category-strip { padding-block: 5px; }
  .site-header.is-scrolled .category-strip a { padding: 6px 12px; font-size: 12px; }
}

@media (max-width: 1050px) {
  .nav { display: none; position: fixed; inset: 72px 0 auto; flex-direction: column; align-items: stretch; padding: 16px 22px; background: #0c0f27; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .menu-button { display: block; order: -1; }
  .header-actions { margin-left: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .side-nav { display: none; }
  .payment-grid { grid-template-columns:repeat(3,1fr); }
  .provider-grid { grid-template-columns:repeat(2,1fr); }
  .glossary-layout { grid-template-columns:1fr; }
  .glossary-note { position:static; }
}
@media (max-width: 760px) {
  .topbar { min-height: 64px; gap: 12px; padding: 0 16px; }
  .brand img { width: 116px; }
  .language { padding: 8px 9px; font-size: 11px; }
  .language i { display: none; }
  .language-menu { position: fixed; top: 68px; right: 14px; width: min(220px, calc(100vw - 28px)); }
  .language-option { min-height: 48px; padding-inline: 14px; }
  .register { padding: 9px 11px; font-size: 11px; }
  .category-strip { justify-content:flex-start; padding-inline: 14px; }
  .page { width: min(100% - 28px, 1440px); padding-top: 14px; }
  .hero { min-height: 620px; align-items: end; padding: 34px 24px; background-position: 64% center; }
  .hero::after { background: linear-gradient(0deg, rgba(6,8,27,.98) 10%, rgba(7,9,29,.35) 78%); }
  .hero-content { width: 100%; }
  h1 { letter-spacing: -2px; }
  .hero p { font-size: 15px; }
  .section { padding-top: 44px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 8px; }
  .grid-3, .grid-4, .blog-grid { grid-template-columns: 1fr; }
  .promo-strip, .promo-strip div, .vip-banner { align-items:flex-start; flex-direction:column; }
  .split-feature { grid-template-columns:1fr; }
  .feature-visual { min-height:300px; }
  .feature-copy { padding:30px 22px; }
  .mini-grid { grid-template-columns:1fr; }
  .payment-grid { grid-template-columns:repeat(2,1fr); }
  .detail-row, .detail-row.reverse { grid-template-columns:1fr; gap:25px; padding:20px; }
  .detail-row.reverse .detail-art { order:0; }
  .detail-art { min-height:240px; }
  .provider-grid, .overview-grid, .pros-cons { grid-template-columns:1fr; }
  .article-hero { padding: 38px 24px; }
  .article-hero h1 { font-size: 42px; }
  .blog-hero-bg { width: 100%; height: 50%; top: auto; bottom: 0; opacity: 0.5; }
  .article-hero.has-img::after { background: linear-gradient(to bottom, #0d1028 0%, #0d1028 30%, rgba(13,16,40,0.75) 60%, rgba(13,16,40,0.2) 100%); }
  .blog-hero-content { max-width: 100%; }
  .article-content section { padding:24px 20px; }
  .chapter-number { position:static; margin-bottom:12px; font-size:34px; }
  .comparison { font-size: 12px; }
  .comparison th, .comparison td { padding: 10px 7px; }
  .glossary-tools { align-items:stretch; flex-direction:column; }
  .search-box { min-width:0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
