:root {
  --dd6-bg: #05000d;
  --dd6-surface: #0d0a1f;
  --dd6-surface-strong: #151033;
  --dd6-border: rgba(139, 92, 246, 0.25);
  --dd6-border-strong: rgba(167, 139, 250, 0.45);
  --dd6-text: #f5f3ff;
  --dd6-muted: #c4b5fd;
  --dd6-violet: #8b5cf6;
  --dd6-violet-soft: #a78bfa;
  --dd6-teal: #14b8a6;
  --dd6-teal-soft: #2dd4bf;
  --dd6-shadow: 0 24px 80px rgba(4, 2, 17, 0.55);
  --dd6-radius: 28px;
  --dd6-width: min(1180px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dd6-bg);
  color: var(--dd6-text);
  font-family: "Sora", sans-serif;
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(
      ellipse at 30% 40%,
      rgba(139, 92, 246, 0.18) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse at 72% 62%,
      rgba(20, 184, 166, 0.16) 0%,
      transparent 56%
    ),
    radial-gradient(
      circle at 16% 18%,
      rgba(245, 243, 255, 0.18) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 38% 76%,
      rgba(245, 243, 255, 0.14) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60% 30%,
      rgba(245, 243, 255, 0.16) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(245, 243, 255, 0.12) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 88% 74%,
      rgba(245, 243, 255, 0.16) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 12% 86%,
      rgba(245, 243, 255, 0.14) 0 1px,
      transparent 1px
    );
  background-size:
    auto,
    auto,
    240px 240px,
    320px 320px,
    280px 280px,
    360px 360px,
    260px 260px,
    300px 300px;
  animation: dd6StarDrift 26s linear infinite;
}

body::after {
  background:
    linear-gradient(135deg, rgba(10, 0, 32, 0.86), rgba(0, 10, 24, 0.72)),
    radial-gradient(
      circle at 20% 14%,
      rgba(167, 139, 250, 0.12) 0%,
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 84%,
      rgba(45, 212, 191, 0.1) 0%,
      transparent 24%
    );
}

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

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

button {
  font: inherit;
}

.dd6-page {
  position: relative;
  z-index: 1;
  width: var(--dd6-width);
  margin: 0 auto;
}

.dd6-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.dd6-site-header.is-scrolled {
  background: rgba(5, 0, 13, 0.86);
  border-color: rgba(139, 92, 246, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.dd6-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.dd6-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.dd6-logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  padding: 0.2rem;
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.22),
    rgba(20, 184, 166, 0.16)
  );
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.18);
}

.dd6-logo-copy strong,
.dd6-logo-copy span {
  display: block;
}

.dd6-logo-copy strong {
  font-family: "Orbitron", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dd6-logo-copy span {
  color: var(--dd6-muted);
  font-size: 0.78rem;
}

.dd6-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(13, 10, 31, 0.9);
  color: var(--dd6-text);
}

.dd6-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dd6-nav a {
  font-family: "Orbitron", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dd6-muted);
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.dd6-nav a:hover,
.dd6-nav a:focus-visible {
  color: var(--dd6-text);
  text-shadow: 0 0 18px rgba(139, 92, 246, 0.55);
}

.dd6-button,
.dd6-link-button,
.dd6-age-actions button,
.dd6-cookie-banner button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dd6-violet), var(--dd6-teal));
  color: #05000d;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.dd6-button:hover,
.dd6-button:focus-visible,
.dd6-link-button:hover,
.dd6-link-button:focus-visible,
.dd6-age-actions button:hover,
.dd6-age-actions button:focus-visible,
.dd6-cookie-banner button:hover,
.dd6-cookie-banner button:focus-visible {
  transform: scale(1.03);
  box-shadow:
    0 0 24px rgba(139, 92, 246, 0.45),
    0 0 42px rgba(20, 184, 166, 0.32);
}

.dd6-button.is-secondary,
.dd6-cookie-banner .dd6-cookie-secondary,
.dd6-age-actions .dd6-age-exit {
  background: transparent;
  color: var(--dd6-text);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: none;
}

.dd6-hero,
.dd6-page-hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.2rem 0 2.8rem;
}

.dd6-page-hero {
  min-height: auto;
  padding-top: 2rem;
}

