:root {
  --bg: #030306;
  --bg-elevated: #0a0a12;
  --card: rgba(14, 14, 22, 0.72);
  --glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(251, 146, 60, 0.35);
  --text: #f8f8fc;
  --muted: #9494ad;
  --accent1: #ea580c;
  --accent2: #fb923c;
  --accent3: #f472b6;
  --accent-cyan: #22d3ee;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 20px 60px rgba(234, 88, 12, 0.18);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  font-family: var(--font-body);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(234, 88, 12, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(168, 85, 247, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(34, 211, 238, 0.08), transparent 45%),
    var(--bg);
}

.bg-mesh::before,
.bg-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: mesh-drift 20s ease-in-out infinite alternate;
}

.bg-mesh::before {
  width: 50vw;
  height: 50vw;
  top: -20%;
  left: -15%;
  background: rgba(249, 115, 22, 0.25);
}

.bg-mesh::after {
  width: 40vw;
  height: 40vw;
  bottom: -15%;
  right: -10%;
  background: rgba(244, 114, 182, 0.12);
  animation-duration: 26s;
  animation-delay: -6s;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 10%, transparent 75%);
}

@keyframes mesh-drift {
  to { transform: translate(3%, 5%) scale(1.06); }
}

.wrap {
  width: min(1180px, 94vw);
  margin: 0 auto;
  padding: 0.5rem 0 4rem;
}

.glass-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  margin: 0 -1vw;
  padding: 0.85rem 1vw;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: linear-gradient(180deg, rgba(3, 3, 6, 0.88) 0%, rgba(3, 3, 6, 0.55) 100%);
  border-bottom: 1px solid var(--border);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
}

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

.lang-picker-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.lang-picker-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.lang-regions {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lang-region-btn,
.lang-flag-btn {
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.lang-region-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.lang-flag-btn {
  padding: 0.3rem 0.55rem;
  font-size: 1.05rem;
  line-height: 1;
}

.lang-region-btn:hover,
.lang-flag-btn:hover {
  border-color: var(--border-glow);
  transform: translateY(-1px);
}

.lang-region-btn.active,
.lang-flag-btn.active {
  border-color: var(--accent2);
  background: rgba(251, 146, 60, 0.15);
  box-shadow: 0 0 20px rgba(251, 146, 60, 0.2);
}

.lang-picker-simple {
  flex-direction: row;
  gap: 0.4rem;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.lang-switch-btn:hover {
  border-color: var(--border-glow);
  transform: translateY(-1px);
}

.lang-switch-btn.active {
  border-color: var(--accent2);
  background: rgba(251, 146, 60, 0.15);
  box-shadow: 0 0 20px rgba(251, 146, 60, 0.2);
}

.lang-switch-flag {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .lang-picker { order: 3; width: 100%; }
  .header-tag { display: none; }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent1), var(--accent3));
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.45);
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
}

.logo-back { font-size: 0.95rem; font-weight: 700; }

.header-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 146, 60, 0.25);
  color: var(--accent2);
  background: rgba(234, 88, 12, 0.08);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bonus-timer {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(251, 146, 60, 0.2);
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(168, 85, 247, 0.06));
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(12px);
}

.bonus-timer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.5), transparent 40%, rgba(34, 211, 238, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bonus-timer-inner {
  padding: 1rem 1.15rem 0.85rem;
}

.bonus-timer-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.65rem;
}

.bonus-timer-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.bonus-timer-text span {
  font-size: 0.8rem;
  color: var(--muted);
}

.bonus-timer-clock {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.timer-digits {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timer-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent2);
}

.timer-track {
  height: 4px;
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.timer-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent1), var(--accent3));
  border-radius: 4px;
  transition: width 1s linear;
}

.bonus-timer.expired .timer-digits {
  opacity: 0.5;
}

/* —— Hero premium —— */
.hero-premium {
  padding: 1.5rem 0 2.5rem;
}

