:root {
  --dd10-bg: #000000;
  --dd10-panel: #04110a;
  --dd10-accent: #00ff9c;
  --dd10-accent-soft: #00cc7d;
  --dd10-text: #c8ffe5;
  --dd10-amber: #ffb000;
  --dd10-red: #ff3b3b;
  --dd10-cyan: #00ddff;
  --dd10-border: 1px solid #00ff9c;
  --dd10-shadow: inset 0 0 0 1px rgba(0, 255, 156, 0.2), 0 0 24px rgba(0, 255, 156, 0.15);
  --dd10-radius: 2px;
  --dd10-text-shadow: 0 0 4px rgba(0, 255, 156, 0.35);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--dd10-bg);
  color: var(--dd10-text);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.6;
  text-shadow: var(--dd10-text-shadow);
}

@keyframes dd10Flicker {
  0%,
  98%,
  100% {
    opacity: 1;
  }
  99% {
    opacity: 0.94;
  }
}

@keyframes dd10Blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes dd10Caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes dd10Typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(0, 255, 156, 0.02);
  animation: dd10Flicker 6s infinite;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background:
    repeating-linear-gradient(0deg, rgba(0, 255, 170, 0.04) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.6) 100%);
}

a {
  color: var(--dd10-cyan);
}

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

button,
input,
select {
  font: inherit;
}

html.dd10-scroll-lock,
html.dd10-scroll-lock body {
  overflow: hidden;
}

.dd10-page,
.dd10-header,
.dd10-main,
.dd10-footer,
.dd10-cookie-banner,
.dd10-age-overlay {
  position: relative;
  z-index: 1;
}

.dd10-skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--dd10-accent);
  color: #000;
  padding: 8px 12px;
  z-index: 10000;
}

.dd10-skip-link:focus {
  top: 12px;
}

.dd10-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100dvh !important;
  min-height: 100% !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: #000000 !important;
  overflow: hidden !important;
}

.dd10-age-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  background: #04110a;
  border: 1px solid #00ff9c;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 255, 156, 0.2), 0 0 32px rgba(0, 255, 156, 0.2);
  max-width: 420px;
  width: 90%;
  margin-block: auto;
  font-family: 'JetBrains Mono', monospace;
  color: #c8ffe5;
  text-align: center;
}

.dd10-age-badge,
.dd10-inline-badge,
.dd10-legal-chip,
.dd10-filter-tag,
.dd10-mini-tag,
.dd10-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: var(--dd10-border);
  border-radius: var(--dd10-radius);
  background: rgba(0, 255, 156, 0.04);
  color: var(--dd10-accent);
  text-decoration: none;
}

.dd10-age-actions,
.dd10-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.dd10-btn,
.dd10-cta,
.dd10-accordion-trigger,
.dd10-nav-toggle,
.dd10-cookie-btn,
.dd10-age-btn {
  appearance: none;
  border: 1px solid var(--dd10-accent);
  border-radius: 0;
  background: transparent;
  color: var(--dd10-accent);
  padding: 12px 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dd10-btn:hover,
.dd10-btn:focus-visible,
.dd10-cta:hover,
.dd10-cta:focus-visible,
.dd10-accordion-trigger:hover,
.dd10-accordion-trigger:focus-visible,
.dd10-nav-toggle:hover,
.dd10-nav-toggle:focus-visible,
.dd10-cookie-btn:hover,
.dd10-cookie-btn:focus-visible,
.dd10-age-btn:hover,
.dd10-age-btn:focus-visible {
  background: var(--dd10-accent);
  color: #000000;
  box-shadow: 0 0 8px #00ff9c;
  outline: none;
}

.dd10-cta::after,
.dd10-btn.dd10-btn-play::after {
  content: '';
  opacity: 0;
}

.dd10-cta:hover::after,
.dd10-cta:focus-visible::after,
.dd10-btn.dd10-btn-play:hover::after,
.dd10-btn.dd10-btn-play:focus-visible::after {
  content: '▮';
  opacity: 1;
  animation: dd10Blink 1s steps(1) infinite;
}

.dd10-header {
  position: sticky;
  top: 0;
  background: #000000;
  border-bottom: 1px solid #00ff9c;
  transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
  z-index: 5000;
}

.dd10-header.dd10-header-scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 1px 0 #00ff9c;
}