.dd6-hero-panel,
.dd6-page-hero-panel,
.dd6-hero-art {
  position: relative;
  overflow: hidden;
  border-radius: var(--dd6-radius);
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(13, 10, 31, 0.74);
  box-shadow: var(--dd6-shadow);
}

.dd6-hero-panel,
.dd6-page-hero-panel {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.dd6-hero-panel {
  background:
    linear-gradient(
      155deg,
      rgba(139, 92, 246, 0.2),
      rgba(13, 10, 31, 0.92) 52%
    ),
    rgba(13, 10, 31, 0.84);
}

.dd6-page-hero-panel {
  grid-column: 1 / -1;
  min-height: 280px;
  background:
    linear-gradient(140deg, rgba(139, 92, 246, 0.16), rgba(20, 184, 166, 0.08)),
    rgba(13, 10, 31, 0.84);
}

.dd6-hero-copy,
.dd6-page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.dd6-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--dd6-teal-soft);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.dd6-hero h1,
.dd6-page-hero h1 {
  margin: 0 0 1rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.95rem);
  line-height: 0.96;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dd6-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.dd6-subline,
.dd6-page-hero p {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  font-size: 1.03rem;
  color: var(--dd6-muted);
}

.dd6-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.dd6-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--dd6-text);
  font-weight: 600;
}

.dd6-hero-art {
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(13, 10, 31, 0.45), rgba(13, 10, 31, 0.92)),
    rgba(13, 10, 31, 0.78);
}

.dd6-hero-art::before,
.dd6-hero-art::after,
.dd6-nebula-orb,
.dd6-star-belt {
  position: absolute;
  content: "";
}

.dd6-hero-art::before {
  width: 320px;
  height: 320px;
  right: 8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.42),
    rgba(139, 92, 246, 0.04) 68%,
    transparent 70%
  );
}

.dd6-hero-art::after {
  width: 250px;
  height: 250px;
  left: 12%;
  bottom: 12%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.36),
    rgba(20, 184, 166, 0.04) 64%,
    transparent 68%
  );
}

.dd6-nebula-orb {
  inset: 18% auto auto 18%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 243, 255, 0.26),
    rgba(245, 243, 255, 0.03) 64%,
    transparent 70%
  );
}

.dd6-star-belt {
  inset: auto 12% 22% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(245, 243, 255, 0.15);
  box-shadow:
    0 0 0 28px rgba(139, 92, 246, 0.08),
    0 0 0 62px rgba(20, 184, 166, 0.05);
}

.dd6-star-belt::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 8px;
  left: 50%;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--dd6-text);
  box-shadow: 0 0 20px rgba(245, 243, 255, 0.8);
  animation: dd6Orbit 9s linear infinite;
  transform-origin: 0 82px;
}

.dd6-section {
  padding: 1.7rem;
  border-radius: var(--dd6-radius);
  border: 1px solid var(--dd6-border);
  background: rgba(13, 10, 31, 0.84);
  box-shadow:
    inset 0 0 30px rgba(139, 92, 246, 0.06),
    var(--dd6-shadow);
}

.dd6-section h2 {
  margin: 0 0 0.8rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dd6-section-intro {
  max-width: 62rem;
  margin: 0 0 1.35rem;
  color: var(--dd6-muted);
}

.dd6-grid-2,
.dd6-grid-3 {
  display: grid;
  gap: 1rem;
}

.dd6-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dd6-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dd6-timeline {
  position: relative;
  margin-top: 1.3rem;
  padding-left: 1.2rem;
}

.dd6-timeline::before {
  content: "";
  position: absolute;
  left: 1.12rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.45),
    rgba(20, 184, 166, 0.25)
  );
}

.dd6-timeline-item {
  position: relative;
  margin-left: 2rem;
  margin-bottom: 1.4rem;
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: rgba(7, 3, 20, 0.7);
}

.dd6-timeline-item:last-child {
  margin-bottom: 0;
}

.dd6-step-badge {
  position: absolute;
  left: -3.25rem;
  top: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--dd6-violet), var(--dd6-teal));
  color: #05000d;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.35);
}

