:root {
  --bg: #f6f2e9;
  --bg-glow: rgba(255, 138, 0, 0.12);
  --card: rgba(255, 255, 255, 0.84);
  --card-border: rgba(107, 85, 53, 0.12);
  --text-main: #17140f;
  --text-secondary: #5c554d;
  --accent: #ff8600;
  --accent-deep: #ef6f00;
  --accent-soft: rgba(255, 134, 0, 0.12);
  --shadow: 0 18px 40px rgba(27, 20, 11, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 18px 16px 124px;
  font-family: "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top center, var(--bg-glow), transparent 26%),
    linear-gradient(180deg, #fcfaf5 0%, var(--bg) 100%);
}

.app-shell {
  width: min(100%, 520px);
  margin: 0 auto;
}

.v6-core-page {
  display: grid;
  gap: 18px;
}

.v6-core-page[hidden] {
  display: none;
}

.v6-banner-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 30px;
  color: #fffaf2;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #ff8f1f 0%, #ff6a00 48%, #ef4f13 100%);
  box-shadow: 0 24px 48px rgba(239, 111, 0, 0.24);
}

.v6-banner-card[data-theme="mint"] {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #1ca77b 0%, #169d87 45%, #0b6f78 100%);
}

.v6-banner-card[data-theme="sky"] {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #3186ff 0%, #2369f3 45%, #2745ba 100%);
}

.v6-banner-card[data-theme="gold"] {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #f5b31e 0%, #ed8f0c 45%, #d96a10 100%);
}

.v6-banner-card__glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(10px);
}

.v6-banner-card__badge,
.v6-banner-card__title,
.v6-banner-card__desc,
.v6-banner-card__meta {
  position: relative;
  z-index: 1;
}

.v6-banner-card__badge {
  display: inline-flex;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v6-banner-card__title {
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.v6-banner-card__desc {
  margin: 10px 0 0;
  max-width: 90%;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 250, 242, 0.92);
}

.v6-banner-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.v6-banner-card__pill,
.v6-banner-card__count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 14, 10, 0.16);
  font-size: 12px;
  font-weight: 700;
}

.v6-main-card {
  padding-top: 26px;
}

