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

:root {
  --bg: #F0F2F5;
  --surface: #FFFFFF;
  --text: #1C1E21;
  --muted: #606770;
  --primary: #007AFF;
  --secondary: #4267B2;
  --accent: #31A24C;
  --border: rgba(0, 0, 0, 0.06);
  --nav-bg: #1C1E21;
  --orange: #FF6B00;
  --slate: #5C6B7A;
  --max-w: 1200px;
  --font-mono: "SF Mono", "Cascadia Mono", "Consolas", "Liberation Mono", monospace;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

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

.disclosure-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.disclosure-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--primary);
}

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

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}

.logo-link img {
  height: 34px;
  width: auto;
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

.nav-desktop {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop li a {
  position: relative;
  display: block;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-desktop li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--orange);
  width: 0;
  transition: width 0.25s ease;
}

.nav-desktop li a:hover::after,
.nav-desktop li a.active::after {
  width: calc(100% - 24px);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.nav-overlay.open {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--nav-bg);
  z-index: 1002;
  padding: 72px 0 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer a {
  display: block;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.nav-drawer a:hover,
.nav-drawer a.active {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--orange);
  color: #fff;
}

.hero {
  position: relative;
  background: var(--bg);
  padding: 60px;
  overflow: hidden;
  min-height: 340px;
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
  text-align: left;
}

.hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 600px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

.hero-deco {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 35%;
  max-width: 350px;
  opacity: 0.5;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 107, 122, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 107, 122, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 19, 0.88);
}

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

.offers-section h2 {
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  color: #fff;
  font-size: 1.5rem;
}

.offers-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #1e1b1b 0%, #0f172a 100%);
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 8px;
  overflow: hidden;
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 200px;
  height: 100px;
  margin: 16px auto 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

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

.offer-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.offer-name {
  font-size: 16px;
  color: #fff;
}

.offer-bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.offer-bonus {
  font-size: 14px;
  color: #FACC15;
  font-weight: 700;
  word-break: break-word;
  line-height: 1.35;
}

.offer-terms {
  font-size: 11px;
  color: rgba(253, 242, 248, 0.5);
}

.offer-desc {
  font-size: 11px;
  color: rgba(253, 242, 248, 0.55);
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(236, 72, 153, 0.2);
  border: 1px solid #007AFF;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.offer-cta:hover {
  background: #007AFF;
  text-decoration: none;
}

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

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

.info-section h2 {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.info-section p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.info-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-1 {
  background: var(--surface);
}

.info-1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-1-blueprint {
  position: relative;
  min-height: 200px;
  background:
    linear-gradient(rgba(92, 107, 122, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 107, 122, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  border: 2px solid var(--slate);
  padding: 24px;
}

.info-1-blueprint::before {
  content: "X:042 Y:018 →";
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
}

.info-1-blueprint p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.info-10 .info-meta {
  color: var(--orange);
}

.info-2 {
  background: var(--bg);
}

.info-2-panel {
  border-left: 4px solid var(--orange);
  padding: 24px 24px 24px 32px;
  background: var(--surface);
  position: relative;
  transition: box-shadow 0.2s;
}

.info-2-panel:hover {
  box-shadow: 4px 4px 0 var(--slate);
}

.info-2-panel:hover .info-2-hover-meta {
  opacity: 1;
}

.info-2-hover-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
  margin-top: 12px;
}

.info-3 {
  background: var(--surface);
}

.info-3-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.info-3-deco-wrap {
  max-width: 100%;
  overflow: hidden;
  border: 2px dashed var(--slate);
  padding: 8px;
  position: relative;
}

.info-3-deco-wrap img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.info-3-deco-wrap::after {
  content: "→ REF:IMG_02";
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
}

.info-4 {
  background: var(--bg);
}

.info-4-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-4-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-4-arrow {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1.4;
}

.info-5 {
  background: var(--surface);
}

.info-5-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.info-5-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 107, 122, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 107, 122, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.info-5-card > * {
  position: relative;
  z-index: 1;
}

.info-6 {
  background: var(--bg);
}

.info-6-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.info-6-text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-6-visual {
  background-image: url("/images/decorative/decor_3.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 200px;
}

.info-6-visual::after {
  content: "RTP_ZONE";
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #fff;
  background: var(--orange);
  padding: 4px 8px;
}

.info-7 {
  background: var(--surface);
}

.info-7-stack {
  max-width: 700px;
}

.info-7-coords {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.info-7-coord {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 14px;
  border: 1px solid var(--slate);
  color: var(--slate);
}

.info-8 {
  background: var(--bg);
}

.info-8-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-8-col {
  background: var(--surface);
  padding: 24px 20px;
  border-top: 3px solid var(--primary);
  position: relative;
}

.info-8-col::before {
  content: "▸";
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--orange);
  font-size: 14px;
}

.info-8-col h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--text);
}

.info-8-col p {
  font-size: 13px;
}

.info-9 {
  background: var(--surface);
  overflow: hidden;
}

.info-9-asym {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.info-9-deco-float {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.info-9-deco-float img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  object-fit: contain;
  transform: rotate(-2deg);
  border: 2px solid var(--slate);
}

.info-10 {
  background: var(--nav-bg);
  color: #fff;
}

.info-10 h2 {
  color: #fff;
}

.info-10 p {
  color: rgba(255, 255, 255, 0.7);
}

.info-10-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.info-10-stat {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--orange);
}

.site-footer {
  background: var(--nav-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 32px;
  flex-shrink: 0;
  margin-top: auto;
}

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

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

.footer-logo img {
  height: 32px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badge:hover img {
  opacity: 1;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.4);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.hidden {
  display: none;
}

.age-gate-box {
  background: var(--surface);
  max-width: 440px;
  width: 100%;
  padding: 36px 32px;
  border: 2px solid var(--slate);
  text-align: center;
}

.age-gate-title {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.age-gate-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-btn {
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.age-gate-btn-confirm {
  background: var(--accent);
  color: #fff;
}

.age-gate-btn-decline {
  background: transparent;
  border: 1px solid var(--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 24px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-banner-btn {
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

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

.page-hero-title {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: #fff;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.page-content h2 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.page-content p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.page-content ul {
  margin: 12px 0 14px 20px;
  font-size: 14px;
  color: var(--muted);
}

.page-content li {
  margin-bottom: 6px;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
}

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

.contact-form-error {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
  display: none;
}

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

.contact-form-submit {
  align-self: flex-start;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.contact-form-success {
  display: none;
  padding: 24px;
  background: rgba(49, 162, 76, 0.1);
  border: 1px solid var(--accent);
  margin-top: 24px;
}

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

.contact-form-success p {
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

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

.error-code {
  font-family: var(--font-mono);
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

.error-title {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.error-text {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.error-link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

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

.redirect-ad {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 24px;
}

.redirect-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

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

.redirect-msg {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.redirect-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.redirect-compliance {
  font-size: 12px;
  color: var(--muted);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .info-1-grid,
  .info-3-split,
  .info-6-split,
  .info-9-asym,
  .info-8-cols {
    grid-template-columns: 1fr;
  }

  .info-6-visual {
    min-height: 180px;
  }

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

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }

  .nav-desktop {
    display: none;
  }

  .hero {
    padding: 32px 24px;
    text-align: center;
  }

  .hero-inner {
    text-align: center;
  }

  .hero h1,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-deco {
    display: none;
  }

  .offer-logo {
    width: 180px;
    height: 90px;
  }

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

  .offer-bonus {
    font-size: 12px;
    line-height: 1.4;
  }

  .info-3-deco-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .info-3-deco-wrap img {
    max-width: 100%;
    object-fit: contain;
  }

  .info-9-deco-float {
    max-width: 100%;
    overflow: hidden;
  }

  .info-9-deco-float img {
    max-width: 100%;
    transform: none;
  }
}

@media (max-width: 375px) {
  .info-3-deco-wrap img {
    max-height: 220px;
  }

  .info-9-deco-float img {
    max-height: 200px;
  }

  .info-6-visual {
    max-width: 100%;
    overflow: hidden;
  }

  .hero {
    overflow: hidden;
  }
}
