:root {
  --dm-ink: #0b0710;
  --dm-panel: #141019;
  --dm-green: #9cff19;
  --dm-green-2: #6bd900;
  --dm-purple: #8b55ff;
  --dm-red: #ff3138;
  --dm-yellow: #ffd738;
  --dm-cyan: #31dfff;
  --dm-paper: #fffaf0;
  --dm-muted: rgba(255, 255, 255, 0.76);
  --dm-line: rgba(255, 255, 255, 0.18);
  --dm-radius: 24px;
  --dm-shadow: 0 24px 70px rgba(11, 7, 16, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.dm-home-body {
  margin: 0;
  min-height: 100vh;
  color: var(--dm-ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(156, 255, 25, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(139, 85, 255, 0.13), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #fff9ed 58%, #fff3dc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.dm-home-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

.dm-home-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 7, 11, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.dm-home-topbar-inner,
.dm-home-main,
.dm-home-footer {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.dm-home-topbar-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.dm-home-brand {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 6px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 0.9;
  font-weight: 1000;
}

.dm-home-brand-mark {
  display: block;
  width: clamp(138px, 16vw, 178px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(156, 255, 25, 0.18));
}

.dm-home-brand span {
  grid-column: 1;
  color: #fff;
  font-size: 0.94rem;
  letter-spacing: 0;
}

.dm-home-brand strong {
  grid-column: 1;
  color: var(--dm-green);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  letter-spacing: 0;
}

.dm-home-brand-logo {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(255, 184, 44, 0.24))
    drop-shadow(0 12px 18px rgba(255, 184, 44, 0.22));
}

.dm-home-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.dm-home-nav a,
.dm-home-lang select,
.dm-home-collection,
.dm-home-button,
.dm-home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.dm-home-nav a {
  min-height: 38px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.dm-home-nav a:hover,
.dm-home-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.dm-home-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.dm-home-lang span {
  display: none;
}

.dm-home-lang select {
  width: 142px;
  min-height: 40px;
  padding: 8px 28px 8px 13px;
  background: #fff;
  color: #130d18;
  cursor: pointer;
}

.dm-home-collection {
  min-height: 44px;
  gap: 8px;
  padding: 9px 15px;
  background: linear-gradient(135deg, var(--dm-green), #7deb00);
  color: #11120a;
  box-shadow: 0 12px 26px rgba(156, 255, 25, 0.28);
  white-space: nowrap;
}

.dm-home-main {
  display: grid;
  gap: 18px;
  padding-bottom: 36px;
}

.dm-home-hero {
  position: relative;
  min-height: min(720px, calc(100svh - 88px));
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  align-items: stretch;
  gap: clamp(10px, 2vw, 26px);
  margin-top: 14px;
  padding: clamp(20px, 3vw, 42px);
  padding-bottom: clamp(128px, 15vw, 166px);
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 70% 44%, rgba(156, 255, 25, 0.32), transparent 26%),
    radial-gradient(circle at 90% 76%, rgba(49, 223, 255, 0.22), transparent 24%),
    radial-gradient(circle at 28% 90%, rgba(139, 85, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #08070b 0%, #0e0916 52%, #121d06 100%);
  box-shadow: var(--dm-shadow);
}

.dm-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 78px);
  pointer-events: none;
}

.dm-home-hero-copy {
  position: static;
  z-index: 3;
  display: grid;
  align-content: center;
  max-width: 560px;
  padding-block: clamp(6px, 2vw, 28px) clamp(88px, 10vw, 124px);
}

.dm-home-hero-copy > :not(.dm-home-hero-actions) {
  position: relative;
  z-index: 3;
}

.dm-home-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dm-home-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  line-height: 0.93;
  letter-spacing: 0;
  text-wrap: balance;
}

.dm-home-title span {
  display: inline-block;
  color: var(--dm-green);
  text-shadow: 0 0 30px rgba(156, 255, 25, 0.32);
}

.dm-home-summary {
  max-width: 45ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.35;
  font-weight: 780;
}

.dm-home-proof {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dm-home-proof li {
  position: relative;
  padding-left: 36px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.dm-home-proof li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--dm-green);
  color: #101406;
  transform: translateY(-50%);
}

.dm-home-hero-actions {
  position: absolute;
  left: clamp(20px, 3vw, 42px);
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(30px, 3.4vw, 52px);
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 0;
}

.dm-home-cta {
  min-height: 66px;
  gap: 12px;
  padding: 12px 18px;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dm-home-cta:hover,
.dm-home-cta:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.dm-home-cta b {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 0.84rem;
}

.dm-home-cta span {
  display: grid;
  line-height: 1.08;
}

.dm-home-cta strong {
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  letter-spacing: 0;
}

.dm-home-cta small {
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0.82;
}

.dm-home-cta-main {
  grid-column: auto;
  min-height: 74px;
  background: linear-gradient(135deg, var(--dm-green), #75e100);
  color: #111408;
  box-shadow: 0 18px 36px rgba(156, 255, 25, 0.28);
}

.dm-home-cta-game {
  background: linear-gradient(135deg, #8f5bff, #6e38ea);
  color: #fff;
  box-shadow: 0 16px 34px rgba(139, 85, 255, 0.26);
}

.dm-home-cta-video {
  background: linear-gradient(135deg, #ff3a44, #d81631);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 49, 56, 0.24);
}

.dm-home-trust {
  display: inline-flex;
  width: fit-content;
  margin: 22px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
}

.dm-home-stage {
  position: relative;
  z-index: 2;
  min-height: clamp(380px, 44vw, 610px);
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: visible;
  perspective: 980px;
  transform-style: preserve-3d;
}

.dm-home-stage::before {
  content: "";
  position: absolute;
  inset: -4% -12% -8% -12%;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 244, 132, 0.16), transparent 32%),
    radial-gradient(circle at 60% 56%, rgba(156, 255, 25, 0.2), transparent 52%),
    radial-gradient(circle at 82% 62%, rgba(49, 223, 255, 0.14), transparent 52%);
  filter: blur(3px);
  opacity: 0.6;
}

.dm-home-stage::after {
  content: "";
  position: absolute;
  inset: 2% -7% -2% -6%;
  z-index: 2;
  border-radius: 46px;
  background:
    radial-gradient(ellipse at 52% 55%, rgba(0, 0, 0, 0.66) 0 42%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.16) 76%, transparent 88%),
    radial-gradient(ellipse at 56% 50%, rgba(156, 255, 25, 0.26), transparent 66%);
  filter: blur(24px);
  transform: rotate(-7deg);
  pointer-events: none;
}

.dm-home-hero-art {
  position: relative;
  z-index: 3;
  width: min(136%, 700px);
  max-width: none;
  height: auto;
  align-self: start;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 38px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 34px rgba(156, 255, 25, 0.13));
  transform: translateX(-3%) translateY(-2%) rotate(-7deg);
  transform-origin: 52% 82%;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  mask-composite: intersect;
}

.dm-home-character {
  position: absolute;
  z-index: 4;
  height: auto;
  object-fit: contain;
  clip-path: inset(0 10% 10% 0);
  filter:
    drop-shadow(0 42px 34px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.18));
  transform-origin: center 86%;
  transform-style: preserve-3d;
  pointer-events: none;
  will-change: transform;
}

.dm-home-character.sphynx {
  right: 25%;
  bottom: 12%;
  width: min(48%, 430px);
  z-index: 7;
  transform: perspective(820px) rotateX(-9deg) rotateY(-8deg) translateY(-2%) scale(1.08);
}

.dm-home-character.pug {
  right: 20%;
  top: 16%;
  width: min(27%, 245px);
  z-index: 6;
  transform: perspective(760px) rotateX(-8deg) rotateY(-14deg) rotate(7deg) scale(1.02);
}

.dm-home-character.hamster {
  left: 3%;
  bottom: 13%;
  width: min(29%, 260px);
  z-index: 8;
  transform: perspective(720px) rotateX(-8deg) rotateY(10deg) rotate(-3deg) scale(1.05);
}

.dm-home-character.shark {
  right: -4%;
  bottom: 11%;
  width: min(34%, 310px);
  z-index: 7;
  transform: perspective(780px) rotateX(-7deg) rotateY(-12deg) rotate(-2deg) scale(1.03);
}

.dm-home-character.grey {
  right: 0;
  top: 20%;
  width: min(24%, 220px);
  z-index: 5;
  clip-path: none;
  filter:
    drop-shadow(0 28px 28px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.16));
  transform: perspective(760px) rotateX(-7deg) rotateY(-18deg) translateY(-2%) rotate(-5deg) scale(1.04);
  transform-origin: 50% 74%;
  animation: dm-grey-curious 6.4s ease-in-out infinite;
}

.dm-home-stage-lip {
  position: absolute;
  left: 5%;
  right: 1%;
  bottom: 3%;
  z-index: 9;
  height: 11%;
  border-radius: 0 0 38px 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.05) 34%, rgba(0, 0, 0, 0.32)),
    linear-gradient(90deg, rgba(5, 5, 8, 0.98), rgba(48, 50, 60, 0.98), rgba(5, 5, 8, 0.98));
  box-shadow:
    0 -18px 34px rgba(0, 0, 0, 0.36),
    0 10px 24px rgba(0, 0, 0, 0.42),
    inset 0 2px 0 rgba(255, 255, 255, 0.24),
    inset 0 0 0 1px rgba(156, 255, 25, 0.18);
  pointer-events: none;
}

@keyframes dm-grey-curious {
  0%,
  100% {
    transform: perspective(760px) rotateX(-7deg) rotateY(-18deg) translateY(-2%) rotate(-5deg) scale(1.04);
  }

  38% {
    transform: perspective(760px) rotateX(-7deg) rotateY(-12deg) translateY(-3%) rotate(5deg) scale(1.05);
  }

  68% {
    transform: perspective(760px) rotateX(-7deg) rotateY(-22deg) translateY(-1%) rotate(-9deg) scale(1.04);
  }
}

.dm-home-bubble {
  position: absolute;
  z-index: 8;
  display: grid;
  min-width: 58px;
  height: 58px;
  place-items: center;
  padding: 0 12px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-weight: 1000;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.dm-home-bubble-heart {
  top: 14%;
  right: 15%;
  color: var(--dm-red);
  font-size: 1.7rem;
}

.dm-home-bubble-wa {
  top: 33%;
  right: 4%;
  color: #17b53b;
}

.dm-home-bubble-play {
  top: 38%;
  left: 12%;
  color: #6d38ff;
}

.dm-home-promise-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -46px;
  overflow: hidden;
  border: 1px solid rgba(156, 255, 25, 0.42);
  border-radius: 24px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent),
    #111016;
  box-shadow: var(--dm-shadow);
}

