:root {
  --dd2-bg: #090718;
  --dd2-surface: #110e24;
  --dd2-surface-strong: rgba(17, 14, 36, 0.92);
  --dd2-surface-soft: rgba(139, 92, 246, 0.08);
  --dd2-accent: #8b5cf6;
  --dd2-accent-light: #a78bfa;
  --dd2-cta-start: #f5a623;
  --dd2-cta-end: #fbb040;
  --dd2-text: #ffffff;
  --dd2-muted: #9d8fba;
  --dd2-border: rgba(139, 92, 246, 0.2);
  --dd2-border-strong: rgba(139, 92, 246, 0.55);
  --dd2-shadow: 0 0 28px rgba(139, 92, 246, 0.1);
  --dd2-star: #f5a623;
  --dd2-footer: #040309;
  --dd2-max: 1200px;
  --dd2-radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(139, 92, 246, 0.15), transparent 30%),
    linear-gradient(180deg, #0a081b 0%, #090718 24%, #06050f 100%);
  color: var(--dd2-text);
  font-size: 16px;
  line-height: 1.7;
  min-width: 320px;
}

body[data-dd2-menu-open="true"] {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.dd2-site-shell {
  position: relative;
  isolation: isolate;
}

.dd2-container {
  width: min(100%, calc(var(--dd2-max) + 48px));
  margin: 0 auto;
  padding-inline: 24px;
}

.dd2-topbar {
  position: relative;
  z-index: 30;
  padding: 10px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  background: rgba(9, 7, 24, 0.92);
  color: var(--dd2-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dd2-topbar-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.dd2-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 7, 24, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dd2-header[data-dd2-scrolled="true"] {
  background: rgba(9, 7, 24, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  border-color: rgba(139, 92, 246, 0.22);
}

.dd2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

.dd2-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.dd2-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(139, 92, 246, 0.06));
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: var(--dd2-accent-light);
  font-weight: 700;
  font-size: 18px;
}

.dd2-logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dd2-logo-title {
  color: var(--dd2-accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.dd2-logo-subtitle {
  color: var(--dd2-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dd2-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: rgba(139, 92, 246, 0.08);
  border-radius: 12px;
  color: var(--dd2-text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.dd2-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.dd2-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dd2-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.dd2-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dd2-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.dd2-nav a {
  color: var(--dd2-text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.dd2-hero,
.dd2-page-hero {
  position: relative;
  overflow: hidden;
}

.dd2-hero {
  min-height: 85vh;
  background-image:
    linear-gradient(rgba(9, 7, 24, 0.82), rgba(9, 7, 24, 0.88)),
    url("bg2.webp");
  background-size: cover;
  background-position: center;
}

.dd2-page-hero {
  padding: 120px 0 72px;
  background:
    linear-gradient(rgba(9, 7, 24, 0.86), rgba(9, 7, 24, 0.92)),
    url("bg2.webp") center/cover;
}

.dd2-hero-inner,
.dd2-page-hero-inner {
  position: relative;
  z-index: 1;
}

.dd2-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(85vh - 82px);
  text-align: center;
  padding: 72px 0;
}

.dd2-hero-copy {
  max-width: 860px;
}

.dd2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: rgba(139, 92, 246, 0.12);
  color: var(--dd2-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dd2-hero h1,
.dd2-page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--dd2-accent-light);
}

.dd2-hero p,
.dd2-page-hero p {
  margin: 22px auto 0;
  max-width: 580px;
  color: var(--dd2-muted);
  font-size: 18px;
}

.dd2-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dd2-trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 24px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--dd2-text);
  font-size: 14px;
  font-weight: 500;
}

.dd2-main {
  padding-bottom: 32px;
}

.dd2-section {
  padding: 80px 0;
}

.dd2-section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.dd2-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--dd2-text);
  line-height: 1.12;
}

.dd2-section-head p {
  margin: 0;
  color: var(--dd2-muted);
}

.dd2-stack {
  display: grid;
  gap: 20px;
}

.dd2-card {
  background: var(--dd2-surface-strong);
  backdrop-filter: blur(8px);
  border: 1px solid var(--dd2-border);
  border-radius: var(--dd2-radius);
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.dd2-card:hover,
.dd2-card[data-hover="active"] {
  border-color: var(--dd2-border-strong);
  box-shadow: var(--dd2-shadow);
  transform: translateY(-2px);
}

.dd2-casino-card {
  display: grid;
  grid-template-columns: auto 140px 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.dd2-rank-badge {
  min-width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #180e02;
  background: linear-gradient(135deg, #ffe08b, #f5a623 55%, #d88907);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.dd2-rank-badge[data-dd2-rank="2"] {
  color: var(--dd2-text);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.28), rgba(139, 92, 246, 0.82));
}

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

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

.dd2-score {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dd2-score-line {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.dd2-score-value {
  color: var(--dd2-text);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.dd2-score-max {
  color: var(--dd2-muted);
  font-size: 18px;
  font-weight: 600;
}

.dd2-stars {
  color: var(--dd2-star);
  letter-spacing: 0.18em;
  font-size: 16px;
}

.dd2-votes {
  color: var(--dd2-muted);
  font-size: 14px;
}

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

.dd2-brand-meta h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--dd2-text);
}

.dd2-bonus {
  margin-top: 10px;
  color: var(--dd2-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.dd2-keyline {
  margin-top: 10px;
  color: var(--dd2-muted);
  font-size: 14px;
}

.dd2-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.dd2-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.08);
  color: var(--dd2-text);
  font-size: 13px;
  font-weight: 500;
}

.dd2-cta-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 190px;
}

.dd2-button,
.dd2-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, var(--dd2-cta-start), var(--dd2-cta-end));
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(245, 166, 35, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.dd2-button:hover,
.dd2-button:focus-visible,
.dd2-cta:hover,
.dd2-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.dd2-disclaimer {
  max-width: 220px;
  text-align: right;
  color: var(--dd2-muted);
  font-size: 12px;
  line-height: 1.5;
}

.dd2-grid-3,
.dd2-grid-2,
.dd2-grid-4 {
  display: grid;
  gap: 20px;
}

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

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

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

.dd2-criterion h3,
.dd2-feature h3,
.dd2-team-card h3,
.dd2-alert-card h3,
.dd2-help-card h3,
.dd2-contact-card h3,
.dd2-legal-card h3 {
  margin: 14px 0 10px;
  font-size: 19px;
  line-height: 1.3;
}

.dd2-criterion p,
.dd2-feature p,
.dd2-team-card p,
.dd2-alert-card p,
.dd2-help-card p,
.dd2-contact-card p,
.dd2-legal-card p,
.dd2-disclosure p,
.dd2-legal-card li {
  margin: 0;
  color: var(--dd2-muted);
}

.dd2-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.26);
  color: var(--dd2-accent-light);
  font-size: 20px;
}

.dd2-team-role,
.dd2-help-meta {
  display: block;
  margin-top: 2px;
  color: var(--dd2-accent-light);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dd2-disclosure,
.dd2-legal-card,
.dd2-contact-card,
.dd2-help-card {
  background: rgba(17, 14, 36, 0.9);
}

.dd2-alert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.dd2-alert-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.08);
}

.dd2-help-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 20px;
  margin-top: 28px;
}

