:root {
  --bp8-bg: #0f1117;
  --bp8-bg-soft: #161b22;
  --bp8-card: #1c2230;
  --bp8-card-alt: #202838;
  --bp8-text: #ffffff;
  --bp8-muted: #c7d2e2;
  --bp8-silver: #94a3b8;
  --bp8-blue: #38bdf8;
  --bp8-blue-deep: #0ea5e9;
  --bp8-border: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(56, 189, 248, 0.8), rgba(148, 163, 184, 0.35));
  --bp8-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --bp8-radius: 24px;
  --bp8-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--bp8-text);
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 26%),
    linear-gradient(180deg, var(--bp8-bg) 0%, var(--bp8-bg-soft) 100%);
  min-height: 100vh;
}

body.bp8-nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.bp8-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 80;
}

.bp8-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #7dd3fc 0%, var(--bp8-blue) 100%);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.7);
  transform-origin: left center;
}

.bp8-shell {
  position: relative;
  overflow: hidden;
}

.bp8-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
  pointer-events: none;
  opacity: 0.35;
}

.bp8-shell::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: -20%;
  height: 140px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0));
  animation: bp8-scan 8s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes bp8-scan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(120vh);
  }
}

.bp8-container {
  width: min(calc(100% - 32px), var(--bp8-max));
  margin: 0 auto;
}

.bp8-header {
  position: sticky;
  top: 0;
  z-index: 70;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}

.bp8-header.bp8-sticky {
  background: rgba(15, 17, 23, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(148, 163, 184, 0.3);
}

.bp8-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.bp8-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bp8-logo-mark {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.22), rgba(56, 189, 248, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.bp8-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bp8-nav a {
  color: var(--bp8-silver);
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.bp8-nav a:hover,
.bp8-nav a:focus-visible {
  color: var(--bp8-blue);
}

.bp8-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(28, 34, 48, 0.86);
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
}

.bp8-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--bp8-text);
  border-radius: 999px;
}

.bp8-nav-toggle span + span {
  margin-top: 6px;
}

.bp8-hero {
  padding: 42px 0 38px;
}

.bp8-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
  gap: 30px;
  align-items: stretch;
}

.bp8-hero-copy,
.bp8-hero-panel,
.bp8-spotlight-card,
.bp8-method-card,
.bp8-about-card,
.bp8-faq-card,
.bp8-rg-card,
.bp8-legal-section,
.bp8-contact-card {
  position: relative;
  border-radius: var(--bp8-radius);
  background: linear-gradient(180deg, rgba(28, 34, 48, 0.96), rgba(23, 29, 41, 0.98));
  box-shadow: var(--bp8-shadow);
}

.bp8-hero-copy::before,
.bp8-hero-panel::before,
.bp8-spotlight-card::before,
.bp8-method-card::before,
.bp8-about-card::before,
.bp8-faq-card::before,
.bp8-rg-card::before,
.bp8-legal-section::before,
.bp8-contact-card::before,
.bp8-table-wrap::before,
.bp8-footer-cta::before,
.bp8-footer-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--bp8-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bp8-hero-copy {
  padding: 42px;
}

.bp8-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.13);
  color: #cfefff;
  font-size: 0.9rem;
}

.bp8-hero h1,
.bp8-section-head h2,
.bp8-page-hero h1 {
  margin: 0 0 16px;
  font-family: "Rajdhani", sans-serif;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.bp8-hero h1 {
  font-size: clamp(3.2rem, 8vw, 5.3rem);
  max-width: 11ch;
}

.bp8-hero p,
.bp8-page-hero p,
.bp8-about-card p,
.bp8-method-item p,
.bp8-faq-item p,
.bp8-rg-intro,
.bp8-rg-item p,
.bp8-legal-section p,
.bp8-contact-card p,
.bp8-spotlight-card p,
.bp8-table-note,
.bp8-footer-disclaimer,
.bp8-footer-copy,
.bp8-footer-links a,
.bp8-footer-right a {
  color: var(--bp8-muted);
  line-height: 1.7;
}

.bp8-hero-actions,
.bp8-spotlight-actions,
.bp8-footer-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.bp8-button,
.bp8-link-button,
.bp8-table-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  color: #07111d;
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 48%, #38bdf8 100%);
  box-shadow: 0 12px 26px rgba(56, 189, 248, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bp8-button:hover,
.bp8-link-button:hover,
.bp8-table-cta:hover,
.bp8-button:focus-visible,
.bp8-link-button:focus-visible,
.bp8-table-cta:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #eff6ff 0%, #7dd3fc 40%, #0ea5e9 100%);
  box-shadow: 0 16px 28px rgba(56, 189, 248, 0.28);
}

.bp8-hero-panel {
  padding: 30px;
  display: flex;
  align-items: center;
}

.bp8-featured-card {
  width: 100%;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(56, 189, 248, 0.08));
}

