@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
  --dm-bg: #f7f4ee;
  --dm-bg-accent: #e8f4f2;
  --dm-surface: #ffffff;
  --dm-ink: #142024;
  --dm-muted: #4a5c62;
  --dm-line: rgba(20, 32, 36, 0.1);
  --dm-teal: #156d72;
  --dm-teal-dark: #0f4f53;
  --dm-amber: #d4912e;
  --dm-amber-soft: #f4e3c8;
  --dm-coral: #c75c4a;
  --dm-radius: 16px;
  --dm-radius-sm: 10px;
  --dm-font-display: "Sora", system-ui, sans-serif;
  --dm-font-body: "Source Sans 3", system-ui, sans-serif;
  --dm-max: 1140px;
  --dm-space: clamp(1rem, 3vw, 2rem);
  --dm-header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

html.dm-age-lock {
  overflow: hidden;
}

html.dm-consent-age #age-gate {
  display: none !important;
}

html.dm-consent-age:not(.dm-game-modal-open) {
  overflow: visible;
}

body {
  margin: 0;
  font-family: var(--dm-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--dm-ink);
  background: var(--dm-bg);
  min-height: 100vh;
}

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

a {
  color: var(--dm-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--dm-teal-dark);
}

.dm-top-disclaimer {
  background: var(--dm-teal-dark);
  color: #e8f6f4;
  font-size: 0.8125rem;
  text-align: center;
  padding: 0.5rem var(--dm-space);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dm-top-disclaimer p {
  margin: 0 auto;
  max-width: 58rem;
}

.dm-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dm-line);
}

.dm-header-inner {
  max-width: var(--dm-max);
  margin: 0 auto;
  padding: 0.85rem var(--dm-space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--dm-header-h);
}

.dm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--dm-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--dm-ink);
  text-decoration: none;
}

.dm-brand:hover {
  color: var(--dm-teal-dark);
  text-decoration: none;
}

.dm-brand img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.dm-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.dm-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--dm-muted);
}

.dm-nav a:hover {
  color: var(--dm-teal);
}

.dm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: var(--dm-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.dm-btn:focus-visible {
  outline: 2px solid var(--dm-amber);
  outline-offset: 2px;
}

.dm-btn--primary {
  background: linear-gradient(135deg, var(--dm-teal), var(--dm-teal-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 79, 83, 0.28);
}

.dm-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 79, 83, 0.35);
  color: #fff;
  text-decoration: none;
}

.dm-btn--outline {
  background: transparent;
  border-color: var(--dm-teal);
  color: var(--dm-teal);
}

.dm-btn--outline:hover {
  background: rgba(21, 109, 114, 0.08);
  text-decoration: none;
}

.dm-btn--ghost {
  background: var(--dm-amber-soft);
  color: var(--dm-teal-dark);
  border-color: transparent;
}

.dm-btn--ghost:hover:not(:disabled) {
  background: #ecd9b6;
  text-decoration: none;
}

.dm-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.dm-main {
  overflow-x: hidden;
}

.dm-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--dm-space);
}

.dm-section--tight {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.dm-wrap {
  max-width: var(--dm-max);
  margin: 0 auto;
}

.dm-hero {
  position: relative;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.dm-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dm-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}

.dm-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dm-coral);
  margin-bottom: 0.75rem;
}

.dm-h1 {
  font-family: var(--dm-font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--dm-ink);
}

.dm-lead {
  font-size: 1.125rem;
  color: var(--dm-muted);
  margin: 0 0 1.5rem;
  max-width: 34rem;
}

.dm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dm-quote-card {
  background: linear-gradient(145deg, var(--dm-bg-accent), var(--dm-surface));
  border: 1px solid var(--dm-line);
  border-radius: var(--dm-radius);
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(20, 32, 36, 0.08);
  position: relative;
  overflow: hidden;
}

.dm-quote-card::before {
  content: "";
  position: absolute;
  inset: -40% 40% auto -20%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 145, 46, 0.22), transparent 65%);
  pointer-events: none;
}

.dm-quote-card p {
  margin: 0;
  font-family: var(--dm-font-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.45;
  position: relative;
}

.dm-quote-author {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--dm-muted);
  font-weight: 500;
  position: relative;
}