.dm-home-promise {
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.dm-home-promise:last-child {
  border-right: 0;
}

.dm-home-promise b {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 4px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--dm-green), var(--dm-yellow));
  color: #151007;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(156, 255, 25, 0.22);
}

.dm-home-promise strong {
  color: var(--dm-green);
  font-size: 1.04rem;
  text-transform: uppercase;
}

.dm-home-promise span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.38;
}

.dm-home-section {
  padding: clamp(34px, 6vw, 72px) 0 0;
}

.dm-home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dm-home-section-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.dm-home-steps-section {
  padding-top: clamp(26px, 5vw, 54px);
}

.dm-home-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--dm-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 11, 23, 0.12);
}

.dm-home-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  min-height: 245px;
  text-align: center;
}

.dm-home-step b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--dm-green);
  color: #111408;
  font-size: 1.25rem;
}

.dm-home-step img {
  width: min(150px, 80%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(20, 9, 26, 0.18));
}

.dm-home-step strong {
  font-size: 1.06rem;
}

.dm-home-step span {
  max-width: 21ch;
  color: rgba(11, 7, 16, 0.72);
  line-height: 1.38;
  font-weight: 720;
}

.dm-home-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dm-home-feature-card {
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 12px;
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.6vw, 30px);
  border-radius: var(--dm-radius);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--dm-shadow);
}