.v6-main-card__title {
  margin: 0;
  font-size: clamp(32px, 8vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.v6-subtitle-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.v6-subtitle-list__item {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.v6-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.v6-benefit-card {
  min-height: 102px;
  padding: 14px 10px;
  border-radius: 20px;
  border: 1px solid rgba(107, 85, 53, 0.1);
  background: linear-gradient(180deg, #fffdf8 0%, #fff6e7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.v6-benefit-card__label {
  display: block;
  margin: 0;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v6-benefit-card__text {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text-main);
}

.v6-cta-group {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.v6-secondary-button {
  background: linear-gradient(180deg, #ffffff 0%, #fff4de 100%);
  color: var(--text-main);
  border: 1px solid rgba(239, 111, 0, 0.18);
  box-shadow: 0 12px 24px rgba(255, 134, 0, 0.12);
}

.v6-loading-text,
.v6-helper-note {
  margin: 10px 0 0;
  text-align: center;
  line-height: 1.6;
}

.v6-loading-text {
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
}

.v6-helper-note {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.v6-loading-text[hidden] {
  display: none;
}

.v7-simple-page {
  display: grid;
  gap: 16px;
}

.v7-simple-page[hidden] {
  display: none;
}

.v7-entry-hero {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 28px;
  color: #f7fff9;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #0f6652 0%, #13856a 48%, #1faa79 100%);
  box-shadow: 0 24px 44px rgba(16, 111, 83, 0.24);
}

.v7-entry-hero__badge-row,
.v7-entry-hero__head {
  position: relative;
  z-index: 1;
}

.v7-entry-hero__badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.v7-entry-hero__badge,
.v7-entry-hero__status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v7-entry-hero__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 14px;
  margin-top: 18px;
  align-items: end;
}

.v7-entry-hero__mini-board {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.12);
  text-align: center;
}

.v7-entry-hero__mini-board span,
.v7-entry-hero__mini-board small {
  color: rgba(247, 255, 249, 0.82);
}

.v7-entry-hero__mini-board strong {
  font-size: 26px;
  line-height: 1;
}

.v7-hero-image-card {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 249, 242, 0.98) 100%);
  border: 1px solid rgba(24, 109, 82, 0.1);
  box-shadow: 0 18px 36px rgba(16, 111, 83, 0.14);
}

.v7-hero-image-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.v7-main-card {
  background: linear-gradient(180deg, rgba(247, 255, 251, 0.98) 0%, rgba(233, 246, 239, 0.98) 100%);
  border: 1px solid rgba(24, 109, 82, 0.08);
}

.v7-main-card__title {
  margin: 0;
  font-size: clamp(33px, 8vw, 45px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.v7-subtitle-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.v7-subtitle-list__item {
  margin: 0;
  color: rgba(247, 255, 249, 0.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.v7-hall-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid rgba(24, 109, 82, 0.09);
}

.v7-hall-card__eyebrow {
  margin: 0;
  color: #168665;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v7-hall-card__title {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.18;
}

.v7-hall-card__desc {
  margin: 10px 0 0;
  color: #4e665b;
  font-size: 14px;
  line-height: 1.65;
}

.v7-hall-card__right {
  display: grid;
  gap: 10px;
}

.v7-hall-stat {
  padding: 14px 10px;
  border-radius: 18px;
  background: #0f6d53;
  color: #f7fff9;
  text-align: center;
}

.v7-hall-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.v7-hall-stat span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(247, 255, 249, 0.82);
}

.v7-point-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.v7-point-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 134, 101, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.v7-point-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1db37f 0%, #138960 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.v7-point-item__content strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.v7-point-item__content span {
  display: block;
  margin-top: 6px;
  color: #5c7368;
  font-size: 13px;
  line-height: 1.6;
}

.v7-cta-group {
  margin-top: 18px;
}

.v7-primary-button {
  background: linear-gradient(180deg, #1fc786 0%, #139869 100%);
  box-shadow: 0 16px 30px rgba(19, 152, 105, 0.22);
}

.v7-loading-text,
.v7-helper-note {
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.6;
}

.v7-loading-text {
  color: #138960;
  font-size: 14px;
  font-weight: 700;
}

.v7-helper-note {
  color: #4f6a5e;
  font-size: 13px;
  font-weight: 600;
  white-space: pre-line;
}

.v7-loading-text[hidden] {
  display: none;
}

.v8-game-page {
  display: grid;
}

.v8-game-page[hidden] {
  display: none;
}

.v8-game-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(58, 123, 213, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0%, rgba(237, 245, 255, 0.98) 100%);
}

.v8-hero-banner {
  margin: -6px -2px 18px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(59, 130, 246, 0.16);
}

.v8-hero-banner[hidden] {
  display: none;
}

.v8-hero-banner__image {
  display: block;
  width: 100%;
  height: auto;
}

.v8-game-card__title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.v8-game-card__subtitle {
  margin: 14px 0 0;
  text-align: center;
  color: #46607f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.v8-cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.v8-secondary-button {
  border: 1px solid rgba(59, 130, 246, 0.16);
  color: #1d4ed8;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.v8-mini-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.v8-mini-promo-card {
  display: grid;
  gap: 6px;
  padding: 14px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.v8-mini-promo-card strong {
  font-size: 15px;
  color: #0f172a;
}

.v8-mini-promo-card span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.v8-game-panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 28px 18px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 185, 48, 0.16);
}

.v8-game-panel__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255, 205, 72, 0.16) 0%, rgba(255, 205, 72, 0.06) 48%, transparent 72%);
  animation: v8Pulse 2.4s ease-in-out infinite;
}

.v8-action-button {
  position: relative;
  z-index: 1;
  min-width: 188px;
  min-height: 188px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffcf40 0%, #ffab19 100%);
  color: #3d2500;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow:
    0 20px 40px rgba(255, 171, 25, 0.28),
    inset 0 4px 12px rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.v8-action-button:active {
  transform: scale(0.98);
}

.v8-action-button:disabled {
  opacity: 0.78;
  cursor: default;
}

.v8-status-text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px 16px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 196, 37, 0.14);
  border: 1px solid rgba(255, 183, 0, 0.16);
  color: #6d4a00;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
  box-shadow: 0 12px 24px rgba(255, 183, 0, 0.12);
}