.hero-premium-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-premium-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent2);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.15rem;
}

.hero-copy h1 .grad {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(120deg, #fff 0%, var(--accent2) 45%, var(--accent3) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.stats-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.glass-stat {
  flex: 1;
  min-width: 100px;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, transform 0.25s;
}

.glass-stat:hover {
  border-color: rgba(251, 146, 60, 0.3);
  transform: translateY(-2px);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat small { color: var(--muted); font-size: 0.75rem; font-weight: 500; }

.hero-visual {
  display: none;
  position: relative;
  min-height: 280px;
}

@media (min-width: 900px) {
  .hero-visual { display: block; }
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 280px;
}

.hero-float-card {
  position: absolute;
  padding: 1.1rem 1.35rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(12, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-float-card .hfc-glow {
  position: absolute;
  inset: -50%;
  opacity: 0.35;
  filter: blur(40px);
  pointer-events: none;
}

.hfc-1 { top: 8%; left: 5%; animation: float-card 7s ease-in-out infinite; }
.hfc-1 .hfc-glow { background: radial-gradient(circle, #8b5cf6, transparent 70%); }
.hfc-2 { top: 32%; right: 0; animation: float-card 8s ease-in-out infinite reverse; animation-delay: -2s; }
.hfc-2 .hfc-glow { background: radial-gradient(circle, #22d3ee, transparent 70%); }
.hfc-3 { bottom: 5%; left: 18%; animation: float-card 9s ease-in-out infinite; animation-delay: -4s; }
.hfc-3 .hfc-glow { background: radial-gradient(circle, #f7b600, transparent 70%); }

.hfc-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.hfc-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.offers-section-head {
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.offers-section-head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.offers-section-head p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* legacy hero (offer pages) */
.hero-clean {
  position: relative;
  padding: 0.5rem 0 2.75rem;
  max-width: 640px;
}

.hero-orbs {
  position: absolute;
  inset: -40% -20% auto -10%;
  height: 280px;
  pointer-events: none;
  z-index: -1;
}

.hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.5;
}

.hero-orbs .o1 {
  width: 180px; height: 180px; left: 0; top: 0;
  background: rgba(249, 115, 22, 0.5);
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orbs .o2 {
  width: 140px; height: 140px; left: 40%; top: 20%;
  background: rgba(236, 72, 153, 0.35);
  animation: orb-float 11s ease-in-out infinite reverse;
}
.hero-orbs .o3 {
  width: 100px; height: 100px; left: 65%; top: 5%;
  background: rgba(6, 182, 212, 0.3);
  animation: orb-float 13s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.12); }
}

.hero-clean .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent2);
  margin-bottom: 0.85rem;
}

.hero-clean h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-clean h1 .grad {
  background: linear-gradient(90deg, #fff, var(--accent2) 55%, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.stat b {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}

.stat small { color: var(--muted); font-size: 0.78rem; }

/* —— Превью на карточках (один стиль) —— */
.visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
}

.visual-base {
  position: absolute;
  inset: 0;
}

.visual-mask .visual-base {
  background:
    radial-gradient(ellipse 90% 70% at 25% 20%, rgba(124, 58, 237, 0.55), transparent 55%),
    radial-gradient(ellipse 80% 60% at 85% 75%, rgba(236, 72, 153, 0.45), transparent 50%),
    linear-gradient(155deg, #0c0618 0%, #1a0a24 45%, #12081a 100%);
}

.visual-sound .visual-base {
  background:
    radial-gradient(ellipse 85% 65% at 20% 30%, rgba(6, 182, 212, 0.5), transparent 52%),
    radial-gradient(ellipse 75% 55% at 90% 70%, rgba(249, 115, 22, 0.42), transparent 48%),
    linear-gradient(155deg, #041018 0%, #061820 50%, #0a0f18 100%);
}

.visual-visa .visual-base {
  background:
    radial-gradient(ellipse 80% 60% at 18% 25%, rgba(20, 52, 203, 0.55), transparent 52%),
    radial-gradient(ellipse 70% 55% at 88% 72%, rgba(247, 182, 0, 0.38), transparent 48%),
    linear-gradient(155deg, #060818 0%, #0a1240 48%, #0c0a18 100%);
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
}

.visual .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.visual-mask .o1 {
  width: 58%; height: 58%; left: -12%; top: -8%;
  background: #8b5cf6;
  animation: vis-drift-1 9s ease-in-out infinite;
}
.visual-mask .o2 {
  width: 48%; height: 52%; right: -10%; top: 18%;
  background: #ec4899;
  animation: vis-drift-2 11s ease-in-out infinite;
}
.visual-mask .o3 {
  width: 55%; height: 48%; left: 18%; bottom: -15%;
  background: #f97316;
  animation: vis-drift-3 10s ease-in-out infinite;
}
.visual-mask .o4 {
  width: 35%; height: 35%; left: 42%; top: 32%;
  background: #c084fc;
  opacity: 0.7;
  animation: vis-pulse 6s ease-in-out infinite;
}

.visual-sound .o1 {
  width: 54%; height: 54%; left: -8%; top: 5%;
  background: #22d3ee;
  animation: vis-drift-1 8.5s ease-in-out infinite;
}
.visual-sound .o2 {
  width: 46%; height: 50%; right: -8%; top: 22%;
  background: #0ea5e9;
  animation: vis-drift-2 10s ease-in-out infinite reverse;
}
.visual-sound .o3 {
  width: 52%; height: 44%; left: 22%; bottom: -12%;
  background: #fb923c;
  animation: vis-drift-3 9.5s ease-in-out infinite;
}
.visual-sound .o4 {
  width: 32%; height: 32%; right: 28%; top: 38%;
  background: #2dd4bf;
  opacity: 0.65;
  animation: vis-pulse 7s ease-in-out infinite;
}

.visual-visa .o1 {
  width: 56%; height: 56%; left: -10%; top: -6%;
  background: #1434cb;
  animation: vis-drift-1 9s ease-in-out infinite;
}
.visual-visa .o2 {
  width: 44%; height: 48%; right: -8%; top: 20%;
  background: #1a1f71;
  animation: vis-drift-2 10.5s ease-in-out infinite;
}
.visual-visa .o3 {
  width: 50%; height: 44%; left: 20%; bottom: -14%;
  background: #f7b600;
  animation: vis-drift-3 9s ease-in-out infinite;
}
.visual-visa .o4 {
  width: 34%; height: 34%; left: 40%; top: 34%;
  background: #60a5fa;
  opacity: 0.6;
  animation: vis-pulse 6.5s ease-in-out infinite;
}

.visual-ring {
  position: absolute;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  background: conic-gradient(
    from 120deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.08) 40deg,
    transparent 80deg,
    rgba(249, 115, 22, 0.12) 160deg,
    transparent 220deg,
    rgba(255, 255, 255, 0.06) 300deg,
    transparent 360deg
  );
  animation: vis-spin 24s linear infinite;
  opacity: 0.9;
}

.visual-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 58%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: vis-shine 5s ease-in-out infinite;
}

.visual-hero { min-height: 240px; }

@keyframes vis-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 10%) scale(1.08); }
}
@keyframes vis-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8%, 6%) scale(1.1); }
}
@keyframes vis-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  45% { transform: translate(5%, -8%) scale(0.95); }
}
@keyframes vis-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.15); }
}
@keyframes vis-spin {
  to { transform: rotate(360deg); }
}
@keyframes vis-shine {
  0%, 100% { background-position: 180% 0; }
  50% { background-position: -80% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .visual .orb, .visual-ring, .visual-shine, .hero-orbs .orb, .bg-mesh::before, .bg-mesh::after {
    animation: none !important;
  }
}

/* —— Offer cards —— */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.65rem;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.offer-card.reveal {
  animation: card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--i, 0) * 0.09s);
}