.dm-home-feature-game {
  background:
    radial-gradient(circle at 86% 18%, rgba(156, 255, 25, 0.22), transparent 42%),
    linear-gradient(135deg, #071209, #151024);
}

.dm-home-feature-video {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 49, 56, 0.26), transparent 38%),
    linear-gradient(135deg, #16091d, #09070d);
}

.dm-home-feature-card span {
  display: grid;
  gap: 10px;
  z-index: 2;
}

.dm-home-feature-card strong {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1;
}

.dm-home-feature-card em {
  max-width: 29ch;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  line-height: 1.35;
  font-weight: 760;
}

.dm-home-feature-card mark,
.dm-home-button {
  width: fit-content;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--dm-green);
  color: #111408;
  font-weight: 1000;
  text-decoration: none;
}

.dm-home-football-top .dm-home-button {
  animation: dm-cta-pulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(156, 255, 25, 0.55), 0 10px 28px rgba(156, 255, 25, 0.22);
}

@keyframes dm-cta-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(156, 255, 25, 0.5), 0 10px 28px rgba(156, 255, 25, 0.22); }
  50% { transform: translateY(-2px); box-shadow: 0 0 0 9px rgba(156, 255, 25, 0), 0 14px 34px rgba(156, 255, 25, 0.34); }
}

