:root {
  --bg: #1A0B10;
  --surface: #2A1118;
  --text: #FFF1F2;
  --muted: #FDA4AF;
  --primary: #FB7185;
  --secondary: #F97316;
  --accent: #FACC15;
  --border: rgba(255, 241, 242, 0.12);
  --max-w: 1200px;
  --mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--mono);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.disclosure-bar {
  display: flex;
  width: 100%;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}

.disclosure-icon-zone {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--bg);
  font-size: 16px;
  font-weight: 700;
}

.disclosure-text-zone {
  flex: 1;
  background: rgba(255, 241, 242, 0.06);
  padding: 8px 14px;
  display: flex;
  align-items: center;
}

.disclosure-text-zone p {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  text-align: left;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo img {
  height: 32px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header__nav a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 10px 10px;
  position: relative;
  transition: color 0.2s;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-header__nav a:hover {
  color: var(--text);
}

.site-header__nav a:hover::after {
  width: 100%;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 11, 16, 0.75);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 72px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer a {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 12px 14px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-drawer a:hover,
.nav-drawer a:focus {
  color: var(--text);
  border-left-color: var(--accent);
  background: rgba(250, 204, 21, 0.06);
}

.hero {
  background: var(--bg);
  padding: 64px 24px;
  text-align: center;
}

.hero__title {
  font-family: var(--mono);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 2px #FFF1F2;
  color: transparent;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 20px;
  }

  .hero__title {
    -webkit-text-stroke: 1px #FFF1F2;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .site-header__nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: var(--surface);
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 11, 16, 0.9);
}

.offers-section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-section__title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--text);
}

.offers-section__intro {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.offer-card {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid #334155;
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.2s, border-color 0.2s;
}

.offer-card:hover {
  transform: translateY(-2px);
  border-color: #f59e0b;
}

.offer-card__logo {
  width: 200px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-card__logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
}

.offer-card__bonus-wrap {
  width: 100%;
}

.offer-card__bonus {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.offer-card__terms {
  display: block;
  font-size: 0.65rem;
  color: #64748b;
  margin-top: 3px;
}

.offer-card__desc {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.4;
}

.offer-card__cta {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  background: #f59e0b;
  color: #0f172a;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.offer-card__cta:hover {
  background: #fbbf24;
  color: #0f172a;
}

.info-section {
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.info-title {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.25;
}

.info-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px;
  display: grid;
  gap: 8px;
}

.info-panel-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.info-panel-value {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 8px;
}

.decor-clip {
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 500px;
  max-height: 320px;
}

.decor-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 500px;
  max-height: 320px;
}

.layout-band {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.info-chip {
  font-size: 11px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  color: var(--accent);
  background: rgba(250, 204, 21, 0.08);
}

.layout-overlap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.info-card-float {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  z-index: 2;
}

.layout-timeline {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.timeline-step-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--mono);
}

.timeline-step strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--text);
}

.timeline-step span {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.stat-block {
  border: 1px solid var(--border);
  padding: 14px;
  text-align: center;
  background: var(--bg);
}

.stat-block strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-block span {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--muted);
}

.layout-quote {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.5;
}

.layout-bg-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.bg-visual-panel {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  max-width: 500px;
  max-height: 320px;
}

.layout-numbered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.numbered-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px dashed var(--border);
}

.numbered-item span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.numbered-item p {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
}

.layout-reverse {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.layout-accent-strip {
  background: linear-gradient(90deg, rgba(251, 113, 133, 0.12), rgba(250, 204, 21, 0.08));
  border: 1px solid var(--border);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

@media (max-width: 768px) {
  .layout-split,
  .layout-overlap,
  .layout-bg-visual,
  .layout-reverse,
  .layout-accent-strip,
  .layout-stats,
  .layout-numbered {
    grid-template-columns: 1fr;
  }

  .decor-clip,
  .decor-clip img,
  .bg-visual-panel {
    max-width: 100%;
  }

  .offer-card__logo {
    width: 200px;
    height: 72px;
    overflow: hidden;
  }

  .offer-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

@media (max-width: 375px) {
  .decor-clip {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .decor-clip img {
    max-width: 100%;
    max-height: 240px;
    width: 100%;
    height: auto;
  }

  .layout-accent-strip .decor-clip {
    max-width: 100%;
  }

  .info-inner .decor-clip {
    max-width: 100%;
  }
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 24px 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand img {
  height: 28px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-badges img {
  height: 40px;
  width: auto;
}

.footer-copy {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted);
}

.footer-copy a {
  color: var(--muted);
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 11, 16, 0.92);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  max-width: 420px;
  width: 100%;
}

.modal-box h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.modal-box p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #f43f5e;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 400;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cookie-inner > p {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-panel {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.cookie-panel.visible {
  display: block;
}

.cookie-panel p {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.subpage-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.subpage-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subpage-header__logo img {
  height: 30px;
}

.subpage-header__home {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.content-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.content-page h1 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--text);
}

.content-page h2 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--primary);
}

.content-page h3 {
  font-size: 1rem;
  margin: 16px 0 8px;
}

.content-page p,
.content-page li {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.65;
}

.content-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  border-radius: 4px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--primary);
  display: none;
}

.form-error.visible {
  display: block;
}

.contact-success {
  display: none;
  padding: 16px;
  border: 1px solid var(--accent);
  background: rgba(250, 204, 21, 0.08);
  margin-top: 16px;
}

.contact-success.visible {
  display: block;
}

.contact-success p {
  font-family: var(--sans);
  color: var(--text);
  margin: 0;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  -webkit-text-stroke: 2px var(--primary);
  color: transparent;
  margin-bottom: 16px;
}

.error-page p {
  font-family: var(--sans);
  color: var(--muted);
  margin-bottom: 24px;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
}

.redirect-box {
  text-align: center;
  max-width: 420px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.redirect-ad {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: var(--secondary);
  color: var(--bg);
  margin-bottom: 16px;
}

.redirect-box h1 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.redirect-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

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

.redirect-note {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}