.dd10-header[data-dd10-cookie-state='visible'] {
  padding-top: 66px;
}

.dd10-header-inner,
.dd10-section,
.dd10-footer-inner,
.dd10-cookie-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.dd10-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  min-width: 0;
}

.dd10-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dd10-text);
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}

.dd10-logo-mark {
  display: inline-flex;
  align-items: center;
  border: 1px solid #00ff9c;
  padding: 2px 6px;
  color: #00ff9c;
  font-weight: 700;
}

.dd10-logo {
  color: var(--dd10-text);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
}

.dd10-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.dd10-nav a {
  color: var(--dd10-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
  padding: 6px 8px;
}

.dd10-nav a::before {
  content: '> ';
}

.dd10-nav a[aria-current='page']::before {
  content: '▶ ';
}

.dd10-nav a:hover,
.dd10-nav a:focus-visible {
  background: #00ff9c;
  color: #000000;
  outline: none;
}

.dd10-nav-toggle {
  display: none;
  padding: 10px 14px;
}

.dd10-main {
  padding: 32px 0 64px;
  overflow-x: clip;
}

.dd10-section {
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(4, 17, 10, 0.58);
  border: var(--dd10-border);
  border-radius: var(--dd10-radius);
  box-shadow: var(--dd10-shadow);
  min-width: 0;
  overflow-x: clip;
}

.dd10-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: start;
  min-width: 0;
}

.dd10-hero > div,
.dd10-hero > aside {
  min-width: 0;
}

.dd10-status-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--dd10-amber);
  opacity: 0.8;
  font-size: 11px;
  margin-bottom: 16px;
}

.dd10-headline {
  margin: 0 0 12px;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--dd10-accent);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dd10-headline::after {
  content: ' ▮';
  color: var(--dd10-amber);
  animation: dd10Caret 1s steps(1) infinite;
}

.dd10-subline {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-right: 2px solid #ffb000;
  padding-right: 8px;
  margin: 0 0 20px;
  color: var(--dd10-text);
  animation: dd10Typing 3s steps(40) forwards;
}

.dd10-hero-search {
  display: grid;
  gap: 14px;
}

.dd10-search-row {
  display: flex;
  gap: 12px;
}

.dd10-search-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--dd10-accent);
  border-radius: 0;
  background: #000000;
  color: var(--dd10-text);
}

.dd10-search-input::placeholder {
  color: rgba(200, 255, 229, 0.7);
}

.dd10-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dd10-filter-tag {
  cursor: pointer;
}

.dd10-filter-tag[aria-pressed='true'] {
  background: var(--dd10-accent);
  color: #000000;
}

.dd10-hero-stats,
.dd10-hero-toplist {
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(0, 255, 156, 0.5);
  padding: 16px;
}

.dd10-hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dd10-hero-stat strong,
.dd10-rating-value,
.dd10-counter {
  color: var(--dd10-accent);
  font-size: 1.4rem;
  display: block;
}

.dd10-hero-toplist pre,
.dd10-policy-box pre {
  margin: 0;
  white-space: pre-wrap;
  color: var(--dd10-text);
}