.offer-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), transparent 40%, rgba(251,146,60,0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 1;
}

.offer-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow), var(--shadow-glow);
  border-color: rgba(251, 146, 60, 0.25);
}

.offer-card:hover::before { opacity: 1; }

.offer-card .thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: #0c0c14;
}

.offer-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card .thumb .visual { min-height: 100%; }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(3, 3, 6, 0.8);
  backdrop-filter: blur(16px);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid rgba(251, 146, 60, 0.35);
  color: var(--accent2);
  text-transform: uppercase;
}

.offer-card .body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card h2 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.partner {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.reward-pill {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent2);
  margin-bottom: 0.65rem;
}

.offer-card .desc {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  width: 100%;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent1) 0%, var(--accent2) 50%, #fdba74 100%);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 16px 48px rgba(234, 88, 12, 0.45);
  animation: btn-shimmer 2s ease infinite;
}

@keyframes btn-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-secondary {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.15); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
  background: var(--glass);
}

/* —— Detail —— */
.detail-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .detail-grid { grid-template-columns: 1fr 360px; align-items: start; }
}

.detail-main {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.detail-hero {
  aspect-ratio: 21 / 9;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero .visual { min-height: 220px; }

.detail-content { padding: 1.75rem; }

.detail-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.partner-name {
  color: var(--accent2);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.lead { color: var(--muted); margin-bottom: 1.5rem; }

.steps-block h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.steps-list { list-style: none; }

.steps-list li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.detail-sidebar { position: sticky; top: 1rem; }

.reward-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glow);
}

.reward-card small { color: var(--muted); font-size: 0.8rem; }

.reward-card .amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reward-card .hold {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.reward-card .btn-primary { margin-bottom: 0.65rem; }

.terms {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  font-size: 0.8rem;
  color: var(--muted);
}

.empty-state, .loading {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}

.loading::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  margin: 1rem auto 0;
  border: 3px solid var(--border);
  border-top-color: var(--accent1);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.site-footer {
  position: relative;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  opacity: 0.6;
}

.footer-copy {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  opacity: 0.75;
}

/* —— Card partner foot —— */
.card-partner-foot {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.card-partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.card-partner-logos svg {
  height: 18px;
  width: auto;
  opacity: 0.92;
  border-radius: 4px;
}

.card-partner-legal {
  font-size: 0.62rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

/* —— Site trust block —— */
.site-trust-block {
  margin: 2.5rem 0 1rem;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(18, 18, 26, 0.95), rgba(10, 10, 14, 0.88));
  backdrop-filter: blur(16px);
}

.site-trust-inner { text-align: center; max-width: 720px; margin: 0 auto; }

.site-trust-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 1rem;
}

.site-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.site-trust-logos svg {
  height: 22px;
  width: auto;
  border-radius: 4px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.site-trust-copy p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 0.65rem;
}

.site-trust-legal {
  font-size: 0.68rem !important;
  opacity: 0.85;
}

.site-trust-links {
  font-size: 0.68rem;
  color: var(--accent2);
  opacity: 0.9;
}

.build-tag { color: var(--accent2); font-weight: 600; }

.hidden { display: none !important; }

/* —— Trust strip —— */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.15);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.trust-ico-shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fb923c'%3E%3Cpath stroke-width='2' d='M12 3l7 3v5c0 4.5-2.5 8-7 9-4.5-1-7-4.5-7-9V6l7-3z'/%3E%3Cpath stroke-width='2' d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }
.trust-ico-tg { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2329b6f6' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.2 6.7c-.1 1.1-.6 4.5-.8 6-.1.6-.4.8-.7.8-.5 0-.9-.3-1.4-.6-.8-.5-1.2-.8-2-1.3-.9-.6-.3-.9.2-1.4.1-.1 2.2-2 2.3-2.1a.1.1 0 00-.1-.1l-.2-.1c-.1 0-1.2.8-3.4 2.2-.3.2-.6.3-.9.3-.3 0-.8-.1-1.2-.3-.5-.2-1-.3-1-.6 0-.1.2-.3.6-.4 2.3-1.1 3.9-1.8 4.7-2.1 2.2-1 .6-.2.6-.2.1 0 .2 0 .3.1z'/%3E%3C/svg%3E"); }
.trust-ico-usdt { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2326a17b' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' opacity='.3'/%3E%3Cpath d='M12 5v14M9 8h4a2 2 0 110 4H9m0 3h5a2 2 0 110 4H9'/%3E%3C/svg%3E"); }
.trust-ico-check { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2322c55e' viewBox='0 0 24 24'%3E%3Cpath d='M9 12l2 2 4-4' stroke='%23fff' stroke-width='2' fill='none'/%3E%3Ccircle cx='12' cy='12' r='10' fill='%2322c55e' opacity='.35'/%3E%3C/svg%3E"); }

.partners-row { margin-bottom: 1.5rem; }
.partners-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.partner-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.partner-chip-verified {
  border-color: rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.partner-chip-link {
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.partner-chip-link:hover {
  border-color: rgba(247, 182, 0, 0.45);
  background: rgba(20, 52, 203, 0.12);
  transform: translateY(-1px);
}

.chip-ico {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-block;
}

.chip-video { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.chip-audio { background: linear-gradient(135deg, #06b6d4, #f97316); }
.chip-pay { background: linear-gradient(135deg, #1a1f71, #f7b600); }
.chip-verified {
  background: #22c55e url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}

.verified-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #86efac;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.rating-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fbbf24;
}

.partner-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 0.35rem;
}

.card-trust {
  display: flex;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.btn-ico-tg {
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.2 6.7c-.1 1.1-.6 4.5-.8 6-.1.6-.4.8-.7.8-.5 0-.9-.3-1.4-.6-.8-.5-1.2-.8-2-1.3-.9-.6-.3-.9.2-1.4.1-.1 2.2-2 2.3-2.1a.1.1 0 00-.1-.1l-.2-.1c-.1 0-1.2.8-3.4 2.2-.3.2-.6.3-.9.3-.3 0-.8-.1-1.2-.3-.5-.2-1-.3-1-.6 0-.1.2-.3.6-.4 2.3-1.1 3.9-1.8 4.7-2.1 2.2-1 .6-.2.6-.2.1 0 .2 0 .3.1z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-link {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.35rem;
  text-decoration: none;
  font-weight: 600;
}

/* —— Modal —— */
#modal-root {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.25s ease;
}

@media (min-width: 640px) {
  .modal-backdrop { align-items: center; }
}

.modal-sheet {
  position: relative;
  width: min(440px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #16161f 0%, #0e0e16 100%);
  border: 1px solid var(--border);
  border-radius: 24px 24px 0 0;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow), 0 0 80px rgba(234, 88, 12, 0.08);
  animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-sheet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent3), var(--accent-cyan));
  border-radius: 24px 24px 0 0;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  padding-right: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .modal-sheet { border-radius: 24px; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.modal-text { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.55; }

.modal-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #86efac;
  margin-bottom: 0.65rem;
}

.modal-partner-badge svg { width: 14px; height: 14px; }

.modal-partner-line { color: var(--accent2); font-weight: 600; font-size: 0.88rem; margin-bottom: 0.5rem; }

.modal-reward {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent2);
  margin-bottom: 0.75rem;
}

.modal-icon-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.modal-icon-row svg { width: 28px; height: 28px; color: var(--accent2); }

.modal-bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.modal-bullets li {
  padding: 0.45rem 0 0.45rem 1.25rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--muted);
}

.modal-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 800;
}

.modal-trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.modal-trust-mini span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.modal-trust-mini svg { width: 16px; height: 16px; }

.modal-fine { font-size: 0.72rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }

.modal-tg-btn { margin-top: 0.25rem; }

.site-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 1100;
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  background: #1e1e2a;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.site-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