.bp8-rating-pill,
.bp8-badge,
.bp8-tag,
.bp8-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
}

.bp8-rating-pill {
  background: rgba(56, 189, 248, 0.16);
  color: #dff6ff;
}

.bp8-featured-title,
.bp8-spotlight-card h3,
.bp8-footer-cta h2 {
  font-family: "Rajdhani", sans-serif;
  margin: 16px 0 10px;
}

.bp8-featured-title {
  font-size: 2.1rem;
}

.bp8-featured-copy {
  margin: 0 0 18px;
}

.bp8-featured-bonus {
  display: block;
  margin-bottom: 16px;
  color: #ecfeff;
  font-weight: 600;
}

.bp8-section {
  padding: 28px 0;
}

.bp8-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.bp8-section-head h2,
.bp8-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.bp8-section-label {
  color: #cfefff;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.bp8-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bp8-spotlight-card {
  padding: 26px;
}

.bp8-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bp8-logo-wrap {
  width: 88px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: 9px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.bp8-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 9px;
}

.bp8-table-wrap,
.bp8-footer-cta,
.bp8-footer-grid {
  position: relative;
  border-radius: var(--bp8-radius);
  background: linear-gradient(180deg, rgba(28, 34, 48, 0.98), rgba(18, 24, 34, 0.98));
  box-shadow: var(--bp8-shadow);
}

.bp8-table-wrap {
  overflow: hidden;
}

.bp8-table {
  width: 100%;
  border-collapse: collapse;
}

.bp8-table th,
.bp8-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.bp8-table th {
  color: #cfefff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.02);
}

.bp8-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.bp8-casino-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bp8-casino-name {
  font-weight: 700;
  color: var(--bp8-text);
}

.bp8-badge {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: #e5f8ff;
}

.bp8-table-bonus {
  font-weight: 600;
  color: #f8fbff;
}

.bp8-table-note {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
}

.bp8-table-rating {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  color: #ecfeff;
}

.bp8-table-feature {
  font-size: 0.94rem;
}

.bp8-method-card,
.bp8-about-card,
.bp8-faq-card,
.bp8-rg-card,
.bp8-legal-section,
.bp8-contact-card {
  padding: 34px;
}

.bp8-method-list {
  display: grid;
  gap: 18px;
}

.bp8-method-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.bp8-method-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bp8-method-step {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.17), rgba(148, 163, 184, 0.09));
  color: #e0f2fe;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.bp8-method-item h3,
.bp8-rg-item h3,
.bp8-legal-section h2,
.bp8-contact-card h2 {
  margin: 0 0 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.7rem;
}

.bp8-about-card p + p,
.bp8-legal-section p + p {
  margin-top: 16px;
}

.bp8-faq-list {
  display: grid;
  gap: 12px;
}

.bp8-faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.14);
  overflow: hidden;
}

.bp8-faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--bp8-text);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bp8-faq-question span:last-child {
  color: var(--bp8-blue);
  font-size: 1.2rem;
}

.bp8-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bp8-faq-item.bp8-faq-open .bp8-faq-answer {
  max-height: 320px;
}

.bp8-faq-answer-inner {
  padding: 0 22px 20px;
}

.bp8-rg-intro {
  margin-bottom: 22px;
}