.v8-guide-text {
  margin: 18px 0 0;
  text-align: center;
  color: #486581;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.v8-guide-text[hidden],
.v8-status-text[hidden] {
  display: none;
}

.v8-primary-button {
  background: linear-gradient(180deg, #ff6b6b 0%, #ef4444 100%);
  box-shadow: 0 16px 30px rgba(239, 68, 68, 0.24);
}

.v8-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.v8-feature-card {
  min-height: 94px;
  display: grid;
  gap: 6px;
  padding: 14px 12px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.v8-feature-card strong {
  font-size: 16px;
  line-height: 1.3;
}

.v8-feature-card span {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.92;
}

.v8-feature-card.blue { background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%); }
.v8-feature-card.red { background: linear-gradient(135deg, #fb7185 0%, #ef4444 100%); }
.v8-feature-card.gold { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); }
.v8-feature-card.purple { background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%); }
.v8-feature-card.green { background: linear-gradient(135deg, #34d399 0%, #059669 100%); }
.v8-feature-card.dark { background: linear-gradient(135deg, #334155 0%, #0f172a 100%); }

.global-auto-redirect-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 30;
  min-width: min(88vw, 320px);
  margin: 0;
  padding: 12px 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 247, 233, 0.96);
  border: 1px solid rgba(239, 111, 0, 0.16);
  box-shadow: 0 18px 36px rgba(27, 20, 11, 0.12);
  color: var(--accent-deep);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.global-auto-redirect-notice[hidden] {
  display: none;
}

@keyframes v8Pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.74;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.74;
  }
}

.hero-card,
.info-card,
.sticky-cta,
.admin-panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card {
  padding: 24px 20px;
  border-radius: var(--radius-xl);
}

.hero-badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card h1 {
  margin: 0;
  font-size: clamp(32px, 8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

.hero-scene {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(107, 85, 53, 0.1);
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
  isolation: isolate;
}

.hero-scene[hidden],
.hero-kpi-strip[hidden],
.hero-sponsor-strip[hidden] {
  display: none;
}

.hero-scene__ambient,
.hero-scene__frame,
.hero-scene__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-scene__ambient {
  inset: auto -12% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 80, 0.34) 0%, rgba(255, 180, 80, 0) 72%);
  filter: blur(4px);
}

.hero-scene__frame {
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-scene__eyebrow,
.hero-scene__headline,
.hero-scene__subline,
.hero-scene__chips {
  position: relative;
  z-index: 1;
}

.hero-scene__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scene__headline {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-scene__subline {
  max-width: 90%;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.hero-scene__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-scene__chip,
.hero-sponsor-strip__item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-scene__chip {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 85, 53, 0.08);
}

.hero-scene__orbs span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

.hero-scene__orbs span:nth-child(1) {
  top: 18px;
  right: 18px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-scene__orbs span:nth-child(2) {
  right: 46px;
  bottom: 26px;
  width: 108px;
  height: 108px;
  background: radial-gradient(circle, rgba(255, 181, 71, 0.34) 0%, rgba(255, 181, 71, 0) 72%);
}

.hero-scene__orbs span:nth-child(3) {
  left: -16px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 214, 153, 0.22) 0%, rgba(255, 214, 153, 0) 72%);
}

.hero-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hero-kpi {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(107, 85, 53, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.hero-kpi__value {
  font-size: 18px;
  line-height: 1.1;
}

.hero-kpi__label {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
}

.hero-sponsor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-sponsor-strip__item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(107, 85, 53, 0.08);
}

.hero-tasks {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(107, 85, 53, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffaf3 0%, #fffdf9 100%);
}

.hero-tasks[hidden] {
  display: none;
}

.hero-tasks__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-tasks__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.hero-tasks__hint {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: right;
}

.hero-tasks__list {
  display: grid;
  gap: 10px;
}

.hero-tasks__warning {
  margin: 12px 0 0;
  color: #b65400;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-task-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(107, 85, 53, 0.08);
}

.hero-task-item__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 134, 0, 0.1);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 800;
}

.hero-task-item__name {
  min-width: 0;
  font-size: 16px;
  font-weight: 800;
}

.hero-task-item__reward {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 134, 0, 0.12);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-task-item--focus {
  border-color: rgba(239, 111, 0, 0.34);
  background: linear-gradient(135deg, rgba(255, 247, 233, 0.98) 0%, rgba(255, 236, 212, 0.98) 100%);
  box-shadow: 0 12px 24px rgba(239, 111, 0, 0.12);
}

.hero-task-item--focus .hero-task-item__step {
  background: linear-gradient(135deg, #ffb347 0%, #ef6f00 100%);
  color: #fff;
}

.hero-task-item--focus .hero-task-item__name {
  color: var(--accent-deep);
}

.hero-task-item--focus .hero-task-item__reward {
  background: rgba(239, 111, 0, 0.18);
}

.sponsor-feature {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(107, 85, 53, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 12px 24px rgba(27, 20, 11, 0.06);
}

.sponsor-feature[hidden] {
  display: none;
}

.sponsor-feature__header {
  display: grid;
  gap: 8px;
}

.sponsor-feature__eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsor-feature__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.sponsor-feature__intro {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.sponsor-feature__gallery {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.sponsor-feature__media {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 18px;
  background: #f3ede2;
}

.sponsor-feature__media img {
  display: block;
  width: 100%;
  height: auto;
}

.sponsor-feature__media-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.58);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.sponsor-feature__cards {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.sponsor-feature__card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(107, 85, 53, 0.08);
}

.sponsor-feature__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.sponsor-feature__card-text {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.sponsor-feature__quote {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 134, 0, 0.08);
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.brand-feature {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(107, 85, 53, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 12px 24px rgba(27, 20, 11, 0.06);
}

.brand-feature[hidden] {
  display: none;
}

.brand-feature__header,
.brand-feature__grid,
.brand-feature__timeline {
  display: grid;
  gap: 10px;
}

.brand-feature__eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-feature__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.brand-feature__intro {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.brand-feature__grid {
  margin-top: 16px;
}

.brand-feature__card,
.brand-feature__timeline-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(107, 85, 53, 0.08);
}

.brand-feature__tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 134, 0, 0.1);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-feature__card-title,
.brand-feature__timeline-title {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.4;
}

.brand-feature__card-text,
.brand-feature__timeline-text {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.brand-feature__timeline {
  margin-top: 14px;
}

.brand-feature__timeline-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.brand-feature__timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 900;
}

.hero-actions {
  margin-top: 22px;
}

.hero-urgency {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(239, 111, 0, 0.08);
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-urgency[hidden] {
  display: none;
}

.hero-proof {
  margin: 0 0 12px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-proof[hidden] {
  display: none;
}

.section-block {
  margin-top: 18px;
}

.section-block--compact {
  margin-top: 14px;
}

.section-title {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 800;
}

.info-card {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.proof-card {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107, 85, 53, 0.08);
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 243, 225, 0.96) 100%);
  box-shadow: 0 10px 24px rgba(27, 20, 11, 0.06);
}

.proof-copy {
  margin: 0;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.v5-hero-summary {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.96) 0%, rgba(255, 242, 220, 0.96) 100%);
  border: 1px solid rgba(239, 111, 0, 0.12);
}

.v5-hero-summary[hidden] {
  display: none;
}

.v5-hero-summary__match,
.v5-hero-summary__line,
.v5-module-card__title,
.v5-data-list,
.v5-data-list__item,
.v5-reason-list,
.v5-reason-list__item,
.v5-urgency-list,
.v5-urgency-list__item {
  margin: 0;
}

.v5-hero-summary__match {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.v5-hero-summary__line {
  color: var(--text-main);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
}

.v5-hero-summary__line strong {
  color: var(--accent-deep);
}

.v5-module-card {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 246, 232, 0.98) 100%);
}

.v5-module-card__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.v5-data-list,
.v5-result-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.v5-data-list__item,
.v5-result-list__item {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(107, 85, 53, 0.08);
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.v5-data-list__item strong,
.v5-result-list__item strong {
  color: var(--accent-deep);
}

.v5-urgency-note {
  margin: -2px 0 0;
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.match-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.match-teams,
.card-note,
.result-line,
.benefit-line {
  margin: 0;
}

.match-teams {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.prediction-chip {
  flex-shrink: 0;
  min-width: 92px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff8f0;
  text-align: center;
}

.prediction-chip span {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
}

.prediction-chip strong {
  display: block;
  margin-top: 4px;
  color: var(--accent-deep);
  font-size: 22px;
  line-height: 1.1;
}

.card-note {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.decision-card {
  display: grid;
  gap: 14px;
}

.decision-highlight,
.decision-warning,
.module-window-copy {
  margin: 0;
}

.decision-highlight {
  color: var(--text-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.decision-highlight strong {
  color: var(--accent-deep);
}

.decision-warning {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.module-link-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent-deep);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.module-window-copy {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.module-cta-button {
  margin-top: -2px;
}

.result-line,
.benefit-line {
  font-size: 19px;
  line-height: 1.7;
}

.result-line strong {
  color: var(--accent-deep);
}

.cta-button {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #ff9823 0%, var(--accent-deep) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
  box-shadow: 0 14px 26px rgba(239, 111, 0, 0.24);
}

.cta-button:active,
.cta-button.is-pressed {
  transform: translateY(1px) scale(0.99);
}

.cta-button:disabled {
  opacity: 0.78;
  cursor: wait;
}

.cta-hint {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: center;
}

.cta-trust-note,
.auto-redirect-notice {
  margin: 8px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

.cta-trust-note {
  color: var(--text-secondary);
  white-space: pre-line;
}

.auto-redirect-notice {
  color: var(--accent-deep);
  font-weight: 700;
}

.auto-redirect-notice[hidden] {
  display: none;
}

.hero-media {
  display: block;
  width: 100%;
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(27, 20, 11, 0.08);
}

.hero-media[hidden] {
  display: none;
}

.hero-media__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media--top {
  margin: 0 0 16px;
}

@media (max-width: 420px) {
  .v6-banner-card {
    padding: 20px 18px;
    border-radius: 26px;
  }

  .v6-banner-card__title {
    font-size: 25px;
  }

  .v6-banner-card__desc {
    max-width: 100%;
    font-size: 14px;
  }

  .v6-banner-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .v6-benefit-grid {
    gap: 8px;
  }

  .v6-benefit-card {
    min-height: 96px;
    padding: 12px 8px;
    border-radius: 18px;
  }

  .v6-benefit-card__label {
    font-size: 10px;
  }

  .v6-benefit-card__text {
    font-size: 12px;
  }

  .v7-main-card__title {
    font-size: 30px;
  }

  .v7-subtitle-list__item {
    font-size: 16px;
  }

  .v7-point-item {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 14px;
  }

  .v8-game-card__subtitle {
    font-size: 16px;
  }

  .v8-game-panel {
    padding: 24px 14px 20px;
    border-radius: 22px;
  }

  .v8-game-panel__orbit {
    width: 190px;
    height: 190px;
  }

  .v8-action-button {
    min-width: 162px;
    min-height: 162px;
    font-size: 24px;
  }

  .hero-scene {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .hero-scene__headline {
    font-size: 24px;
  }

  .hero-scene__subline {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-kpi-strip {
    grid-template-columns: 1fr;
  }

  .sponsor-feature {
    padding: 16px;
    border-radius: 22px;
  }

  .sponsor-feature__title {
    font-size: 22px;
  }

  .sponsor-feature__media-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
  }

  .hero-task-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .hero-task-item__reward {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: min(calc(100% - 32px), 520px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 24px;
  z-index: 20;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.footer-cta-section {
  margin-top: 20px;
}

.footer-cta-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107, 85, 53, 0.08);
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.98) 0%, rgba(255, 239, 218, 0.98) 100%);
  box-shadow: 0 12px 24px rgba(27, 20, 11, 0.08);
}

.footer-cta-copy {
  margin: 0 0 14px;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.footer-cta-button {
  background: linear-gradient(135deg, #ff8f18 0%, #ef6f00 100%);
}

.cta-button-secondary {
  background: linear-gradient(135deg, #1e69ef 0%, #004fce 100%);
  box-shadow: 0 14px 26px rgba(0, 79, 206, 0.22);
}

.admin-fab {
  position: fixed;
  right: 16px;
  bottom: 112px;
  z-index: 30;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(23, 20, 15, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.admin-panel {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  width: min(100%, 720px);
  max-height: 84vh;
  margin: 0 auto;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.admin-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--card-border);
}

.admin-panel__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-panel__header h2 {
  margin: 0;
  font-size: 20px;
}

.admin-panel__header p {
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.admin-close {
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #f0e7da;
  color: var(--text-main);
  font-weight: 700;
  cursor: pointer;
}

.admin-panel__body {
  overflow: auto;
  max-height: calc(84vh - 88px);
  padding: 18px;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.auth-card {
  padding: 16px;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: #fff8f0;
}

.auth-card h3 {
  margin: 0;
  font-size: 18px;
}

.auth-card p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.login-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.login-form button {
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  background: #17140f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.admin-group {
  display: grid;
  gap: 12px;
}

.admin-group__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.admin-grid {
  display: grid;
  gap: 12px;
}

.admin-field {
  display: grid;
  gap: 6px;
}

.admin-field label {
  font-size: 13px;
  font-weight: 700;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  border: 1px solid #dbcdb7;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fffdf9;
  color: var(--text-main);
  font: inherit;
}

.admin-field textarea {
  min-height: 86px;
  resize: vertical;
}

.admin-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--accent-deep);
}

.admin-field textarea[data-invalid="true"] {
  border-color: #c55346;
  box-shadow: 0 0 0 3px rgba(197, 83, 70, 0.12);
}

.admin-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.admin-actions button {
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  background: #17140f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.admin-actions .danger-button {
  background: #a13124;
}

.admin-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
}

.admin-tip {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #fff8f0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.admin-tip p {
  margin: 0;
}

.admin-tip p + p {
  margin-top: 8px;
}

body.is-admin-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  body {
    padding-top: 28px;
  }

  .admin-panel {
    right: 16px;
    left: auto;
    bottom: 16px;
    width: 420px;
    max-height: calc(100vh - 32px);
    border-radius: 28px;
  }

  .admin-panel__body {
    max-height: calc(100vh - 140px);
  }

  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .sticky-cta,
  .admin-panel {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.96);
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .hero-card,
  .info-card,
  .sticky-cta,
  .admin-panel {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.96);
  }
}

body[data-offer="v9"] {
  --bg: #f3fbf7;
  --bg-glow: rgba(16, 185, 129, 0.12);
  --card: rgba(255, 255, 255, 0.92);
  --card-border: rgba(16, 185, 129, 0.12);
  --text-main: #1f2937;
  --text-secondary: #6b7280;
  --accent: #10b981;
  --accent-deep: #059669;
  --accent-soft: rgba(16, 185, 129, 0.1);
  --shadow: 0 18px 40px rgba(16, 185, 129, 0.1);
}

body[data-offer="v9"] .hero-card,
body[data-offer="v9"] .info-card,
body[data-offer="v9"] .footer-cta-card,
body[data-offer="v9"] .sticky-cta {
  border-color: rgba(16, 185, 129, 0.12);
}

body[data-offer="v9"] .hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 253, 248, 0.98) 100%);
}

body[data-offer="v9"] .hero-copy {
  max-width: 92%;
}

body[data-offer="v9"] .hero-scene {
  background: linear-gradient(135deg, #f3fdf8 0%, #dcfce7 52%, #ffffff 100%);
}

body[data-offer="v9"] .hero-scene__headline {
  max-width: 78%;
}

body[data-offer="v9"] .hero-scene__subline {
  max-width: 78%;
}

body[data-offer="v9"] .hero-kpi,
body[data-offer="v9"] .hero-sponsor-strip__item {
  background: rgba(248, 255, 252, 0.94);
}

body[data-offer="v9"] .hero-tasks {
  background: linear-gradient(180deg, #f8fefb 0%, #ecfdf5 100%);
}

body[data-offer="v10"] {
  --bg: #eef6ff;
  --bg-glow: rgba(59, 130, 246, 0.16);
  --card: rgba(255, 255, 255, 0.92);
  --card-border: rgba(59, 130, 246, 0.14);
  --text-main: #0f172a;
  --text-secondary: #475569;
  --accent: #3b82f6;
  --accent-deep: #2563eb;
  --accent-soft: rgba(59, 130, 246, 0.1);
  --shadow: 0 20px 42px rgba(59, 130, 246, 0.14);
}

body[data-offer="v10"] .hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 245, 255, 0.98) 100%);
}

body[data-offer="v10"] .hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
}

body[data-offer="v10"] .hero-scene {
  background:
    radial-gradient(circle at 86% 24%, rgba(96, 165, 250, 0.32), transparent 18%),
    linear-gradient(135deg, #0f172a 0%, #1d4ed8 42%, #60a5fa 100%);
  color: #eff6ff;
  border-color: rgba(96, 165, 250, 0.18);
}

body[data-offer="v10"] .hero-scene__eyebrow,
body[data-offer="v10"] .hero-scene__chip,
body[data-offer="v10"] .hero-sponsor-strip__item {
  background: rgba(15, 23, 42, 0.24);
  border-color: rgba(191, 219, 254, 0.16);
  color: #dbeafe;
}

body[data-offer="v10"] .hero-scene__headline,
body[data-offer="v10"] .hero-kpi__value {
  color: #ffffff;
}

body[data-offer="v10"] .hero-scene__subline,
body[data-offer="v10"] .hero-kpi__label {
  color: rgba(219, 234, 254, 0.86);
}

body[data-offer="v10"] .hero-kpi {
  background: linear-gradient(180deg, #0f172a 0%, #1e40af 100%);
  border-color: rgba(96, 165, 250, 0.12);
}

body[data-offer="v10"] .hero-tasks {
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
  border-color: rgba(59, 130, 246, 0.12);
}

body[data-offer="v10"] .hero-media {
  margin-top: 16px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.18);
}

body[data-offer="v10"] .hero-media.hero-media--top {
  margin: 0 0 18px;
}

body[data-offer="v10"] .hero-media__image {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
}

body[data-offer="v10"] .cta-button {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.22);
}

body[data-offer="v10"] .cta-button-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  color: #1e3a8a;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

body[data-offer="v11"] {
  --bg: #0a0f1d;
  --bg-glow: rgba(249, 115, 22, 0.2);
  --card: rgba(15, 23, 42, 0.82);
  --card-border: rgba(148, 163, 184, 0.14);
  --text-main: #f8fafc;
  --text-secondary: rgba(226, 232, 240, 0.8);
  --accent: #f97316;
  --accent-deep: #ea580c;
  --accent-soft: rgba(249, 115, 22, 0.14);
  --shadow: 0 24px 56px rgba(2, 6, 23, 0.42);
  background:
    radial-gradient(circle at top center, rgba(249, 115, 22, 0.16), transparent 22%),
    linear-gradient(180deg, #0a0f1d 0%, #111827 100%);
}

body[data-offer="v11"] .hero-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.94) 0%, rgba(17, 24, 39, 0.94) 100%);
}

body[data-offer="v11"] .hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 45%, #60a5fa 100%);
}

body[data-offer="v11"] .hero-scene {
  background:
    radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.28), transparent 18%),
    radial-gradient(circle at 16% 84%, rgba(249, 115, 22, 0.2), transparent 20%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(24, 24, 27, 0.98) 100%);
  border-color: rgba(148, 163, 184, 0.16);
}

body[data-offer="v11"] .hero-scene__eyebrow,
body[data-offer="v11"] .hero-scene__chip,
body[data-offer="v11"] .hero-sponsor-strip__item {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #e2e8f0;
}

body[data-offer="v11"] .hero-scene__headline,
body[data-offer="v11"] .hero-kpi__value {
  color: #f8fafc;
}

body[data-offer="v11"] .hero-scene__subline,
body[data-offer="v11"] .hero-kpi__label {
  color: rgba(226, 232, 240, 0.8);
}

body[data-offer="v11"] .hero-kpi {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(148, 163, 184, 0.14);
}

body[data-offer="v11"] .hero-badge {
  background: rgba(249, 115, 22, 0.14);
  color: #fdba74;
}

body[data-offer="v11"] .hero-card h1 {
  font-size: clamp(34px, 8.6vw, 46px);
  line-height: 1.06;
  color: #f8fafc;
}

body[data-offer="v11"] .hero-copy,
body[data-offer="v11"] .hero-proof,
body[data-offer="v11"] .footer-cta-copy,
body[data-offer="v11"] .cta-trust-note {
  color: rgba(226, 232, 240, 0.82);
}

body[data-offer="v11"] .hero-tasks {
  border-color: rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.88) 100%);
}

body[data-offer="v11"] .sponsor-feature,
body[data-offer="v11"] .brand-feature {
  border-color: rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.88) 100%);
}

body[data-offer="v11"] .sponsor-feature__title,
body[data-offer="v11"] .sponsor-feature__card-title,
body[data-offer="v11"] .sponsor-feature__quote,
body[data-offer="v11"] .brand-feature__title,
body[data-offer="v11"] .brand-feature__card-title,
body[data-offer="v11"] .brand-feature__timeline-title {
  color: #f8fafc;
}

body[data-offer="v11"] .sponsor-feature__intro,
body[data-offer="v11"] .sponsor-feature__card-text,
body[data-offer="v11"] .brand-feature__intro,
body[data-offer="v11"] .brand-feature__card-text,
body[data-offer="v11"] .brand-feature__timeline-text {
  color: rgba(226, 232, 240, 0.8);
}

body[data-offer="v11"] .sponsor-feature__card,
body[data-offer="v11"] .brand-feature__card,
body[data-offer="v11"] .brand-feature__timeline-item {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.12);
}