.dd6-timeline-item h3,
.dd6-card h3,
.dd6-fact-card h3,
.dd6-guide-card h3,
.dd6-glossary-card h3,
.dd6-rg-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dd6-timeline-item p,
.dd6-card p,
.dd6-fact-card p,
.dd6-guide-card p,
.dd6-glossary-card p,
.dd6-faq details p,
.dd6-rg-card p,
.dd6-legal-content p,
.dd6-legal-content li {
  margin: 0 0 0.85rem;
  color: #ddd6fe;
}

.dd6-fact-card,
.dd6-guide-card,
.dd6-glossary-card,
.dd6-rg-card,
.dd6-faq details,
.dd6-card {
  border-radius: 22px;
  border: 1px solid var(--dd6-border);
  background: var(--dd6-surface);
  box-shadow: inset 0 0 30px rgba(139, 92, 246, 0.06);
}

.dd6-fact-card,
.dd6-guide-card,
.dd6-glossary-card,
.dd6-rg-card {
  padding: 1.15rem;
}

.dd6-metric {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: var(--dd6-teal-soft);
}

.dd6-casino-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dd6-card {
  padding: 1.25rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.dd6-card:hover {
  transform: translateY(-4px);
  border-color: var(--dd6-border-strong);
  box-shadow:
    inset 0 0 30px rgba(139, 92, 246, 0.08),
    0 20px 50px rgba(5, 0, 13, 0.4);
}

.dd6-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dd6-spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  color: var(--dd6-violet-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.dd6-logo-wrap {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.dd6-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dd6-brand-meta {
  min-width: 0;
}

.dd6-brand-name {
  display: block;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dd6-rating {
  margin-top: 0.3rem;
  color: var(--dd6-teal-soft);
  font-weight: 700;
}

.dd6-bonus {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dd6-text);
}

.dd6-disclaimer {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--dd6-muted);
}

.dd6-guide-card span,
.dd6-glossary-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--dd6-teal-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dd6-faq {
  display: grid;
  gap: 0.9rem;
}

.dd6-faq details {
  padding: 1rem 1.1rem;
}

.dd6-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dd6-faq summary::-webkit-details-marker {
  display: none;
}

.dd6-faq details[open] {
  border-color: rgba(20, 184, 166, 0.3);
}

.dd6-rg-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
}

.dd6-rg-checklist,
.dd6-legal-content ul {
  margin: 0;
  padding-left: 1.15rem;
}

.dd6-rg-checklist li,
.dd6-legal-content li {
  margin-bottom: 0.65rem;
}

.dd6-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.dd6-support-links a,
.dd6-inline-link {
  color: var(--dd6-teal-soft);
}

.dd6-footer {
  margin: 2rem auto 2.5rem;
}

.dd6-footer-cta,
.dd6-footer-main {
  border-radius: var(--dd6-radius);
  border: 1px solid var(--dd6-border);
  background: rgba(13, 10, 31, 0.86);
  box-shadow: var(--dd6-shadow);
}

.dd6-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
}

.dd6-footer-cta h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dd6-footer-main {
  padding: 1.3rem;
}

.dd6-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.dd6-footer-title {
  margin: 0 0 0.75rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dd6-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  color: var(--dd6-muted);
}

.dd6-footer-note {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 92, 246, 0.18);
  color: var(--dd6-muted);
  text-align: center;
  font-size: 0.9rem;
}

.dd6-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--dd6-violet), var(--dd6-teal));
  color: #05000d;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
}

.dd6-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  background: rgba(5, 0, 13, 0.97) !important;
  padding: 1rem;
}

.dd6-age-box {
  margin-block: auto;
  width: min(420px, calc(100% - 12px));
  background: #0d0a1f;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--dd6-shadow);
}

.dd6-age-box h2,
.dd6-cookie-banner strong {
  margin: 0 0 0.8rem;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dd6-age-actions,
.dd6-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.dd6-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2147483645;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(13, 10, 31, 0.96);
  box-shadow: var(--dd6-shadow);
}

.dd6-cookie-banner p {
  margin: 0;
  color: var(--dd6-muted);
}