.bp8-rg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bp8-rg-item {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.13);
}

.bp8-rg-checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.bp8-rg-checklist li {
  position: relative;
  padding-left: 28px;
  color: #e5eefb;
}

.bp8-rg-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bp8-blue);
  font-weight: 700;
}

.bp8-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.bp8-tag,
.bp8-rg-links a,
.bp8-footer-right a,
.bp8-footer-links a {
  color: #eaf8ff;
}

.bp8-tag {
  background: rgba(56, 189, 248, 0.12);
}

.bp8-age-badge {
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
}

.bp8-footer {
  padding: 28px 0 42px;
}

.bp8-footer-cta {
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.bp8-footer-grid {
  padding: 28px 30px;
}

.bp8-footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.bp8-footer-links,
.bp8-footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bp8-footer-links a:hover,
.bp8-footer-right a:hover {
  color: var(--bp8-blue);
}

.bp8-footer-copy {
  margin-top: 18px;
}

.bp8-footer-disclaimer {
  margin-top: 22px;
  padding-top: 22px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.bp8-cookie-banner {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 760px);
  z-index: 90;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 17, 23, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--bp8-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bp8-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.bp8-cookie-button {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 10px 18px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bp8-text);
  font-weight: 600;
}

.bp8-cookie-button.bp8-cookie-accept {
  background: linear-gradient(135deg, #dbeafe 0%, #94a3b8 48%, #38bdf8 100%);
  color: #07111d;
}

.bp8-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 8, 14, 0.78);
  backdrop-filter: blur(14px);
}

.bp8-age-modal {
  width: min(100%, 460px);
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(28, 34, 48, 0.99), rgba(16, 22, 31, 0.99));
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--bp8-shadow);
  text-align: center;
}

.bp8-age-modal h2 {
  margin: 0 0 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.1rem;
}

.bp8-age-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.bp8-age-button {
  min-width: 140px;
}

.bp8-page-hero {
  padding: 54px 0 26px;
}

.bp8-page-hero-card {
  position: relative;
  padding: 38px;
  border-radius: var(--bp8-radius);
  background: linear-gradient(180deg, rgba(28, 34, 48, 0.98), rgba(17, 23, 33, 0.98));
  box-shadow: var(--bp8-shadow);
}

.bp8-page-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--bp8-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.bp8-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.bp8-legal-grid,
.bp8-contact-grid {
  display: grid;
  gap: 18px;
}

.bp8-contact-card a,
.bp8-legal-section a {
  color: #d4f4ff;
}

.bp8-table-scroll {
  overflow-x: auto;
}

@media (max-width: 980px) {
  .bp8-hero-grid,
  .bp8-spotlight-grid,
  .bp8-rg-grid,
  .bp8-footer-columns {
    grid-template-columns: 1fr;
  }

  .bp8-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .bp8-table {
    min-width: 860px;
  }
}

@media (max-width: 840px) {
  .bp8-nav-toggle {
    display: inline-block;
  }

  .bp8-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 22px;
    background: rgba(15, 17, 23, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.26);
    box-shadow: var(--bp8-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  body.bp8-nav-open .bp8-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .bp8-hero-copy,
  .bp8-hero-panel,
  .bp8-method-card,
  .bp8-about-card,
  .bp8-faq-card,
  .bp8-rg-card,
  .bp8-legal-section,
  .bp8-contact-card,
  .bp8-page-hero-card {
    padding: 26px;
  }

  .bp8-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .bp8-container {
    width: min(calc(100% - 20px), var(--bp8-max));
  }

  .bp8-hero h1 {
    font-size: 3rem;
  }

  .bp8-method-item {
    grid-template-columns: 1fr;
  }

  .bp8-age-actions,
  .bp8-cookie-actions,
  .bp8-hero-actions,
  .bp8-spotlight-actions,
  .bp8-footer-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .bp8-button,
  .bp8-link-button,
  .bp8-table-cta,
  .bp8-cookie-button,
  .bp8-age-button {
    width: 100%;
  }
}