body[data-offer="v11"] .brand-feature__tag,
body[data-offer="v11"] .brand-feature__timeline-year {
  background: rgba(249, 115, 22, 0.14);
  color: #fdba74;
}

body[data-offer="v11"] .sponsor-feature__quote {
  background: rgba(249, 115, 22, 0.08);
}

body[data-offer="v11"] .hero-task-item {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.12);
}

body[data-offer="v11"] .hero-task-item__name,
body[data-offer="v11"] .hero-tasks__title {
  color: #f8fafc;
}

body[data-offer="v11"] .hero-task-item__step,
body[data-offer="v11"] .hero-task-item__reward {
  background: rgba(249, 115, 22, 0.14);
  color: #fdba74;
}

body[data-offer="v11"] .hero-task-item--focus {
  border-color: rgba(249, 115, 22, 0.26);
  background: linear-gradient(135deg, rgba(41, 26, 18, 0.98) 0%, rgba(30, 41, 59, 0.96) 100%);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.12);
}

body[data-offer="v11"] .hero-task-item--focus .hero-task-item__step {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
}

body[data-offer="v11"] .hero-urgency {
  background: rgba(249, 115, 22, 0.1);
  color: #fdba74;
}

body[data-offer="v11"] .info-card,
body[data-offer="v11"] .footer-cta-card,
body[data-offer="v11"] .sticky-cta {
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.82);
}

