@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --c-bg: #000002;
  --c-header: #18191b;
  --c-btn-login: #0e0e0e;
  --c-btn-reg: #dd4c5d;
  --c-text: #e8e8f0;
  --c-text-muted: #9a9aaf;
  --c-accent: #dd4c5d;
  --c-accent2: #f0a500;
  --c-card: #111216;
  --c-border: #2a2b30;
  --c-green: #2ecc71;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.xp71k {
  display: none;
}
.qm9lv {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.bc3r2x {
  position: absolute;
  left: -9999px;
}

.hdr-wrap {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.hdr-logo {
  flex-shrink: 0;
}

.hdr-logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
}

.hdr-online {
  font-size: 11px;
  color: var(--c-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.hdr-online span {
  color: var(--c-green);
  font-weight: 600;
  font-size: 12px;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.hdr-nav a {
  color: var(--c-text);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.hdr-nav a:hover {
  background: rgba(221, 76, 93, 0.15);
  color: var(--c-accent);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}

.btn-login {
  background: var(--c-btn-login);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn-login:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-reg {
  background: var(--c-btn-reg);
  color: #fff;
  box-shadow: 0 4px 15px rgba(221, 76, 93, 0.35);
}

.btn-reg:hover {
  background: #e85566;
  box-shadow: 0 6px 22px rgba(221, 76, 93, 0.5);
}

.btn-bonus {
  background: linear-gradient(135deg, #dd4c5d, #f0a500);
  color: #fff;
  box-shadow: 0 4px 15px rgba(221, 76, 93, 0.3);
}

.btn-bonus:hover {
  box-shadow: 0 6px 22px rgba(221, 76, 93, 0.5);
}

.btn-primary {
  background: var(--c-btn-reg);
  color: #fff;
  padding: 13px 32px;
  font-size: 15px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(221, 76, 93, 0.4);
}

.btn-primary:hover {
  background: #e85566;
  box-shadow: 0 8px 28px rgba(221, 76, 93, 0.55);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 11px 28px;
  font-size: 14px;
  border-radius: var(--radius-md);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--c-btn-login);
  color: #fff;
  border: 1px solid var(--c-border);
  padding: 11px 24px;
  border-radius: var(--radius-md);
}

.btn-dark:hover {
  background: #1c1c1e;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.burger-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--c-header);
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 480px;
  align-items: center;
  overflow: hidden;
}

.hero-slide.active {
  display: flex;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-slide-content h1,
.hero-slide-content .hero-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}

.hero-slide-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background var(--transition),
    width var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--c-accent);
  width: 24px;
  border-radius: 4px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 18px;
}

.slider-arrow:hover {
  background: var(--c-accent);
}
.slider-arrow.prev {
  left: 20px;
}
.slider-arrow.next {
  right: 20px;
}

.section {
  padding: 64px 0;
}

.section-sm {
  padding: 40px 0;
}

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  text-wrap: balance;
}

.section-subtitle {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.section-head {
  margin-bottom: 40px;
}

.tag-accent {
  display: inline-block;
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  flex: 1 1 220px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(221, 76, 93, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(221, 76, 93, 0.2);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.feature-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.app-section {
  background: var(--c-card);
}

.app-table-wrap {
  overflow-x: auto;
  margin: 0 0 28px;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.app-table th,
.app-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 14px;
}

.app-table thead th {
  background: rgba(221, 76, 93, 0.12);
  color: var(--c-accent);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-table tbody tr {
  transition: background var(--transition);
}
.app-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.app-table tbody td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
}

.dl-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition:
    border-color var(--transition),
    background var(--transition);
  text-decoration: none;
}

.dl-btn:hover {
  border-color: var(--c-accent);
  background: rgba(221, 76, 93, 0.08);
}

.dl-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.dl-btn-label {
  display: flex;
  flex-direction: column;
}
.dl-btn-label small {
  font-size: 10px;
  color: var(--c-text-muted);
  font-weight: 400;
}
.dl-btn-label strong {
  font-size: 14px;
  font-weight: 700;
}

.bonuses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bonus-card {
  flex: 1 1 280px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
}

.bonus-card-img {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.bonus-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
}

.bonus-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 6px;
}

.bonus-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.bonus-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.bonus-card-footer {
  margin-top: auto;
}

.demo-section {
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.demo-frame-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  aspect-ratio: 16/9;
  background: #050507;
}

.demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin: 0 0 32px;
}

.content-block h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.content-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 24px 0 12px;
}
.content-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  margin: 18px 0 8px;
}
.content-block p {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-block ul,
.content-block ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-block li {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 6px;
}
.content-block a {
  color: var(--c-accent);
}
.content-block a:hover {
  text-decoration: underline;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-block table th,
.content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  font-size: 14px;
  text-align: left;
}
.content-block table thead th {
  background: rgba(221, 76, 93, 0.1);
  color: var(--c-accent);
}
.content-block strong {
  color: #fff;
  font-weight: 600;
}
.content-block blockquote {
  border-left: 3px solid var(--c-accent);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--c-accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--transition);
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.ftr-wrap {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}

.ftr-inner {
  padding: 48px 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ftr-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.ftr-brand {
  flex: 0 0 auto;
  max-width: 220px;
}

.ftr-brand img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.ftr-brand p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.ftr-col {
  flex: 1 1 140px;
}

.ftr-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.ftr-col a {
  display: block;
  color: var(--c-text-muted);
  font-size: 13px;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.ftr-col a:hover {
  color: var(--c-accent);
}

.ftr-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.ftr-pay-badge {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
}

.ftr-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.ftr-prov-badge {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.ftr-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
}

.ftr-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.ftr-copyright {
  font-size: 12px;
  color: var(--c-text-muted);
}

.ftr-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ftr-legal a {
  font-size: 12px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.ftr-legal a:hover {
  color: var(--c-accent);
}

.ftr-disclaimer {
  font-size: 11px;
  color: #555;
  padding-bottom: 16px;
  line-height: 1.6;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0e0e0e 0%, #1a0a0d 100%);
  border-top: 1px solid rgba(221, 76, 93, 0.3);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-widget-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.sticky-widget-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.sticky-widget-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sticky-widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  line-height: 1;
}

.sticky-widget-close:hover {
  color: #fff;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.data-table th,
.data-table td {
  padding: 13px 16px;
  border: 1px solid var(--c-border);
  font-size: 14px;
  text-align: left;
}

.data-table thead th {
  background: rgba(221, 76, 93, 0.12);
  color: var(--c-accent);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table tbody tr {
  transition: background var(--transition);
}
.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}
.data-table tbody td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
}
.data-table tbody td:last-child {
  color: #fff;
  font-weight: 500;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  flex: 1 1 260px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: var(--c-accent);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-meta {
  flex: 1;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.review-date {
  font-size: 12px;
  color: var(--c-text-muted);
}

.review-stars {
  color: var(--c-accent2);
  font-size: 14px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.review-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.review-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.form-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--c-accent);
  background: rgba(221, 76, 93, 0.05);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-msg {
  display: none;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--c-green);
  font-size: 14px;
  font-weight: 500;
}

.toc-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: 28px 28px 20px;
  margin-bottom: 32px;
}

.toc-block h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
  transition: color var(--transition);
  counter-increment: toc;
}

.toc-item::before {
  content: counter(toc);
  min-width: 22px;
  height: 22px;
  background: rgba(221, 76, 93, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}

.toc-item a {
  color: inherit;
  transition: color var(--transition);
}
.toc-item:hover a {
  color: var(--c-accent);
}

.promo-code-block {
  background: linear-gradient(135deg, #1a0206 0%, #200508 100%);
  border: 1px solid rgba(221, 76, 93, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  margin: 32px 0;
}

.promo-code-block h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.promo-code-block p {
  color: var(--c-text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--c-accent);
  max-width: 360px;
  width: 100%;
}

.promo-code-text {
  flex: 1;
  background: rgba(221, 76, 93, 0.08);
  padding: 14px 20px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--c-accent);
  font-family: monospace;
}

.promo-copy-btn {
  background: var(--c-accent);
  border: none;
  padding: 14px 20px;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", Arial, sans-serif;
  transition: background var(--transition);
}

.promo-copy-btn:hover {
  background: #e85566;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th,
.compare-table td {
  padding: 13px 16px;
  border: 1px solid var(--c-border);
  font-size: 14px;
  text-align: left;
}

.compare-table thead th {
  background: rgba(221, 76, 93, 0.1);
  color: var(--c-accent);
  font-weight: 700;
  font-size: 13px;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}
.compare-table .check {
  color: var(--c-green);
  font-weight: 700;
}
.compare-table .cross {
  color: var(--c-accent);
}
.compare-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
}

.reg-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0;
}

.reg-method-card {
  flex: 1 1 200px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.reg-method-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.reg-method-card .method-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.reg-method-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.reg-method-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.safety-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.safety-card {
  flex: 1 1 240px;
  background: var(--c-card);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.safety-card .s-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.safety-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.safety-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.deposit-bonus-block {
  background: linear-gradient(135deg, #0d1a10 0%, #0a1a0d 100%);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.deposit-bonus-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--c-green);
  line-height: 1;
}
.deposit-bonus-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.deposit-bonus-desc {
  flex: 1;
  min-width: 200px;
}
.deposit-bonus-desc h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.deposit-bonus-desc p {
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.author-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 32px 0;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--c-accent);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-info .author-role {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.author-info p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.author-socials {
  display: flex;
  gap: 10px;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--c-text);
  transition:
    border-color var(--transition),
    color var(--transition);
}

.author-social-link:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.provider-badge {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  transition:
    border-color var(--transition),
    color var(--transition);
  cursor: default;
}

.provider-badge:hover {
  border-color: var(--c-accent);
  color: #fff;
}

.slots-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.slot-feature {
  flex: 1 1 200px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.slot-feature:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
}
.slot-feature .sf-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.slot-feature h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.slot-feature p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.alternatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.alt-card {
  flex: 1 1 180px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.alt-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.alt-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.alt-card p {
  font-size: 12px;
  color: var(--c-text-muted);
}
.alt-card .alt-bonus {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: 8px;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 13px;
  color: var(--c-text-muted);
}

.breadcrumb-row a {
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.breadcrumb-row a:hover {
  color: var(--c-accent);
}
.breadcrumb-row .bc-sep {
  color: #444;
}
.breadcrumb-row .bc-current {
  color: var(--c-text);
}

.page-bg-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--c-header);
}

.page-bg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.page-bg-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 700px;
}

.page-bg-hero-content h1 {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}

.page-bg-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.advantages-after-reg {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.adv-card {
  flex: 1 1 180px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.adv-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
}
.adv-card .adv-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.adv-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.adv-card p {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.technical-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin: 32px 0;
}

.technical-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.technical-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin: 22px 0 10px;
}
.technical-content p {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.technical-content ul,
.technical-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.technical-content li {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 6px;
}
.technical-content a {
  color: var(--c-accent);
}
.technical-content a:hover {
  text-decoration: underline;
}

.mobile-slider {
  display: none;
}

.text-center {
  text-align: center;
}
.text-accent {
  color: var(--c-accent);
}
.text-muted {
  color: var(--c-text-muted);
}
.mb-0 {
  margin-bottom: 0;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}

.hero-static {
  min-height: 400px;
  display: flex;
  align-items: center;
  background: var(--c-header);
  position: relative;
  overflow: hidden;
}

.hero-static-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.hero-static-content {
  position: relative;
  z-index: 2;
  padding: 70px 40px;
  max-width: 700px;
}

.hero-static-content h1 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-static-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  line-height: 1.6;
}

.bonus-slider-mobile {
  position: relative;
}

.n4p2x {
  display: none;
  height: 0;
  overflow: hidden;
}
.wp-content-version {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(221, 76, 93, 0.4);
  }
  50% {
    box-shadow: 0 0 24px rgba(221, 76, 93, 0.7);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease both;
}
.animate-fade-in-2 {
  animation: fadeInUp 0.6s 0.15s ease both;
}
.animate-fade-in-3 {
  animation: fadeInUp 0.6s 0.3s ease both;
}

.btn-reg {
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 16px;
}

.accent-section {
  background: linear-gradient(135deg, #1a0206 0%, #200508 100%);
}

.promo-accent-block {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  background: linear-gradient(
    135deg,
    rgba(221, 76, 93, 0.08) 0%,
    rgba(240, 165, 0, 0.06) 100%
  );
  border: 1px solid rgba(221, 76, 93, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.promo-accent-text {
  flex: 1;
  min-width: 280px;
}

.promo-accent-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.promo-accent-text p {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.promo-accent-text ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-accent-text li {
  font-size: 14px;
  color: var(--c-text);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.promo-accent-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-green);
  font-weight: 700;
}

.promo-accent-action {
  text-align: center;
  flex-shrink: 0;
}

.promo-bonus-badge {
  font-size: 48px;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.promo-accent-note {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 10px;
}

.security-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.security-card {
  flex: 1 1 240px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.security-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
}

.security-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(221, 76, 93, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(221, 76, 93, 0.2);
}

.security-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.security-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.provider-card {
  flex: 1 1 220px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.provider-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
}

.provider-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}

.provider-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.provider-stat {
  font-size: 13px;
  color: var(--c-accent);
}

.provider-stat strong {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1024px) {
  .hdr-nav a {
    font-size: 12px;
    padding: 6px 8px;
  }
}

@media (max-width: 860px) {
  .hdr-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--c-header);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-top: 1px solid var(--c-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 999;
    gap: 2px;
  }

  .hdr-nav.open {
    display: flex;
  }

  .hdr-nav a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }

  .burger-btn {
    display: flex;
  }

  .bonuses-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .bonuses-grid::-webkit-scrollbar {
    height: 4px;
  }
  .bonuses-grid::-webkit-scrollbar-track {
    background: var(--c-card);
  }
  .bonuses-grid::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 2px;
  }

  .bonus-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .features-grid {
    gap: 12px;
  }
  .feature-card {
    flex: 1 1 160px;
    padding: 20px 16px;
  }

  .hero-slide-content {
    padding: 50px 20px;
  }
  .hero-slide {
    min-height: 380px;
  }

  .page-bg-hero-content {
    padding: 50px 20px;
  }
  .hero-static-content {
    padding: 50px 20px;
  }

  .content-block {
    padding: 24px 18px;
  }
  .technical-content {
    padding: 24px 18px;
  }

  .deposit-bonus-block {
    padding: 28px 22px;
  }

  .author-block {
    padding: 20px;
  }

  .sticky-widget {
    flex-wrap: wrap;
    gap: 10px;
  }
  .sticky-widget-text {
    font-size: 13px;
  }

  .reg-methods-grid {
    gap: 12px;
  }
  .reg-method-card {
    flex: 1 1 160px;
  }

  .ftr-top {
    gap: 24px;
  }
  .ftr-col {
    flex: 1 1 110px;
  }

  .dl-btns {
    flex-direction: column;
  }
  .dl-btn {
    justify-content: flex-start;
  }

  .security-grid {
    gap: 12px;
  }
  .security-card {
    flex: 1 1 160px;
    padding: 20px 16px;
  }

  .promo-accent-block {
    padding: 28px 22px;
    gap: 24px;
  }

  .provider-card {
    flex: 1 1 160px;
    padding: 20px 16px;
  }
}

@media (max-width: 520px) {
  .hdr-actions .btn-login {
    display: none;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .section {
    padding: 44px 0;
  }
  .promo-code-block {
    padding: 28px 18px;
  }
  .ftr-inner {
    padding: 32px 16px 16px;
  }
  .compare-table th,
  .compare-table td {
    padding: 10px 10px;
    font-size: 13px;
  }

  .promo-accent-block {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }
  .promo-accent-text {
    min-width: 0;
  }
  .promo-accent-text ul {
    text-align: left;
  }
  .promo-bonus-badge {
    font-size: 40px;
  }

  .security-card {
    flex: 1 1 100%;
  }
  .provider-card {
    flex: 1 1 100%;
  }
}
