*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #0b0c0d;
  --c-surface: #111315;
  --c-surface2: #181a1c;
  --c-border: #252729;
  --c-accent: #bbeb00;
  --c-accent-hover: #ceff00;
  --c-btn-dark: #1f2021;
  --c-btn-dark-hover: #2c2e30;
  --c-text: #e8eaec;
  --c-text-muted: #8a9099;
  --c-text-dim: #5a6170;
  --c-white: #ffffff;
  --c-green: #22c55e;
  --c-red: #ef4444;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-card: 0 2px 24px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 0 24px rgba(187, 235, 0, 0.18);
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: "Inter", "Montserrat", "Roboto", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--c-accent-hover);
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 72px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--c-accent);
  color: #0b0c0d;
  border-color: var(--c-accent);
}
.btn--primary:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  box-shadow: var(--shadow-accent);
  color: #0b0c0d;
  transform: translateY(-1px);
}
.btn--dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--dark:hover {
  background: var(--c-btn-dark-hover);
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.btn--lg {
  font-size: 1.05rem;
  padding: 15px 32px;
  border-radius: var(--r-md);
}
.btn--outline {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn--outline:hover {
  background: var(--c-accent);
  color: #0b0c0d;
}
.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(187, 235, 0, 0.12);
  color: var(--c-accent);
  border: 1px solid rgba(187, 235, 0, 0.25);
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 12px;
  text-wrap: balance;
}
.section-sub {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
}
.section-head {
  margin-bottom: 48px;
}
.section-head .tag {
  margin-bottom: 14px;
}

.accent {
  color: var(--c-accent);
}
.text-muted {
  color: var(--c-text-muted);
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}
.header-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--c-accent);
  background: rgba(187, 235, 0, 0.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  padding: 5px 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  white-space: nowrap;
}
.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--transition);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-bg);
  z-index: 800;
  padding: 24px 20px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  border-top: 1px solid var(--c-border);
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu a {
  color: var(--c-text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}
.mobile-menu a:hover {
  background: var(--c-surface);
  border-color: var(--c-border);
  color: var(--c-accent);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.92) 40%,
    rgba(11, 12, 13, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.3);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero h1 span {
  color: var(--c-accent);
}
.hero-sub {
  color: var(--c-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-bonus-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(187, 235, 0, 0.08);
  border: 1px solid rgba(187, 235, 0, 0.2);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  color: var(--c-text-muted);
}
.hero-bonus-tag strong {
  color: var(--c-accent);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-card {
  flex: 1 1 240px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(187, 235, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.app-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.app-info {
  flex: 1 1 320px;
}
.app-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 28px;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 380px;
}
.app-table th,
.app-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 0.875rem;
}
.app-table th {
  background: var(--c-surface2);
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.app-table td {
  background: var(--c-surface);
  color: var(--c-text);
}
.app-table tr:hover td {
  background: var(--c-surface2);
}
.app-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
}
.app-dl-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  color: var(--c-text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.dl-btn:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.dl-btn svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.dl-btn-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dl-btn-label small {
  font-size: 0.68rem;
  color: var(--c-text-muted);
  font-weight: 400;
}
.dl-btn-label span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-white);
}
.dl-btn:hover .dl-btn-label small,
.dl-btn:hover .dl-btn-label span {
  color: inherit;
}
.app-visual {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
}
.app-phone {
  width: 220px;
  height: 380px;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.app-phone-screen {
  position: absolute;
  inset: 8px;
  background: linear-gradient(135deg, var(--c-surface2) 0%, #0d1117 100%);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.app-phone-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--c-accent);
}
.app-phone-sub {
  font-size: 0.7rem;
  color: var(--c-text-muted);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.promo-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.promo-card {
  flex: 1 1 300px;
  background: var(--c-surface);
  border: 2px solid rgba(187, 235, 0, 0.25);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 0 40px rgba(187, 235, 0, 0.07);
}
.promo-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.promo-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--c-surface2);
  border: 2px solid var(--c-accent);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.promo-code-text {
  flex: 1;
  padding: 16px 20px;
  font-family: "Montserrat", monospace;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  text-align: center;
}
.promo-copy-btn {
  padding: 0 18px;
  background: var(--c-accent);
  color: #0b0c0d;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  height: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.promo-copy-btn:hover {
  background: var(--c-accent-hover);
}
.promo-copy-btn.copied {
  background: #22c55e;
  color: #fff;
}
.promo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.promo-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  animation: pulse 2s infinite;
}
.promo-activate-btn {
  width: 100%;
}
.promo-info {
  flex: 1 1 280px;
}
.promo-info-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.promo-info-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-white);
  margin-bottom: 16px;
}
.promo-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promo-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(187, 235, 0, 0.15);
  border: 1px solid rgba(187, 235, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}
.step-text {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  padding-top: 4px;
}
.step-text strong {
  color: var(--c-text);
}

.wheel-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.wheel-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.wheel-canvas-wrap {
  position: relative;
  width: 300px;
  height: 300px;
}
.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--c-accent);
  filter: drop-shadow(0 0 6px var(--c-accent));
  z-index: 2;
}
#wheelCanvas {
  border-radius: 50%;
  box-shadow:
    0 0 0 4px var(--c-border),
    0 0 40px rgba(187, 235, 0, 0.15);
}
.wheel-info {
  max-width: 380px;
}
.wheel-info h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--c-white);
  margin-bottom: 12px;
}
.wheel-info p {
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.wheel-result {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  display: none;
  animation: fadeIn 0.4s ease;
}
.wheel-result.win {
  border-color: rgba(187, 235, 0, 0.4);
  background: rgba(187, 235, 0, 0.06);
}
.wheel-result.lose {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
}
.wheel-result h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.wheel-result.win h3 {
  color: var(--c-accent);
}
.wheel-result.lose h3 {
  color: var(--c-red);
}
.wheel-result p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.content-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 48px 40px;
}
.content-block h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--c-white);
  margin: 28px 0 14px;
}
.content-block h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-white);
  margin: 22px 0 10px;
}
.content-block h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
  margin: 16px 0 8px;
}
.content-block p {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-block a {
  color: var(--c-accent);
}
.content-block ul,
.content-block ol {
  margin: 14px 0 18px 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-block ul li,
.content-block ol li {
  color: var(--c-text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.content-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}
.content-block ol {
  counter-reset: ol-counter;
}
.content-block ol li {
  counter-increment: ol-counter;
}
.content-block ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.content-block table th,
.content-block table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 0.875rem;
}
.content-block table th {
  background: var(--c-surface2);
  color: var(--c-text-muted);
  font-weight: 600;
}
.content-block table td {
  color: var(--c-text);
}
.content-block blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 14px 20px;
  margin: 16px 0;
  background: rgba(187, 235, 0, 0.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.content-block strong {
  color: var(--c-text);
  font-weight: 600;
}
.content-block em {
  color: var(--c-text-muted);
}
.content-block hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}
.content-block h2:first-child,
.content-block h3:first-child {
  margin-top: 0;
}

.author-card {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.author-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(187, 235, 0, 0.3);
  flex-shrink: 0;
}
.author-body {
  flex: 1 1 260px;
}
.author-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-white);
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.8rem;
  color: var(--c-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.author-bio {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: var(--transition);
}
.author-link:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding-top: 56px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  flex: 1 1 220px;
  max-width: 300px;
}
.footer-logo img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-license {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  line-height: 1.5;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2;
}
.footer-col h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--c-text-dim);
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--c-accent);
}
.footer-mid {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 32px 0;
  margin-bottom: 32px;
}
.footer-logos-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-logos-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 10px;
  display: block;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.provider-chip,