.dd10-section-title,
.dd10-article h1,
.dd10-article h2,
.dd10-article h3 {
  margin: 0 0 16px;
  color: var(--dd10-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dd10-section-intro {
  margin: 0 0 16px;
  max-width: 70ch;
}

.dd10-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dd10-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  min-width: 860px;
}

.dd10-table th,
.dd10-table td {
  border-top: 1px solid rgba(0, 255, 156, 0.45);
  border-bottom: 1px solid rgba(0, 255, 156, 0.45);
  background: #04110a;
  padding: 16px 14px;
  vertical-align: middle;
}

.dd10-table th:first-child,
.dd10-table td:first-child {
  border-left: 1px solid rgba(0, 255, 156, 0.45);
}

.dd10-table th:last-child,
.dd10-table td:last-child {
  border-right: 1px solid rgba(0, 255, 156, 0.45);
}

.dd10-table th {
  color: var(--dd10-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dd10-table tr {
  transition: opacity 0.25s ease;
}

.dd10-table tr.dd10-is-hidden {
  opacity: 0;
}

.dd10-table tr.dd10-is-hidden td {
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
  line-height: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  background: transparent;
  overflow: hidden;
}

.dd10-sort-btn {
  border: 0;
  background: transparent;
  color: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  padding: 0;
}

.dd10-sort-btn::after {
  content: ' ↕';
  color: var(--dd10-amber);
}

.dd10-sort-btn[data-dd10-sort-dir='asc']::after {
  content: ' ↑';
}

.dd10-sort-btn[data-dd10-sort-dir='desc']::after {
  content: ' ↓';
}

.dd10-rank-cell {
  color: var(--dd10-accent-soft);
  font-size: 11px;
  letter-spacing: 1px;
  width: 52px;
}

.dd10-casino-cell {
  position: relative;
  min-width: 210px;
}

.dd10-casino-cell::before {
  content: attr(data-file-label);
  display: block;
  margin-bottom: 10px;
  color: #00cc7d;
  opacity: 0.6;
  font-size: 11px;
}

.dd10-casino-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dd10-logo-wrap {
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 40px;
  border-radius: 2px;
  padding: 4px 6px;
  flex-shrink: 0;
}

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

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

.dd10-offer-cell strong,
.dd10-feature-pill {
  color: var(--dd10-accent);
}

.dd10-terms-note,
.dd10-fineprint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(200, 255, 229, 0.82);
}

.dd10-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.dd10-feature-pill {
  font-size: 11px;
}

.dd10-rating-block {
  min-width: 124px;
}

.dd10-rating-bar {
  margin-top: 6px;
  width: 100%;
  height: 4px;
  background: rgba(0, 255, 156, 0.15);
}

.dd10-rating-bar span {
  display: block;
  height: 100%;
  background: #00ff9c;
}

.dd10-key-feature {
  color: var(--dd10-cyan);
}

.dd10-card-row td {
  box-shadow: var(--dd10-shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.dd10-card-row:hover td,
.dd10-card-row[data-hover='active'] td {
  box-shadow: 0 0 32px rgba(0, 255, 156, 0.3);
  border-color: #00ff9c;
}

.dd10-comparison td:first-child,
.dd10-comparison th:first-child {
  min-width: 160px;
}

.dd10-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.9fr);
  gap: 24px;
}

.dd10-policy-box {
  border: 1px solid rgba(0, 255, 156, 0.55);
  padding: 16px;
  background: rgba(0, 0, 0, 0.5);
  align-self: start;
}

.dd10-calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.dd10-terminal-card,
.dd10-method-card,
.dd10-rg-box,
.dd10-article-section {
  background: #04110a;
  border: 1px solid #00ff9c;
  border-radius: 2px;
  box-shadow: var(--dd10-shadow);
}

.dd10-terminal-card {
  padding: 20px;
}

.dd10-calc-form {
  display: grid;
  gap: 14px;
}

.dd10-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #00ff9c;
  background: #000000;
  color: #c8ffe5;
}

.dd10-calc-output {
  display: grid;
  gap: 12px;
}

.dd10-calc-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 255, 156, 0.35);
}

.dd10-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dd10-method-card {
  padding: 18px;
}

.dd10-accordion-trigger {
  width: 100%;
  justify-content: space-between;
  padding: 0;
  border: 0;
  text-align: left;
  color: var(--dd10-text);
  background: transparent;
}

.dd10-accordion-trigger:hover,
.dd10-accordion-trigger:focus-visible {
  background: transparent;
  color: var(--dd10-accent);
  box-shadow: none;
}

.dd10-accordion-symbol {
  color: var(--dd10-accent);
}

.dd10-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding-top 0.25s ease;
  padding-top: 0;
}

.dd10-method-card[data-accordion-open='true'] .dd10-accordion-panel {
  padding-top: 12px;
}

.dd10-rg-box {
  border-left: 3px solid var(--dd10-accent);
  padding: 20px;
}

.dd10-rg-links,
.dd10-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dd10-footer {
  background: #000000;
  border-top: 1px solid #00ff9c;
  padding: 20px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(200, 255, 229, 0.5);
}

.dd10-footer-inner {
  display: grid;
  gap: 12px;
}

.dd10-footer-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dd10-footer a {
  color: rgba(200, 255, 229, 0.82);
  text-decoration: none;
}

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