.dd2-help-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.dd2-help-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
}

.dd2-help-item strong {
  display: block;
  margin-bottom: 4px;
}

.dd2-help-item a {
  color: var(--dd2-accent-light);
}

.dd2-signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dd2-sign-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 80px;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.dd2-sign-link:hover {
  border-color: rgba(139, 92, 246, 0.7);
  background: rgba(139, 92, 246, 0.08);
  transform: scale(1.05);
}

.dd2-sign-link img {
  max-width: 140px;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

.dd2-faq {
  display: grid;
  gap: 14px;
}

.dd2-faq-item {
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 14px;
  background: rgba(17, 14, 36, 0.88);
  overflow: clip;
}

.dd2-faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--dd2-text);
  text-align: left;
  cursor: pointer;
}

.dd2-faq-button span:first-child {
  font-weight: 600;
}

.dd2-faq-icon {
  color: var(--dd2-accent-light);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.dd2-faq-item[data-dd2-open="true"] .dd2-faq-icon {
  transform: rotate(45deg);
}

.dd2-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.dd2-faq-item[data-dd2-open="true"] .dd2-faq-panel {
  grid-template-rows: 1fr;
}

.dd2-faq-panel-inner {
  overflow: hidden;
}

.dd2-faq-panel p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--dd2-muted);
}

.dd2-footer {
  background: var(--dd2-footer);
  border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.dd2-footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 24px;
  padding: 48px 0 24px;
}

.dd2-footer p,
.dd2-footer li,
.dd2-footer a {
  color: var(--dd2-muted);
}

.dd2-footer h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.dd2-footer-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dd2-badge18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 36px;
  padding: 0 14px;
  margin: 16px 0;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.24);
  color: var(--dd2-text);
  font-weight: 700;
}

.dd2-footer-bottom {
  padding: 18px 0 30px;
  border-top: 1px solid rgba(139, 92, 246, 0.08);
  color: var(--dd2-muted);
  font-size: 14px;
}

.dd2-cookie-banner {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 860px);
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: rgba(9, 7, 24, 0.96);
  backdrop-filter: blur(14px);
  color: var(--dd2-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 80;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dd2-cookie-banner[data-dd2-state="visible"] {
  opacity: 1;
  pointer-events: auto;
}

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

.dd2-cookie-text {
  color: var(--dd2-muted);
  font-size: 14px;
}

.dd2-cookie-alt {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: rgba(139, 92, 246, 0.08);
  color: var(--dd2-text);
  cursor: pointer;
}

.dd2-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 4, 14, 0.9);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.dd2-age-overlay[data-dd2-state="visible"] {
  opacity: 1;
  pointer-events: auto;
}