.dm-hero-visual {
  margin-top: 2rem;
  border-radius: calc(var(--dm-radius) + 6px);
  min-height: 200px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 70%, rgba(45, 212, 191, 0.35), transparent),
    radial-gradient(ellipse 70% 55% at 85% 30%, rgba(212, 145, 46, 0.35), transparent),
    linear-gradient(165deg, #0f3d46 0%, #156d72 45%, #1a5c66 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.dm-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='20' cy='24' r='3' fill='%23fef3c7' opacity='0.45'/%3E%3Ccircle cx='96' cy='40' r='2' fill='%23fef3c7' opacity='0.35'/%3E%3Ccircle cx='60' cy='88' r='2.5' fill='%232dd4bf' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.9;
}

.dm-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.dm-h2 {
  font-family: var(--dm-font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.dm-sub {
  margin: 0;
  color: var(--dm-muted);
}

.dm-game-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
}

@media (min-width: 1100px) {
  .dm-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.dm-game-card {
  background: var(--dm-surface);
  border-radius: var(--dm-radius);
  border: 1px solid var(--dm-line);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 32, 36, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dm-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 32, 36, 0.1);
}

.dm-game-thumb {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  background: var(--dm-bg-accent);
}

.dm-game-body {
  padding: 1rem 1.15rem 1.25rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.dm-game-body h3 {
  margin: 0;
  font-family: var(--dm-font-display);
  font-size: 1.05rem;
}

.dm-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .dm-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.dm-feature-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.dm-mini-feature {
  background: var(--dm-surface);
  border: 1px solid var(--dm-line);
  border-radius: var(--dm-radius-sm);
  padding: 0.85rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.dm-mini-feature span {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.dm-how-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .dm-how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .dm-how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dm-how-card {
  background: var(--dm-surface);
  border-radius: var(--dm-radius);
  border: 1px solid var(--dm-line);
  padding: 1.35rem;
  box-shadow: 0 8px 22px rgba(20, 32, 36, 0.05);
}

.dm-how-card .dm-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--dm-amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.dm-how-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--dm-font-display);
  font-size: 1.05rem;
}

.dm-how-card p {
  margin: 0;
  color: var(--dm-muted);
  font-size: 0.95rem;
}

.dm-banner {
  background: linear-gradient(90deg, var(--dm-teal-dark), var(--dm-teal));
  color: #f0faf9;
  border-radius: var(--dm-radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.dm-banner h2 {
  margin: 0;
  font-family: var(--dm-font-display);
  font-size: 1.25rem;
}

.dm-banner .dm-btn {
  background: #fff;
  color: var(--dm-teal-dark);
  box-shadow: none;
}

.dm-banner .dm-btn:hover {
  background: var(--dm-amber-soft);
  color: var(--dm-teal-dark);
}

.dm-benefits {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .dm-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dm-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--dm-surface);
  border: 1px solid var(--dm-line);
  border-radius: var(--dm-radius);
  padding: 1.15rem 1.25rem;
}

.dm-benefit-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(21, 109, 114, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.dm-benefit p {
  margin: 0;
  font-weight: 500;
}

.dm-faq-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .dm-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 1.25rem;
  }
}

.dm-faq-item {
  background: var(--dm-surface);
  border: 1px solid var(--dm-line);
  border-radius: var(--dm-radius-sm);
  padding: 0;
}

.dm-faq-item summary {
  cursor: pointer;
  font-family: var(--dm-font-display);
  font-weight: 600;
  padding: 1rem 1.15rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.dm-faq-item summary::after {
  content: "+";
  font-weight: 700;
  color: var(--dm-teal);
  flex-shrink: 0;
}

.dm-faq-item[open] summary::after {
  content: "−";
}

.dm-faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--dm-muted);
  font-size: 0.98rem;
}

.dm-faq-body p {
  margin: 0;
}

.dm-site-footer {
  background: #101820;
  color: #c8d5d8;
  padding: 2.5rem var(--dm-space) 2rem;
  margin-top: 2rem;
}

.dm-footer-grid {
  max-width: var(--dm-max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 780px) {
  .dm-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.dm-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.dm-footer-brand img {
  width: 44px;
  height: 44px;
}

.dm-footer-brand strong {
  display: block;
  font-family: var(--dm-font-display);
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.dm-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dm-footer-links a {
  color: #a8bdbf;
  text-decoration: none;
  font-weight: 500;
}

.dm-footer-links a:hover {
  color: #fff;
}

.dm-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  border: 2px solid #e8b84a;
  color: #fef3c7;
  font-family: var(--dm-font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.dm-footer-meta {
  font-size: 0.9rem;
  line-height: 1.55;
}

.dm-footer-meta address {
  font-style: normal;
  margin-bottom: 0.75rem;
}

.dm-footer-meta a {
  color: #7dd3fc;
}

.dm-footer-bottom {
  max-width: var(--dm-max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: #8aa3a7;
}

.dm-footer-bottom p {
  margin: 0 0 0.5rem;
}

.dm-page-hero {
  padding: 2rem var(--dm-space) 1rem;
  background: linear-gradient(180deg, var(--dm-bg-accent), var(--dm-bg));
}

.dm-page-hero .dm-wrap {
  max-width: var(--dm-max);
}

.dm-page-title {
  font-family: var(--dm-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.dm-page-intro {
  margin: 0;
  color: var(--dm-muted);
  max-width: 46rem;
}

.dm-prose {
  max-width: 46rem;
}

.dm-prose h2 {
  font-family: var(--dm-font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.dm-prose p,
.dm-prose ul {
  margin: 0 0 1rem;
  color: var(--dm-muted);
}

.dm-prose ul {
  padding-left: 1.25rem;
}

.dm-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  background: #0c1920;
}

.dm-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.dm-age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--dm-space);
  background: rgba(10, 18, 22, 0.72);
  backdrop-filter: blur(6px);
}

.dm-age-gate[hidden] {
  display: none;
}

.dm-age-dialog {
  background: var(--dm-surface);
  border-radius: calc(var(--dm-radius) + 4px);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--dm-line);
}

.dm-age-dialog h2 {
  margin: 0 0 0.75rem;
  font-family: var(--dm-font-display);
  font-size: 1.5rem;
}

.dm-age-dialog p {
  margin: 0 0 1.25rem;
  color: var(--dm-muted);
  font-size: 0.98rem;
}

.dm-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.dm-age-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--dm-muted);
}

.dm-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  padding: var(--dm-space);
  padding-bottom: max(var(--dm-space), env(safe-area-inset-bottom));
  pointer-events: none;
}

.dm-cookie-banner__inner {
  pointer-events: auto;
  max-width: var(--dm-max);
  margin: 0 auto;
  background: var(--dm-surface);
  border: 1px solid var(--dm-line);
  border-radius: var(--dm-radius);
  box-shadow: 0 -8px 40px rgba(20, 32, 36, 0.15);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dm-cookie-banner__text {
  margin: 0;
  flex: 1 1 240px;
  font-size: 0.9rem;
  color: var(--dm-muted);
  line-height: 1.5;
}

.dm-cookie-banner__text a {
  font-weight: 600;
}

.dm-cookie-banner__actions {
  flex-shrink: 0;
}

html.dm-game-modal-open {
  overflow: hidden;
}

.dm-game-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--dm-space);
  padding-top: max(var(--dm-space), var(--dm-header-h));
}

.dm-game-modal[hidden] {
  display: none;
}

.dm-game-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 22, 0.78);
  backdrop-filter: blur(4px);
  cursor: pointer;
  border: 0;
  padding: 0;
}

.dm-game-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  background: var(--dm-surface);
  border-radius: var(--dm-radius);
  border: 1px solid var(--dm-line);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.dm-game-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--dm-line);
  background: linear-gradient(90deg, rgba(21, 109, 114, 0.08), transparent);
}

.dm-game-modal__title {
  margin: 0;
  font-family: var(--dm-font-display);
  font-size: 1.1rem;
}

.dm-game-modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(20, 32, 36, 0.06);
  color: var(--dm-ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.dm-game-modal__close:hover {
  background: rgba(20, 32, 36, 0.12);
}

.dm-game-modal__frame.dm-frame-wrap {
  position: relative;
  flex: 1;
  min-height: min(65vh, 560px);
  aspect-ratio: auto;
}

.dm-game-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 720px) {
  .dm-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .dm-header-inner {
    flex-wrap: wrap;
  }
}
