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

:root {
  --bg: #0A0A08;
  --surface: #16130A;
  --text: #FAF7F2;
  --muted: #D6D3D1;
  --primary: #FACC15;
  --secondary: #DC2626;
  --accent: #16A34A;
  --border: rgba(250, 247, 242, 0.12);
  --maxw: 1200px;
  --nav-h: 50px;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", "Palatino Linotype", serif;
}

html {
  scroll-behavior: smooth;
}

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

main {
  flex: 1 0 auto;
}

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

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

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

.disclosure-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  font-size: 12px;
  line-height: 1.4;
}

.disclosure-half {
  padding: 8px 16px;
  text-align: center;
}

.disclosure-half--left {
  background: var(--primary);
  color: #0A0A08;
}

.disclosure-half--right {
  background: #FAF7F2;
  color: #0A0A08;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.navbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-logo img {
  height: 28px;
  width: auto;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0.6;
  color: var(--text);
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-icon-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-icon-link:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: opacity 0.15s ease;
  z-index: 10;
}

.nav-icon-link:hover .nav-tooltip {
  opacity: 1;
}

.nav-drawer {
  display: none;
}

.hero {
  background: var(--surface);
  text-align: center;
  padding: 40px 24px;
  border-bottom: 8px solid var(--accent);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.offers {
  padding: 56px 24px;
  background: var(--bg);
}

.offers-head {
  max-width: var(--maxw);
  margin: 0 auto 36px;
  text-align: center;
}

.offers-head h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: var(--text);
}

.offers-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.offers-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  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;
  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;
  overflow: hidden;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  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: var(--text);
  font-weight: 700;
}

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

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

.offer-terms {
  font-size: 11px;
  color: rgba(253, 242, 248, 0.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 var(--primary);
  color: var(--text);
  transition: background 0.2s ease;
}

.offer-cta:hover {
  background: var(--primary);
  color: #0A0A08;
  opacity: 1;
}

.info {
  padding: 56px 24px;
}

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

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

.info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  margin-bottom: 16px;
  color: var(--text);
}

.info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

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

.layout-1 .info-visual {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(250, 204, 21, 0.1));
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}

.layout-1 .game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.layout-1 .game-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary);
}

.layout-1 .info-visual > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.layout-2 {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.layout-2 .info-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.layout-2 .accent-bar {
  flex-shrink: 0;
  width: 6px;
  min-height: 120px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 3px;
}

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

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

.layout-3 .mini-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.layout-3 .mini-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.layout-3 .mini-card p {
  font-size: 0.85rem;
}

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

.layout-4 .info-inner {
  max-width: 720px;
  text-align: center;
}

.layout-4 .organic-divider {
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 24px;
  opacity: 0.8;
}

.layout-4 .shield-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.layout-4 .shield-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 0.85rem;
  color: var(--muted);
  min-width: 140px;
}

.layout-4 .shield-item strong {
  display: block;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

.layout-5 .rtp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

.layout-5 .rtp-box {
  background: var(--bg);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
}

.layout-5 .rtp-box h3 {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.layout-6 .select-list {
  list-style: none;
  margin-top: 20px;
  counter-reset: select-counter;
}

.layout-6 .select-list li {
  counter-increment: select-counter;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.layout-6 .select-list li::before {
  content: counter(select-counter);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

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

.layout-7 .review-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.layout-7 .review-aside {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.layout-7 .review-aside h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.layout-7 .review-aside ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.layout-7 .review-aside li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.layout-7 .review-aside li:last-child {
  border-bottom: none;
}

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

.layout-8 .live-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(120deg, rgba(22, 163, 74, 0.12), rgba(250, 204, 21, 0.08));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 8px;
}

.layout-8 .live-dot {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.05em;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.3);
}

.layout-9 {
  background: var(--surface);
}

.layout-9 .finding-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}

.layout-9 .finding-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--border);
}

.layout-9 .step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1;
}

.layout-9 .finding-step h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.layout-9 .finding-step p {
  font-size: 0.88rem;
}

.layout-10 {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.layout-10 .license-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.layout-10 .license-card svg {
  width: 36px;
  height: 36px;
  fill: var(--accent);
  margin: 0 auto 12px;
}

.layout-10 .license-card h3 {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}

.layout-10 .license-card p {
  font-size: 0.82rem;
}

.footer {
  flex-shrink: 0;
  margin-top: auto;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 28px;
}

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

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

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

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

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

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

.footer-badges img {
  height: 44px;
  width: auto;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.subpage-navbar .navbar-inner {
  justify-content: flex-start;
}

.page-section {
  padding: 48px 24px 64px;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: var(--text);
}

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

.page-content h3 {
  font-size: 1rem;
  margin: 20px 0 10px;
  color: var(--text);
}

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

.page-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.page-content a {
  color: var(--primary);
}

.contact-form {
  margin-top: 28px;
  max-width: 560px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field-error {
  display: none;
  color: var(--secondary);
  font-size: 13px;
  margin-top: 6px;
}

.field input:not(:placeholder-shown):invalid ~ .field-error,
.field textarea:not(:placeholder-shown):invalid ~ .field-error {
  display: block;
}

.btn-submit {
  display: inline-block;
  background: var(--primary);
  color: #0A0A08;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: #eab308;
}

.submit-hint {
  display: none;
  margin-left: 14px;
  font-size: 13px;
  color: var(--muted);
}

.contact-form:has(:invalid) .btn-submit {
  pointer-events: none;
  opacity: 0.5;
}

.contact-form:has(:invalid) .submit-hint {
  display: inline;
}

.contact-success {
  display: none;
  margin-bottom: 24px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 24px 28px;
}

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

.contact-success:target + .contact-form {
  display: none;
}

.contact-success h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-success p {
  color: var(--muted);
  font-size: 0.92rem;
}

.error-page {
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 28px;
}

.error-page a {
  display: inline-block;
  background: var(--primary);
  color: #0A0A08;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
}

.error-page a:hover {
  background: #eab308;
  color: #0A0A08;
}

@media (max-width: 900px) {
  .layout-1 .info-inner,
  .layout-5 .rtp-grid,
  .layout-7 .review-cols,
  .layout-3 .card-row,
  .layout-10 .license-grid {
    grid-template-columns: 1fr;
  }

  .layout-2 .info-inner {
    flex-direction: column;
  }

  .layout-8 .live-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .layout-8 .live-dot {
    margin: 0 auto;
  }
}

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

  .nav-burger {
    display: flex;
  }

  .nav-icons {
    display: none;
  }

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

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

  .nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav-drawer a {
    display: block;
    padding: 14px 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border-bottom: 1px solid var(--border);
  }

  .nav-drawer a:hover {
    background: rgba(250, 204, 21, 0.08);
    color: var(--primary);
  }

  .nav-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
  }

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

  .nav-drawer:target ~ .nav-overlay {
    display: block;
  }

  .disclosure-half {
    font-size: 11px;
    padding: 8px 10px;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
  }

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

  .offer-bonus {
    font-size: 13px;
  }
}

@media (min-width: 769px) {
  .nav-overlay,
  .nav-drawer {
    display: none !important;
  }
}