.dd2-age-box {
  width: min(100%, 520px);
  padding: 36px 32px;
  border-radius: 22px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: linear-gradient(180deg, rgba(17, 14, 36, 0.98), rgba(9, 7, 24, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
  text-align: center;
}

.dd2-age-box h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.dd2-age-box p {
  margin: 16px 0 0;
  color: var(--dd2-muted);
}

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

.dd2-age-alt {
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: rgba(139, 92, 246, 0.08);
  color: var(--dd2-text);
  cursor: pointer;
}

.dd2-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(167, 139, 250, 0.9));
  color: var(--dd2-text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.dd2-scroll-top[data-dd2-state="visible"] {
  opacity: 1;
  pointer-events: auto;
}

.dd2-scroll-top:hover {
  transform: translateY(-2px);
}

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

.dd2-legal-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.dd2-legal-card + .dd2-legal-card {
  margin-top: 20px;
}

.dd2-inline-link {
  color: var(--dd2-accent-light);
}

@media (max-width: 1100px) {
  .dd2-grid-3,
  .dd2-grid-4,
  .dd2-footer-top,
  .dd2-contact-grid,
  .dd2-alert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .dd2-header-inner {
    position: relative;
  }

  .dd2-menu-toggle {
    display: inline-flex;
  }

  .dd2-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    left: 24px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(9, 7, 24, 0.98);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: grid;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .dd2-nav[data-dd2-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .dd2-casino-card,
  .dd2-grid-2,
  .dd2-help-layout {
    grid-template-columns: 1fr;
  }

  .dd2-score,
  .dd2-brand-meta,
  .dd2-cta-area {
    grid-column: auto;
    grid-row: auto;
  }

  .dd2-cta-area {
    align-items: stretch;
    min-width: 0;
  }

  .dd2-disclaimer {
    max-width: none;
    text-align: left;
  }

  .dd2-cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .dd2-cookie-actions,
  .dd2-age-actions {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .dd2-section {
    padding: 48px 0;
  }

  .dd2-grid-3,
  .dd2-grid-4,
  .dd2-footer-top,
  .dd2-contact-grid,
  .dd2-alert-grid {
    grid-template-columns: 1fr;
  }

  .dd2-hero-inner {
    min-height: auto;
    padding: 96px 0 72px;
  }

  .dd2-hero p,
  .dd2-page-hero p {
    font-size: 16px;
  }
}

@media (max-width: 550px) {
  body { overflow-x: hidden; }
  .dd2-header-inner { padding: 0.65rem 0.75rem; position: relative; }
  .dd2-logo { min-width: 0; }
  .dd2-nav { left: 8px; right: 8px; padding: 12px; }
  .dd2-nav a { font-size: 0.72rem; padding-block: 0.2rem; }
  .dd2-hero h1, .dd2-page-hero h1 { font-size: clamp(1.05rem,5.8vw,2rem); letter-spacing: 0.055em; word-break: break-word; overflow-wrap: anywhere; }
  .dd2-section { padding: 0.95rem 0.75rem; border-radius: 18px; }
  .dd2-section h2 { font-size: clamp(1.02rem,4.8vw,1.55rem); word-break: break-word; }
  .dd2-card { padding: 0.95rem 0.75rem; border-radius: 18px; }
  .dd2-card:hover, .dd2-card[data-hover="active"] { transform: none; }
  .dd2-card-top { flex-wrap: wrap; align-items: flex-start; gap: 0.55rem; }
  .dd2-logo-wrap { width: min(140px,100%); max-width: 100%; height: auto; min-height: 4.25rem; }
  .dd2-brand-meta { min-width: 0; width: 100%; }
  .dd2-button, .dd2-cta { padding: 0.72rem 1rem; font-size: 0.88rem; }
  .dd2-cookie-banner { padding: 10px; font-size: 0.84rem; }
  .dd2-age-overlay { padding: 0.65rem; }
  .dd2-age-box { padding: 1.1rem 0.75rem; }
  .dd2-age-box h2 { font-size: clamp(1rem,4.5vw,1.35rem); word-break: break-word; }
  .dd2-signs-grid { gap: 8px; }
  .dd2-sign-link img { max-width: 100px; max-height: 44px; }
  table { table-layout: fixed; width: 100%; }
  th, td { padding: 0.5rem 0.4rem; word-break: break-word; overflow-wrap: anywhere; font-size: 0.78rem; }
}
@media (max-width: 380px) {
  .dd2-hero h1 { font-size: clamp(1rem,5.2vw,1.75rem); }
  .dd2-header-inner { padding: 0.55rem; }
  .dd2-section, .dd2-card { padding-inline: 0.65rem; }
  th, td { padding: 0.42rem 0.32rem; font-size: 0.72rem; }
}
@media (max-width: 900px) {
  .dd2-header-inner { position: relative; }
}