body[data-offer="v11"] .section-title,
body[data-offer="v11"] .result-line,
body[data-offer="v11"] .benefit-line {
  color: #f8fafc;
}

body[data-offer="v11"] .cta-button {
  background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 18px 30px rgba(249, 115, 22, 0.24);
}

body[data-offer="v11"] .cta-button-secondary {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

body[data-offer="v12"] {
  --bg: #f4f7ff;
  --bg-glow: rgba(88, 118, 255, 0.2);
  --card: rgba(255, 255, 255, 0.9);
  --card-border: rgba(95, 112, 188, 0.14);
  --text-main: #0f172a;
  --text-secondary: #52607a;
  --accent: #4f46e5;
  --accent-deep: #3730a3;
  --accent-soft: rgba(79, 70, 229, 0.1);
  --shadow: 0 24px 56px rgba(58, 76, 138, 0.16);
  background:
    radial-gradient(circle at top center, rgba(99, 102, 241, 0.18), transparent 24%),
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.14), transparent 22%),
    linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
}

body[data-offer="v12"] .v7-main-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 24px;
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 18%, rgba(56, 189, 248, 0.18), transparent 18%),
    radial-gradient(circle at 12% 88%, rgba(129, 140, 248, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 255, 0.98) 100%);
  box-shadow: 0 28px 64px rgba(68, 84, 160, 0.16);
}