.dd6-back-top {
  position: fixed;
  right: 1rem;
  bottom: 5.75rem;
  z-index: 20;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(13, 10, 31, 0.88);
  color: var(--dd6-text);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.dd6-back-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.dd6-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.dd6-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dd6-legal-content {
  display: grid;
  gap: 1rem;
}

.dd6-legal-card {
  padding: 1.3rem;
  border-radius: 22px;
  border: 1px solid var(--dd6-border);
  background: rgba(13, 10, 31, 0.88);
  box-shadow: inset 0 0 30px rgba(139, 92, 246, 0.06);
}

.dd6-legal-card h2,
.dd6-legal-card h3 {
  margin-top: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dd6-legal-card h3 {
  font-size: 1rem;
}

.dd6-legal-meta {
  color: var(--dd6-muted);
}

@keyframes dd6Orbit {
  from {
    transform: rotate(0deg) translateX(82px);
  }

  to {
    transform: rotate(360deg) translateX(82px);
  }
}

@keyframes dd6StarDrift {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      18px -12px,
      -22px 18px,
      24px -42px,
      -28px 20px,
      16px -28px,
      -18px 24px,
      22px -18px,
      -24px 28px;
  }
}

@media (max-width: 960px) {
  .dd6-hero,
  .dd6-page-hero,
  .dd6-grid-2,
  .dd6-grid-3,
  .dd6-casino-grid,
  .dd6-rg-grid,
  .dd6-footer-grid {
    grid-template-columns: 1fr;
  }

  .dd6-hero-panel {
    clip-path: none;
    min-height: 0;
  }

  .dd6-hero-art {
    min-height: 320px;
  }

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

@media (max-width: 900px) {
  .dd6-nav-toggle {
    display: inline-flex;
  }

  .dd6-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    min-width: min(300px, calc(100vw - 32px));
    border-radius: 18px;
    border: 1px solid rgba(139, 92, 246, 0.28);
    background: rgba(13, 10, 31, 0.97);
    box-shadow: var(--dd6-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .dd6-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .dd6-page,
  .dd6-page * {
    max-width: 100%;
  }
  .dd6-page {
    width: min(1180px, calc(100% - 12px));
  }
  .dd6-header-inner {
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
    position: relative;
  }
  .dd6-logo {
    min-width: 0;
  }
  .dd6-logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
  }
  .dd6-nav {
    left: 8px;
    right: 8px;
    padding: 12px;
  }
  .dd6-hero h1,
  .dd6-page-hero h1 {
    font-size: clamp(1.05rem, 5.8vw, 2rem);
    letter-spacing: 0.055em;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .dd6-button,
  .dd6-link-button,
  .dd6-age-actions button,
  .dd6-cookie-banner button {
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .dd6-hero p,
  .dd6-hero .dd6-subline {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .dd6-section {
    padding: 0.95rem 0.75rem;
    border-radius: 18px;
    margin-bottom: 1.25rem;
  }
  .dd6-section h2 {
    font-size: clamp(1.02rem, 4.8vw, 1.55rem);
    word-break: break-word;
  }
  .dd6-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dd6-card {
    padding: 0.95rem 0.75rem;
    border-radius: 18px;
  }
  .dd6-card:hover {
    transform: none;
  }
  .dd6-card-top {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.55rem;
  }
  .dd6-card,
  .dd6-card * {
    min-width: 0;
    max-width: 100%;
  }
  .dd6-card h3,
  .dd6-card p,
  .dd6-card a,
  .dd6-card .dd6-bonus {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .dd6-logo-wrap {
    width: min(140px, 100%);
    max-width: 100%;
    height: auto;
    min-height: 4.25rem;
  }
  .dd6-brand-meta {
    min-width: 0;
    width: 100%;
  }
  .dd6-cookie-banner {
    padding: 10px;
    font-size: 0.84rem;
  }
  .dd6-age-overlay {
    padding: 0.65rem;
  }
  .dd6-age-box {
    padding: 1.1rem 0.75rem;
  }
  .dd6-rg-item {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .dd6-rg-checklist li,
  .dd6-rg-checklist p {
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    min-width: 0;
  }
}
@media (max-width: 380px) {
  .dd6-page {
    width: min(1180px, calc(100% - 8px));
  }
  .dd6-hero h1 {
    font-size: clamp(1rem, 5.2vw, 1.75rem);
  }
  .dd6-header-inner {
    padding: 0.55rem;
  }
  .dd6-section,
  .dd6-card {
    padding-inline: 0.65rem;
  }
}
@media (max-width: 900px) {
  .dd6-header-inner {
    position: relative;
  }
}