.dm-home-seo {
  border: 1px solid rgba(23, 18, 29, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(156, 255, 25, 0.16), rgba(73, 223, 245, 0.1));
}

/* Sobre fondo claro: kicker y párrafos oscuros para que se lean bien. */
.dm-home-seo .dm-home-kicker { color: #5c6b3a; }
.dm-home-seo .dm-home-section-title { color: #17121d; }

.dm-home-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 42px);
  margin-top: 18px;
}

.dm-home-seo-grid p {
  margin: 0;
  color: #372c42;
  line-height: 1.7;
}

.dm-home-seo-grid a {
  color: #2f7a00;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dm-home-seo-grid a:hover { color: #256200; }

.dm-home-feature-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  transform: rotate(2deg) scale(1.04);
}

.dm-home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 22px;
  background: #0f0d14;
  color: #fff;
  box-shadow: var(--dm-shadow);
}

.dm-home-stat {
  display: grid;
  gap: 3px;
  min-height: 104px;
  align-content: center;
  padding: 18px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.dm-home-stat:last-child {
  border-right: 0;
}

.dm-home-stat strong {
  color: var(--dm-green);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
}

.dm-home-stat span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 820;
}

.dm-home-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.dm-home-card {
  position: relative;
  min-height: 230px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 11, 23, 0.1);
  border-radius: 18px;
  background: #fff;
  color: var(--dm-ink);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(18, 11, 23, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dm-home-card:hover,
.dm-home-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(18, 11, 23, 0.16);
  outline: none;
}

.dm-home-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.1;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8dd, #efffe0);
}

.dm-home-game-card img,
.dm-home-video-card img {
  object-fit: cover;
  background: #100c16;
}

.dm-home-card strong {
  font-size: 1rem;
}

.dm-home-card span {
  color: rgba(11, 7, 16, 0.68);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.3;
}

.dm-home-final {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 30%, rgba(156, 255, 25, 0.2), transparent 34%),
    linear-gradient(135deg, #0c0912, #14101c);
  box-shadow: var(--dm-shadow);
}

.dm-home-final strong {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.96;
  text-wrap: balance;
}

.dm-home-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 40px;
  color: rgba(11, 7, 16, 0.66);
  font-size: 0.92rem;
  font-weight: 760;
}

.dm-home-footer a {
  margin-left: 12px;
  color: inherit;
}

.dm-home-quickbar {
  display: none;
}