body[data-offer="v12"] .v7-main-card::before {
  content: "NEW USER ACCESS";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.12), rgba(14, 165, 233, 0.12));
  color: #4338ca;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body[data-offer="v12"] .v7-main-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

body[data-offer="v12"] .v7-main-card__title {
  position: relative;
  z-index: 1;
  max-width: 92%;
  font-size: clamp(36px, 8vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

body[data-offer="v12"] .v7-subtitle-list {
  position: relative;
  z-index: 1;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 102, 241, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

body[data-offer="v12"] .v7-subtitle-list__item {
  color: #334155;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

body[data-offer="v12"] .v7-subtitle-list__item:first-child {
  color: #111827;
  font-size: 17px;
  font-weight: 800;
}

body[data-offer="v12"] .v7-cta-group {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

body[data-offer="v12"] .v7-primary-button {
  min-height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #5b5cf0 0%, #3730a3 52%, #0f172a 100%);
  box-shadow: 0 18px 34px rgba(67, 56, 202, 0.28);
}

body[data-offer="v12"] .v7-point-list {
  position: relative;
  z-index: 1;
  gap: 12px;
  margin-top: 20px;
}

body[data-offer="v12"] .v7-point-item {
  position: relative;
  align-items: flex-start;
  min-height: 0;
  padding: 15px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 247, 255, 0.96) 100%);
  border: 1px solid rgba(99, 102, 241, 0.1);
  box-shadow: 0 14px 28px rgba(84, 98, 170, 0.08);
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

body[data-offer="v12"] .v7-point-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(79, 70, 229, 0.2);
}

body[data-offer="v12"] .v7-helper-note {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 0 8px;
  color: #5b6782;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

body[data-offer="v12"] .v7-loading-text {
  color: #4338ca;
}

@media (max-width: 420px) {
  body[data-offer="v12"] .v7-main-card {
    padding: 20px 18px 22px;
    border-radius: 28px;
  }

  body[data-offer="v12"] .v7-main-card__title {
    max-width: 100%;
    font-size: 32px;
  }

  body[data-offer="v12"] .v7-subtitle-list {
    padding: 14px;
    border-radius: 20px;
  }

  body[data-offer="v12"] .v7-point-item {
    padding: 14px;
    border-radius: 18px;
  }
}

html[dir="rtl"] body[data-offer="v9"] {
  text-align: right;
}

html[dir="rtl"] body[data-offer="v9"] .hero-copy,
html[dir="rtl"] body[data-offer="v9"] .hero-urgency,
html[dir="rtl"] body[data-offer="v9"] .hero-proof,
html[dir="rtl"] body[data-offer="v9"] .cta-hint,
html[dir="rtl"] body[data-offer="v9"] .cta-trust-note,
html[dir="rtl"] body[data-offer="v9"] .footer-cta-copy,
html[dir="rtl"] body[data-offer="v9"] .hero-scene__eyebrow,
html[dir="rtl"] body[data-offer="v9"] .hero-scene__headline,
html[dir="rtl"] body[data-offer="v9"] .hero-scene__subline,
html[dir="rtl"] body[data-offer="v9"] .hero-kpi__label,
html[dir="rtl"] body[data-offer="v9"] .hero-task-item__name,
html[dir="rtl"] body[data-offer="v9"] .hero-task-item__reward,
html[dir="rtl"] body[data-offer="v9"] .hero-tasks__warning {
  text-align: right;
}

html[dir="rtl"] body[data-offer="v9"] .hero-tasks__header {
  flex-direction: row-reverse;
}

html[dir="rtl"] body[data-offer="v9"] .hero-tasks__hint {
  text-align: left;
}

html[dir="rtl"] body[data-offer="v9"] .hero-task-item {
  direction: rtl;
}

html[dir="rtl"] body[data-offer="v9"] .hero-scene__chips,
html[dir="rtl"] body[data-offer="v9"] .hero-sponsor-strip {
  justify-content: flex-end;
}

html[dir="rtl"] body[data-offer="v9"] .hero-scene__orbs span:nth-child(1) {
  left: 18px;
  right: auto;
}

html[dir="rtl"] body[data-offer="v9"] .hero-scene__orbs span:nth-child(2) {
  left: 46px;
  right: auto;
}

html[dir="rtl"] body[data-offer="v9"] .hero-scene__orbs span:nth-child(3) {
  right: -16px;
  left: auto;
}

html[dir="rtl"] body[data-offer="v9"] .sponsor-feature__quote {
  border-right: 4px solid var(--accent);
  border-left: 0;
  border-radius: 18px 0 0 18px;
}