.dd10-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #04110a;
  border-top: 1px solid #00ff9c;
  padding: 16px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #c8ffe5;
}

.dd10-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dd10-cookie-text {
  margin: 0;
}

.dd10-article {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.dd10-article p,
.dd10-article li {
  margin: 0 0 12px;
}

.dd10-article-section {
  padding: 20px;
}

.dd10-list {
  margin: 0;
  padding-left: 18px;
}

.dd10-note {
  color: rgba(200, 255, 229, 0.8);
  font-size: 12px;
}

.dd10-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .dd10-header[data-dd10-cookie-state='visible'] {
    padding-top: 74px;
  }

  .dd10-hero,
  .dd10-about-grid,
  .dd10-calc-grid {
    grid-template-columns: 1fr;
  }

  .dd10-nav-toggle {
    display: inline-flex;
  }

  .dd10-header-inner {
    position: relative;
  }

  .dd10-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    background: #000000;
    border: 1px solid #00ff9c;
    border-radius: 2px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .dd10-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .dd10-main {
    padding-top: 20px;
  }

  .dd10-section {
    width: min(100%, calc(100% - 20px));
    padding: 18px;
  }

  .dd10-table,
  .dd10-table thead,
  .dd10-table tbody,
  .dd10-table th,
  .dd10-table td,
  .dd10-table tr {
    display: block;
  }

  .dd10-table {
    min-width: 0;
    border-spacing: 0;
  }

  .dd10-table thead {
    display: none;
  }

  .dd10-table tr {
    margin-bottom: 14px;
    border: 1px solid rgba(0, 255, 156, 0.45);
    background: #04110a;
    box-shadow: var(--dd10-shadow);
  }

  .dd10-table td {
    border: 0;
    padding: 10px 14px;
  }

  .dd10-table td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--dd10-accent-soft);
    font-size: 11px;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .dd10-table tr.dd10-is-hidden td {
    display: none;
  }

  .dd10-search-row,
  .dd10-footer-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .dd10-hero-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DESKTOP OVERFLOW GUARDS ===== */
@media (min-width: 551px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .dd10-header-inner,
  .dd10-section,
  .dd10-footer-inner,
  .dd10-cookie-inner {
    max-width: 100%;
  }
}

/* ===== ULTRA-NARROW ≤550px ===== */
@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .dd10-hero h1,
  .dd10-hero .dd10-headline {
    font-size: clamp(1.05rem, 5.8vw, 2rem) !important;
    letter-spacing: 0.04em !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal !important;
  }

  .dd10-logo {
    font-size: clamp(0.7rem, 3.5vw, 1rem) !important;
    letter-spacing: 0.05em !important;
  }

  .dd10-logo-wrap {
    width: min(80px, 100%) !important;
    height: auto !important;
    min-height: 2.5rem !important;
  }

  .dd10-card-top {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 0.55rem !important;
  }

  .dd10-score,
  .dd10-score strong {
    min-width: 0 !important;
    flex-shrink: 1 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .dd10-card:hover,
  .dd10-card[data-hover='active'] {
    transform: none !important;
  }

  .dd10-hero p,
  .dd10-hero .dd10-subline {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    border-right: none !important;
    animation: none !important;
  }

  .dd10-btn,
  .dd10-cta,
  [class*='dd10-'][class*='btn'],
  [class*='dd10-'][class*='cta'] {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .dd10-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
  }

  .dd10-grid,
  .dd10-cards-grid,
  .dd10-method-grid {
    grid-template-columns: 1fr !important;
  }

  [class*='dd10-'] {
    min-width: 0 !important;
  }
}

/* ===== ULTRA-NARROW ≤380px ===== */
@media (max-width: 380px) {
  .dd10-hero h1,
  .dd10-hero .dd10-headline {
    font-size: clamp(1rem, 5.2vw, 1.75rem) !important;
    letter-spacing: 0.02em !important;
  }

  .dd10-logo {
    letter-spacing: 0.02em !important;
  }

  .dd10-logo-wrap {
    width: min(68px, 100%) !important;
    min-height: 2rem !important;
  }

  .dd10-age-box {
    padding: 24px 16px !important;
    width: 95% !important;
  }
}
