:root {
  --bg: #050a1c;
  --bg-soft: #0b1433;
  --card: rgba(11, 20, 51, 0.78);
  --gold: #f5b302;
  --gold-soft: #ffd76a;
  --ice: #9adcfb;
  --text: #eaf1ff;
  --muted: #b5c2df;
  --line: rgba(154, 220, 251, 0.22);
  --success: #56e39f;
  --danger: #ff7a88;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 12% 8%, #10245a 0%, var(--bg) 36%, #030611 100%);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.75;
  position: relative;
  padding-bottom: 78px;
}

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

a {
  color: var(--ice);
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(5, 10, 28, 0.84);
  border-bottom: 1px solid rgba(245, 179, 2, 0.18);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  letter-spacing: 0.35px;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 0 22px rgba(245, 179, 2, 0.45);
}

.top-nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.top-nav a {
  color: var(--muted);
  font-family: 'Sora', sans-serif;
  font-size: 0.93rem;
  transition: color 0.25s ease;
}

.top-nav a:hover {
  color: var(--gold-soft);
}

.header-cta {
  display: flex;
  gap: 0.65rem;
}

.btn {
  --btn-bg: linear-gradient(130deg, #f5b302, #ffe082);
  --btn-color: #18110a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  color: var(--btn-color);
  background: var(--btn-bg);
  box-shadow: 0 8px 26px rgba(245, 179, 2, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 179, 2, 0.46);
}

.btn:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 2px;
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-color: var(--ice);
  border: 1px solid rgba(154, 220, 251, 0.45);
  box-shadow: 0 0 0 transparent;
}

.btn-ghost:hover {
  background: rgba(154, 220, 251, 0.12);
}

.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(245, 179, 2, 0.55), transparent 70%);
  z-index: -1;
  filter: blur(10px);
}

.pulse {
  animation: pulseGlow 2.2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(245, 179, 2, 0.2), 0 8px 26px rgba(245, 179, 2, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(245, 179, 2, 0.08), 0 10px 32px rgba(245, 179, 2, 0.62); }
}

.marquee {
  border-top: 1px solid rgba(245, 179, 2, 0.18);
  border-bottom: 1px solid rgba(245, 179, 2, 0.18);
  background: linear-gradient(90deg, rgba(245, 179, 2, 0.14), rgba(154, 220, 251, 0.07), rgba(245, 179, 2, 0.14));
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 1.8rem;
  padding: 0.72rem 0;
  font-family: 'JetBrains Mono', monospace;
  color: #f8d87d;
  animation: marqueeMove 23s linear infinite;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  padding: 1rem 0 2.4rem;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.3rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(154, 220, 251, 0.24);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
  margin-top: 1.2rem;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #001027;
  background: linear-gradient(120deg, var(--ice), #d8f3ff);
  font-family: 'JetBrains Mono', monospace;
}

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  line-height: 1.24;
}

h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  margin: 0.65rem 0 1rem;
}

h2 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  margin-top: 0;
}

h3 {
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 1rem;
}

.floating-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge {
  display: inline-flex;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #d5ebff;
  border: 1px solid rgba(154, 220, 251, 0.28);
  background: rgba(10, 31, 73, 0.6);
  animation: floatBadge 6s ease-in-out infinite;
}

.badge:nth-child(2) { animation-delay: .8s; }
.badge:nth-child(3) { animation-delay: 1.5s; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-visual {
  position: relative;
  min-height: 330px;
}

.conic-ring {
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  background: conic-gradient(from 0deg, rgba(245,179,2,0.18), rgba(154,220,251,0.2), rgba(245,179,2,0.18));
  filter: blur(1px);
  animation: spinRing 14s linear infinite;
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-slider {
  position: relative;
  height: 100%;
  min-height: 330px;
  background: linear-gradient(160deg, rgba(12, 31, 75, 0.85), rgba(9, 16, 38, 0.9));
  border: 1px solid rgba(154, 220, 251, 0.24);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 1.2rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s ease, transform .5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at top right, rgba(245,179,2,.12), transparent 50%);
  border-radius: 18px;
  padding: 1rem;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(154, 220, 251, 0.4);
  color: var(--ice);
  background: rgba(4, 11, 32, 0.85);
  cursor: pointer;
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(154, 220, 251, 0.42);
  padding: 0;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--gold);
}