@media (max-width: 900px) {
  .dm-home-topbar-inner {
    grid-template-columns: auto 1fr auto;
  }

  .dm-home-nav {
    display: none;
  }

  .dm-home-hero {
    grid-template-columns: minmax(270px, 0.9fr) minmax(330px, 1.1fr);
    min-height: min(650px, calc(100svh - 80px));
    padding: clamp(16px, 2.5vw, 24px);
    padding-bottom: 108px;
  }

  .dm-home-stage {
    min-height: clamp(320px, 48vw, 480px);
  }

  .dm-home-hero-art {
    width: min(122%, 520px);
    transform: translateX(0) translateY(0) rotate(-7deg);
  }

  .dm-home-hero-actions {
    bottom: 78px;
  }

  .dm-home-hero-copy {
    max-width: 440px;
    padding-bottom: 150px;
  }

  .dm-home-title {
    font-size: clamp(2.65rem, 6.4vw, 3.95rem);
  }

  .dm-home-promise-bar,
  .dm-home-steps,
  .dm-home-feature-grid,
  .dm-home-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dm-home-grid {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }
}

@media (max-width: 680px) {
  .dm-home-topbar-inner,
  .dm-home-main,
  .dm-home-footer {
    width: min(100vw - 22px, 560px);
  }

  .dm-home-topbar-inner {
    min-height: 66px;
    grid-template-columns: auto 1fr;
    gap: 8px;
  }

  .dm-home-brand span {
    font-size: 0.7rem;
  }

  .dm-home-brand strong {
    font-size: 1.38rem;
  }

  .dm-home-brand-mark {
    width: 126px;
  }

  .dm-home-brand-logo {
    width: 34px;
    height: 34px;
  }

  .dm-home-lang {
    justify-self: end;
  }

  .dm-home-lang span,
  .dm-home-collection {
    display: none;
  }

  .dm-home-lang select {
    width: 118px;
    min-height: 36px;
    font-size: 0.78rem;
  }

  .dm-home-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    margin-top: 10px;
    border-radius: 22px;
    padding: 11px;
  }

  .dm-home-stage {
    order: 1;
    min-height: min(72vw, 320px);
  }

  .dm-home-hero-art {
    width: 118%;
    transform: translateX(0) translateY(0) rotate(-5deg);
    -webkit-mask-image: radial-gradient(ellipse at 50% 56%, #000 0 90%, rgba(0, 0, 0, 0.5) 98%, transparent 100%);
    mask-image: radial-gradient(ellipse at 50% 56%, #000 0 90%, rgba(0, 0, 0, 0.5) 98%, transparent 100%);
  }

  .dm-home-character.sphynx {
    right: 25%;
    bottom: 11%;
    width: 48%;
  }

  .dm-home-character.pug {
    right: 19%;
    top: 16%;
    bottom: auto;
    width: 27%;
  }

  .dm-home-character.hamster {
    left: 3%;
    bottom: 13%;
    width: 29%;
  }

  .dm-home-character.shark {
    right: -5%;
    bottom: 11%;
    width: 35%;
  }

  .dm-home-character.grey {
    right: 0;
    top: 20%;
    width: 25%;
  }

  .dm-home-bubble {
    min-width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 0.82rem;
  }

  .dm-home-bubble-heart {
    top: 13%;
    right: 16%;
  }

  .dm-home-bubble-play {
    top: 40%;
    left: 6%;
  }

  .dm-home-hero-copy {
    order: 2;
    max-width: none;
    margin-top: -12px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(13, 10, 17, 0.72);
    backdrop-filter: blur(14px);
  }

  .dm-home-title {
    font-size: clamp(2.35rem, 11.5vw, 3rem);
  }

  .dm-home-summary {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .dm-home-proof {
    margin-top: 12px;
    gap: 6px;
  }

  .dm-home-proof li {
    padding-left: 30px;
    font-size: 0.86rem;
  }

  .dm-home-proof li::before {
    width: 21px;
    height: 21px;
    font-size: 0.82rem;
  }

  .dm-home-hero-actions {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .dm-home-cta {
    min-height: 62px;
  }

  .dm-home-cta-main {
    min-height: 74px;
  }

  .dm-home-trust {
    display: none;
  }

  .dm-home-promise-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: -12px;
    border-radius: 20px;
  }

  .dm-home-promise {
    min-height: 138px;
    padding: 15px 10px;
  }

  .dm-home-promise b {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.1rem;
  }

  .dm-home-promise strong {
    font-size: 0.86rem;
  }

  .dm-home-promise span {
    font-size: 0.78rem;
  }

  .dm-home-section {
    padding-top: 34px;
  }

  .dm-home-section-head,
  .dm-home-final,
  .dm-home-footer {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .dm-home-section-title {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .dm-home-steps,
  .dm-home-feature-grid,
  .dm-home-stats,
  .dm-home-grid {
    grid-template-columns: 1fr;
  }

  .dm-home-steps {
    padding: 14px;
  }

  .dm-home-step {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    align-items: center;
  }

  .dm-home-step b {
    grid-row: 1 / span 3;
  }

  .dm-home-step img {
    width: 86px;
  }

  .dm-home-feature-card {
    min-height: 260px;
    grid-template-columns: 1fr;
  }

  .dm-home-feature-card img {
    aspect-ratio: 1.55;
  }

  .dm-home-card {
    min-height: 0;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    align-content: center;
    text-align: left;
  }

  .dm-home-card img {
    grid-row: 1 / span 2;
    width: 112px;
    height: 112px;
    aspect-ratio: 1;
  }

  .dm-home-final .dm-home-cta {
    width: 100%;
  }

  .dm-home-quickbar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(10, 8, 14, 0.9);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    transform: translateY(0);
    transition: transform 200ms ease;
  }

  .dm-home-scrolled .dm-home-quickbar {
    transform: translateY(0);
  }

  .dm-home-body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .dm-home-quickbar a {
    min-width: 0;
    padding: 10px 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 1000;
  }

  .dm-home-quickbar-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .dm-home-quickbar-four a {
    padding-inline: 4px;
    font-size: 0.66rem;
  }

  .dm-home-quickbar a:first-child {
    background: var(--dm-green);
    color: #111408;
  }

  .dm-home-quickbar span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .dm-home-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 18px 14px 16px;
  }

  .dm-home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(90deg, rgba(8, 7, 11, 0.96) 0%, rgba(8, 7, 11, 0.76) 40%, rgba(8, 7, 11, 0.12) 72%, rgba(8, 7, 11, 0) 100%),
      linear-gradient(180deg, rgba(8, 7, 11, 0) 0%, rgba(8, 7, 11, 0) 74%, rgba(8, 7, 11, 0.48) 100%);
    pointer-events: none;
  }

  .dm-home-stage {
    position: relative;
    order: 3;
    inset: auto;
    z-index: 3;
    min-height: 158px;
    margin: 8px -6px -4px;
    overflow: visible;
    justify-items: center;
    align-items: center;
  }

  .dm-home-stage::before {
    inset: -10% -18% -12% -18%;
    opacity: 0.58;
  }

  .dm-home-stage::after {
    content: "";
    inset: -2% -9% -6% -9%;
    z-index: 2;
    border-radius: 34px;
    background:
      radial-gradient(ellipse at 50% 58%, rgba(0, 0, 0, 0.62) 0 42%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.14) 74%, transparent 88%),
      radial-gradient(ellipse at 56% 46%, rgba(156, 255, 25, 0.24), transparent 70%);
    filter: blur(19px);
    transform: rotate(-5deg);
  }

  .dm-home-hero-art {
    width: min(120%, 432px);
    transform: translateX(0) translateY(0) rotate(-5deg) scale(1.05);
    filter:
      brightness(1.18) saturate(1.1)
      drop-shadow(0 26px 34px rgba(0, 0, 0, 0.58))
      drop-shadow(0 0 30px rgba(156, 255, 25, 0.2));
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
    mask-composite: intersect;
  }

  .dm-home-hero-copy {
    display: contents;
    position: static;
    z-index: 4;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
  }

  .dm-home-kicker {
    order: 1;
    position: relative;
    z-index: 8;
    max-width: 25ch;
    margin-bottom: 10px;
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .dm-home-title {
    order: 2;
    position: relative;
    z-index: 8;
    max-width: 10ch;
    font-size: clamp(1.95rem, 9.7vw, 2.55rem);
  }

  .dm-home-summary {
    order: 4;
    position: relative;
    z-index: 8;
    max-width: 29ch;
    margin-top: 0;
    font-size: 0.86rem;
    line-height: 1.18;
  }

  .dm-home-proof {
    order: 5;
    position: relative;
    z-index: 8;
    margin-top: 2px;
    gap: 4px;
  }

  .dm-home-proof li {
    padding-left: 27px;
    font-size: 0.78rem;
  }

  .dm-home-proof li::before {
    width: 20px;
    height: 20px;
    font-size: 0.78rem;
  }

  .dm-home-hero-actions {
    position: static;
    order: 7;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }

  .dm-home-cta {
    min-height: 58px;
    gap: 7px;
    padding: 9px;
    border-radius: 20px;
  }

  .dm-home-cta-main {
    grid-column: 1 / -1;
    min-height: 66px;
  }

  .dm-home-cta b {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 0.72rem;
  }

  .dm-home-cta strong {
    font-size: 0.74rem;
    line-height: 1;
  }

  .dm-home-cta small {
    margin-top: 2px;
    font-size: 0.59rem;
    line-height: 1.05;
  }

  .dm-home-trust {
    order: 6;
    position: relative;
    z-index: 8;
    display: inline-flex;
    max-width: 24ch;
    margin-top: 0;
    padding: 7px 10px;
    font-size: 0.66rem;
    line-height: 1.1;
  }

  .dm-home-promise-bar {
    margin-top: -24px;
  }

  .dm-home-hero .dm-home-kicker,
  .dm-home-hero .dm-home-title,
  .dm-home-hero .dm-home-summary,
  .dm-home-hero .dm-home-proof,
  .dm-home-hero .dm-home-trust {
    position: relative;
    z-index: 9;
  }
}

@media (max-width: 420px) {
  .dm-home-hero {
    min-height: auto;
    padding-bottom: 16px;
  }

  .dm-home-stage {
    min-height: 148px;
    margin-top: 16px;
  }

  .dm-home-hero-art {
    width: min(98%, 340px);
    transform: translateX(0) translateY(0) rotate(-5deg);
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 15%, #000 83%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 15%, #000 83%, transparent 100%);
    mask-composite: intersect;
  }

  .dm-home-hero-copy {
    max-width: none;
  }

  .dm-home-title {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }
}

@media (max-width: 360px) {
  .dm-home-stage {
    min-height: 138px;
  }

  .dm-home-hero-copy {
    max-width: none;
  }

  .dm-home-cta {
    padding: 8px 6px;
  }

  .dm-home-cta b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dm-home-character.grey {
    animation: none;
  }

  .dm-home-football-top .dm-home-button { animation: none; }
}

@media (max-width: 680px) {
  .dm-home-seo-grid { grid-template-columns: 1fr; }
}

.dm-home-football-new {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(18px, 5vw, 58px);
  overflow: hidden;
  padding: clamp(24px, 5vw, 46px);
  color: #fff;
  background: #17121d;
  border: 3px solid #17121d;
  border-radius: 8px;
  box-shadow: 0 12px 0 rgba(23, 18, 29, 0.14);
}

.dm-home-football-copy { position: relative; z-index: 2; }
.dm-home-football-copy .dm-home-section-title { margin-top: 10px; color: #fff; }
.dm-home-football-copy p { max-width: 56ch; color: #eee8f2; font-weight: 720; }

.dm-home-football-badge {
  display: inline-flex;
  padding: 7px 10px;
  color: #17121d;
  background: var(--dm-green);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.dm-home-football-new .dm-home-button { margin-top: 8px; color: #17121d; background: var(--dm-green); }

.dm-home-football-art {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.dm-home-football-art::before,
.dm-home-football-art::after {
  content: "";
  position: absolute;
  inset: 5% 50% 5% 0;
  background: #174c77;
  border-radius: 8px 0 0 8px;
}

.dm-home-football-art::after {
  inset: 5% 0 5% 50%;
  background: #ad1428;
  border-radius: 0 8px 8px 0;
}

.dm-home-football-art img {
  position: relative;
  z-index: 2;
  width: 126%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.34));
}

.dm-home-football-art img:first-child { margin-right: -20%; transform: rotate(-4deg); }
.dm-home-football-art img:last-child { margin-left: -20%; transform: rotate(4deg); }

@media (max-width: 680px) {
  .dm-home-football-new { grid-template-columns: 1fr; padding: 20px 16px; }
  .dm-home-football-copy { text-align: center; }
  .dm-home-football-copy p { margin-right: auto; margin-left: auto; }
  .dm-home-football-art { min-height: 235px; }
  .dm-home-football-art img { width: 120%; }
}

@media (max-width: 390px) {
  .dm-home-football-art { min-height: 205px; }
  .dm-home-football-copy .dm-home-section-title { font-size: 1.65rem; }
}

/* Temporary World Cup announcement: first content on every localized home. */
.dm-home-football-new.dm-home-football-top {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 300px);
  gap: clamp(12px, 3vw, 30px);
  margin: 14px 0 24px;
  padding: 16px 22px;
  border-width: 2px;
  box-shadow: 0 8px 0 rgba(23, 18, 29, 0.12);
}

.dm-home-football-top .dm-home-section-title {
  margin-top: 7px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.03;
}

.dm-home-football-top .dm-home-football-copy p {
  margin: 9px 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.dm-home-football-top .dm-home-football-art {
  min-height: 170px;
}

.dm-home-football-top .dm-home-football-art img {
  width: 112%;
}

@media (max-width: 680px) {
  .dm-home-football-new.dm-home-football-top {
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 8px;
    margin: 10px 0 18px;
    padding: 12px;
  }

  .dm-home-football-top .dm-home-football-copy {
    text-align: left;
  }

  .dm-home-football-top .dm-home-football-badge {
    padding: 5px 7px;
    font-size: 0.6rem;
  }

  .dm-home-football-top .dm-home-section-title {
    margin-top: 6px;
    font-size: 1.3rem;
  }

  .dm-home-football-top .dm-home-football-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 7px 0;
    font-size: 0.78rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .dm-home-football-top .dm-home-button {
    min-height: 42px;
    margin-top: 2px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .dm-home-football-top .dm-home-football-art {
    min-height: 142px;
  }

  .dm-home-football-top .dm-home-football-art img {
    width: 134%;
  }
}

/* Nuevo minijuego destacado: primera novedad en todas las home localizadas. */
.dm-home-game-new {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 240px);
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  overflow: hidden;
  margin: 14px 0 24px;
  padding: 16px 22px;
  color: #fff;
  background: linear-gradient(120deg, #2a1b4d 0%, #171033 58%, #123a5c 100%);
  border: 2px solid #241141;
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(23, 18, 29, 0.14);
}

.dm-home-game-copy { position: relative; z-index: 2; }

.dm-home-game-copy .dm-home-section-title {
  margin-top: 7px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.03;
}

.dm-home-game-copy p {
  max-width: 56ch;
  margin: 9px 0;
  color: #eae4f5;
  font-weight: 720;
  font-size: 0.92rem;
  line-height: 1.35;
}

.dm-home-game-badge {
  display: inline-flex;
  padding: 7px 10px;
  color: #10203a;
  background: #49dff5;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.dm-home-game-new .dm-home-button { margin-top: 8px; color: #10203a; background: #49dff5; }

.dm-home-game-art {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
  aspect-ratio: 4 / 5;
}

.dm-home-game-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 680px) {
  .dm-home-game-new {
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 10px;
    margin: 10px 0 18px;
    padding: 12px;
  }

  .dm-home-game-badge { padding: 5px 7px; font-size: 0.6rem; }
  .dm-home-game-copy .dm-home-section-title { font-size: 1.3rem; }

  .dm-home-game-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 7px 0;
    font-size: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .dm-home-game-new .dm-home-button {
    min-height: 42px;
    margin-top: 2px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }
}
