:root {
  --bg: #0f1419;
  --bg-alt: #151b24;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f3f6fb;
  --text-muted: #9aa7b8;
  --yellow: #ffb800;
  --yellow-hover: #ffc933;
  --blik: #2d9cdb;
  --blik-soft: rgba(45, 156, 219, 0.12);
  --success: #3ecf8e;
  --warning: #ffb800;
  --danger: #ff6b6b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
  --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 156, 219, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 184, 0, 0.08), transparent 24%),
    var(--bg);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blik);
  text-decoration: none;
}

a:hover {
  color: #5eb3ea;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: #111;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(15, 20, 25, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  object-fit: cover;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blik), #1f7fbf);
  color: #fff;
  font-weight: 800;
}

.logo-accent {
  color: var(--yellow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2rem;
  padding: 0 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--yellow);
  color: #111;
}

.btn-primary:hover {
  background: var(--yellow-hover);
  color: #111;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3.5rem 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  color: var(--blik);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-footnote {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-cards {
  display: grid;
  gap: 1rem;
}

.usp-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.usp-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  color: var(--yellow);
}

.usp-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.trust-bar {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0.9rem 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.section h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.section-intro,
.section-outro,
.prose p {
  color: var(--text-muted);
}

.section-intro,
.section-outro {
  max-width: 72ch;
}

.prose p {
  margin: 0 0 1rem;
}

/* Info boxes */
.info-box,
.tip-box,
.warning-box {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.info-box {
  background: rgba(255, 255, 255, 0.03);
}

.info-box-blik {
  border-color: rgba(45, 156, 219, 0.35);
  background: var(--blik-soft);
}

.info-box p,
.tip-box,
.warning-box {
  margin: 0;
  color: var(--text-muted);
}

.tip-box {
  border-left: 4px solid var(--yellow);
  background: rgba(255, 184, 0, 0.08);
}

.warning-box {
  border-left: 4px solid var(--danger);
  background: rgba(255, 107, 107, 0.08);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
}

.data-table td {
  color: var(--text-muted);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.highlight-row td:first-child {
  color: var(--text);
}

.highlight-row {
  background: rgba(45, 156, 219, 0.08);
}

.footnotes {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footnotes li + li {
  margin-top: 0.5rem;
}

.section-cta {
  margin-top: 2rem;
}

.content-figure {
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.content-figure img {
  width: 100%;
  height: auto;
}

.content-figure figcaption {
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.screenshot-gallery {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.screenshot-step {
  margin: 0;
  padding: 0.65rem 1rem 0;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Method cards */
.method-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.method-card {
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.method-card h3 {
  color: var(--blik);
}

.method-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.step-num {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  font-size: 0.95rem;
}

.step-text {
  padding-top: 0.35rem;
  color: var(--text-muted);
}

.mini-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.mini-faq article {
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.mini-faq p {
  margin: 0;
  color: var(--text-muted);
}

/* Check list */
.check-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.check-list li + li {
  margin-top: 0.5rem;
}

/* Problems */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.problem-card {
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.problem-card h3 {
  color: var(--text);
}

.problem-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--yellow);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--text-muted);
}

/* Summary */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.summary-box {
  padding: 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.summary-pros {
  background: rgba(62, 207, 142, 0.08);
}

.summary-cons {
  background: rgba(255, 107, 107, 0.08);
}

.summary-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.summary-box li + li {
  margin-top: 0.45rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 6.5rem;
  border-top: 1px solid var(--border);
  background: #0b1015;
}

.disclaimer {
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.disclaimer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--text);
}

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(11, 16, 21, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .method-cards,
  .mini-faq,
  .problem-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .btn-sm {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(15, 20, 25, 0.98);
    border-bottom: 1px solid var(--border);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }

  .mobile-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Subpages: legal, contact, responsible gaming */
.page-hero {
  padding: 2.75rem 0 1.5rem;
}

.page-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--blik);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.page-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-compact {
  padding-top: 0;
  padding-bottom: 3.5rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.help-links,
.contact-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
}

.help-card,
.contact-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.contact-card-accent {
  border-color: rgba(255, 184, 0, 0.25);
  background: rgba(255, 184, 0, 0.05);
}

.help-card p,
.contact-card p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.help-card h3,
.contact-card h2 {
  margin: 0;
  font-size: 1.05rem;
}

.help-phone {
  margin-top: 0.35rem !important;
  font-size: 1.15rem !important;
  font-weight: 700;
}

.help-phone a {
  color: var(--yellow);
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.contact-list li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.contact-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-note {
  display: block;
  margin-top: 0.35rem !important;
  font-size: 0.88rem !important;
  color: var(--text-muted);
  opacity: 0.9;
}

.site-nav-sub a.is-active {
  color: var(--yellow);
}

.screenshot-placeholder {
  margin: 1.25rem 0;
  padding: 2rem 1.25rem;
  border: 1px dashed rgba(255, 184, 0, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 184, 0, 0.05);
  color: var(--text-muted);
  font-size: 0.92rem;
  text-align: center;
}

.problem-card {
  margin: 1.25rem 0 0;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.problem-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--text);
}

.problem-card p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.problem-label {
  display: block;
  margin-top: 0.65rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
}

.related-links a {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.related-links a:hover {
  color: var(--yellow);
  border-color: rgba(255, 184, 0, 0.35);
}

.footer-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer-guides a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-guides a:hover {
  color: var(--text);
}

@media (min-width: 720px) {
  .help-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