.payment-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: var(--transition);
}
.provider-chip:hover,
.payment-chip:hover {
  border-color: rgba(187, 235, 0, 0.3);
  color: var(--c-text);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--c-text-dim);
}
.footer-legal {
  font-size: 0.72rem;
  color: var(--c-text-dim);
  max-width: 700px;
  line-height: 1.5;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: linear-gradient(135deg, #111315 0%, #0f1112 100%);
  border-top: 2px solid rgba(187, 235, 0, 0.3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
}
.widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.widget-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--c-white);
}
.widget-sub {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.widget-sub strong {
  color: var(--c-accent);
}
.widget-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-text-muted);
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.widget-close:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.sticky-widget.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.5s ease both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--c-text-dim);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--c-text-muted);
}
.breadcrumb a:hover {
  color: var(--c-accent);
}
.breadcrumb-sep {
  color: var(--c-text-dim);
}

.scroll-indicator {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(187, 235, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  cursor: pointer;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.xb7k2 {
  display: none;
}
.xk9q1 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp-block-spacer {
  display: none;
}

@media (max-width: 1024px) {
  .section {
    padding: 56px 0;
  }
  .hero-content {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .section {
    padding: 44px 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 44px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .features-grid {
    gap: 14px;
  }
  .feature-card {
    flex: 1 1 100%;
  }
  .app-section .container {
    flex-direction: column;
    gap: 32px;
  }
  .promo-section .container {
    flex-direction: column;
  }
  .promo-card {
    padding: 24px 20px;
  }
  .wheel-section .container {
    flex-direction: column;
  }
  .wheel-canvas-wrap {
    width: 260px;
    height: 260px;
  }
  #wheelCanvas {
    width: 260px;
    height: 260px;
  }
  .content-block {
    padding: 28px 20px;
  }
  .author-card {
    padding: 24px 20px;
  }
  .footer-top {
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-widget {
    padding: 12px 16px;
  }
  .header-actions .btn {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .promo-code-text {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }
  .wheel-canvas-wrap {
    width: 240px;
    height: 240px;
  }
  #wheelCanvas {
    width: 240px;
    height: 240px;
  }
}

.wp-content-loader {
  display: none;
}
.elementor-hidden {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
._enqueued-assets {
  display: none;
}
.woocommerce-notices-wrapper {
  display: none;
}
.kd92ms {
  pointer-events: none;
  position: absolute;
  left: -9999px;
}
.ql7xp3 {
  opacity: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