.content-section {
  margin: 1.5rem auto;
  background: linear-gradient(180deg, rgba(7, 14, 37, 0.78), rgba(5, 10, 28, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
}

.steps li {
  margin-bottom: 1rem;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(154, 220, 251, 0.18);
  background: rgba(8, 20, 50, 0.45);
}

.address-card {
  background: linear-gradient(145deg, rgba(245, 179, 2, 0.14), rgba(5, 10, 28, 0.76));
  border: 1px solid rgba(245, 179, 2, 0.45);
  border-radius: 16px;
  padding: 1rem;
}

.address {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gold-soft);
  margin: 0.65rem 0 1rem;
  word-break: break-all;
}

.address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.copy-feedback {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.status-table-wrap {
  overflow-x: auto;
  margin-top: 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(154, 220, 251, 0.24);
}

.status-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.status-table caption {
  text-align: left;
  padding: 0.8rem;
  font-family: 'Sora', sans-serif;
  color: #d4e9ff;
}

.status-table th,
.status-table td {
  padding: 0.7rem;
  border-top: 1px solid rgba(154, 220, 251, 0.17);
  font-size: 0.92rem;
  color: var(--muted);
}

.promo-slider {
  margin: 1.2rem 0;
  background: rgba(7, 18, 43, 0.7);
  border: 1px solid rgba(154, 220, 251, 0.25);
  border-radius: 16px;
  padding: 1rem;
}

.promo-track {
  display: grid;
}

.promo-card {
  grid-area: 1/1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
  border-radius: 12px;
  background: rgba(12, 32, 76, 0.45);
  padding: 1rem;
}

.promo-card.active {
  opacity: 1;
  transform: translateY(0);
}

.promo-controls {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.6rem;
}

.promo-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 179, 2, 0.4);
  color: var(--gold);
  background: rgba(2, 6, 19, 0.9);
  cursor: pointer;
}

.event-box,
.rating-card,
.user-review,
.final-cta {
  border-radius: 16px;
  border: 1px solid rgba(245, 179, 2, 0.27);
  padding: 1rem;
  background: linear-gradient(155deg, rgba(14, 32, 75, 0.53), rgba(4, 9, 22, 0.8));
}

.rating-big {
  font-size: 2.2rem;
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  color: var(--gold-soft);
}

.score-bars {
  margin: 1rem 0;
  display: grid;
  gap: 0.75rem;
}

.score-row {
  display: grid;
  grid-template-columns: 130px 1fr 48px;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.9rem;
}

.bar {
  background: rgba(154, 220, 251, 0.15);
  border-radius: 999px;
  overflow: hidden;
  height: 11px;
}

.bar i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f5b302, #ffd86b, #9adcfb);
  transition: width 1.15s ease;
}

.user-review {
  margin: 1rem 0;
  border-left: 4px solid var(--gold);
}

.user-review p { margin: 0 0 0.55rem; }
.user-review cite { color: #d2e6ff; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.pros-cons > div {
  border: 1px solid rgba(154, 220, 251, 0.23);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(10, 25, 58, 0.5);
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  border: 1px solid rgba(154, 220, 251, 0.26);
  border-radius: 12px;
  background: rgba(8, 19, 47, 0.66);
  padding: 0.7rem 0.9rem;
}

.faq-list summary {
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
}

.site-footer {
  margin-top: 2rem;
  padding: 1.8rem 0 2.8rem;
  border-top: 1px solid rgba(154, 220, 251, 0.2);
  color: var(--muted);
}

.lang-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 80;
  display: none;
  width: min(96%, 520px);
  gap: 0.55rem;
  padding: 0.5rem;
  border-radius: 999px;
  background: rgba(4, 11, 30, 0.9);
  border: 1px solid rgba(245, 179, 2, 0.35);
  backdrop-filter: blur(8px);
}

.mobile-dock .btn {
  flex: 1;
  min-height: 46px;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}

.orb-a {
  width: 240px;
  height: 240px;
  top: -70px;
  left: -40px;
  background: radial-gradient(circle, rgba(245, 179, 2, 0.26), transparent 70%);
  animation: driftA 16s ease-in-out infinite;
}

.orb-b {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 26%;
  background: radial-gradient(circle, rgba(154, 220, 251, 0.2), transparent 70%);
  animation: driftB 18s ease-in-out infinite;
}

.orb-c {
  width: 210px;
  height: 210px;
  left: 20%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(245, 179, 2, 0.16), transparent 68%);
  animation: driftC 20s ease-in-out infinite;
}

@keyframes driftA { 0%,100%{transform:translate(0,0)} 50%{transform:translate(14px,18px)} }
@keyframes driftB { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15px,16px)} }
@keyframes driftC { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-14px)} }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .top-nav { display: none; }

  .hero-slider,
  .hero-visual {
    min-height: 280px;
  }

  .score-row {
    grid-template-columns: 110px 1fr 44px;
  }
}

@media (max-width: 640px) {
  body { padding-bottom: 92px; }

  .header-cta { display: none; }

  .mobile-dock {
    display: flex;
  }

  .content-section {
    padding: 0.95rem;
  }

  .score-row {
    grid-template-columns: 96px 1fr 42px;
    font-size: 0.82rem;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 1rem);
  }

  .btn {
    padding: 0.75rem 1.05rem;
    font-size: 0.86rem;
  }

  .address-actions .btn,
  .hero-actions .btn {
    flex: 1 1 auto;
  }

  .marquee-track {
    font-size: 0.78rem;
    gap: 1rem;
  }
}
