:root {
  --color-ink: #0d1b2a;
  --color-muted: #4b5b68;
  --color-soft: #f4f8f5;
  --color-panel: #ffffff;
  --color-line: #dfe9e4;
  --color-brand: #00856f;
  --color-brand-dark: #005b50;
  --color-brand-soft: #dff5ec;
  --color-accent: #f3b33f;
  --color-coral: #e5684f;
  --color-footer: #10152b;
  --shadow-card: 0 18px 44px rgba(13, 27, 42, 0.09);
  --radius: 8px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-soft);
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  padding-bottom: 84px;
}

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

a {
  color: var(--color-brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--color-coral);
}

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

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  border: 2px solid var(--color-brand);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-branding,
.brand-link,
.custom-logo-link {
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(48vw, 220px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: none;
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.footer-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-brand-soft);
}

.brand-logo img {
  max-width: 42px;
  max-height: 42px;
}

.brand-wordmark {
  white-space: nowrap;
  font-size: 1rem;
}

.primary-navigation {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.primary-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
}

.primary-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus {
  background: var(--color-brand-soft);
  color: var(--color-brand-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-ink);
  border-radius: 2px;
  content: "";
}

.menu-toggle__line::before {
  transform: translateY(-7px);
}

.menu-toggle__line::after {
  transform: translateY(5px);
}

.site-main {
  min-height: 60vh;
}

.entry-content > * {
  margin-top: 0;
}

.home-hero {
  --hero-image: none;
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 91, 80, 0.96) 0%, rgba(0, 133, 111, 0.84) 47%, rgba(16, 21, 43, 0.42) 100%),
    var(--hero-image),
    var(--color-brand);
  background-size: cover;
  background-position: center;
}

.hero-inner,
.section-inner,
.article-shell,
.page-content-shell,
.page-hero__inner,
.site-footer__inner {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.hero-inner {
  max-width: 740px;
  margin-left: max(18px, calc((100vw - var(--container)) / 2));
  margin-right: auto;
  padding: 86px 0 96px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--color-brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-hero .section-kicker {
  color: #dff5ec;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4.9rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.65rem);
}

h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-entry-button,
.internal-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.primary-entry-button {
  background: var(--color-accent);
  color: #121212;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.primary-entry-button:hover,
.primary-entry-button:focus {
  background: #ffd469;
  color: #121212;
}

.internal-button {
  background: #fff;
  color: var(--color-brand-dark);
  border: 1px solid var(--color-line);
}

.internal-button:hover,
.internal-button:focus {
  background: var(--color-brand-soft);
}

.hero-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.home-section {
  padding: 76px 0;
}

.home-section.is-soft {
  background: #fff;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.access-grid,
.feature-grid,
.games-grid,
.review-grid,
.faq-grid,
.page-card-grid,
.sitemap-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

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

.access-card,
.feature-card,
.game-card,
.review-card,
.faq-card,
.info-card,
.step-card,
.sitemap-card,
.trust-card {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.access-card {
  min-height: 132px;
  padding: 20px;
}

.feature-card,
.game-card,
.review-card,
.faq-card,
.info-card,
.step-card,
.sitemap-card,
.trust-card {
  padding: 24px;
}

.access-card a,
.game-card a,
.sitemap-card a {
  color: var(--color-ink);
  text-decoration: none;
}

.access-card:hover,
.game-card:hover,
.sitemap-card:hover {
  border-color: rgba(0, 133, 111, 0.42);
}

.card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--color-brand-soft);
  color: var(--color-brand-dark);
  font-weight: 900;
}

.card-mark.is-amber {
  background: #fff3d7;
  color: #9b6500;
}

.card-mark.is-coral {
  background: #ffe8e2;
  color: #a13c2a;
}

.access-card h3,
.feature-card h3,
.game-card h3,
.review-card h3,
.faq-card h3,
.info-card h3,
.step-card h3,
.sitemap-card h3,
.trust-card h3 {
  font-size: 1.08rem;
  margin-bottom: 9px;
}

.access-card p,
.feature-card p,
.game-card p,
.review-card p,
.faq-card p,
.info-card p,
.step-card p,
.sitemap-card p,
.trust-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.97rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.split-panel.reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.visual-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.visual-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.payment-chip,
.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: var(--radius);
  background: var(--color-brand-soft);
  color: var(--color-brand-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-chip {
  background: #fff3d7;
  color: #7a5207;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--color-brand);
  color: #fff;
  font-weight: 900;
}

.notice-band {
  background: var(--color-footer);
  color: #fff;
}

.notice-band .section-kicker,
.notice-band p,
.notice-band a {
  color: rgba(255, 255, 255, 0.88);
}

.notice-band a:hover,
.notice-band a:focus {
  color: #fff;
}

.article-section {
  padding: 86px 0;
  background: #fff;
}

.article-shell {
  max-width: 930px;
  padding: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.article-shell p,
.page-content-shell p {
  color: #243340;
}

.article-shell h2,
.page-content-shell h2 {
  margin-top: 34px;
}

.article-shell h3,
.page-content-shell h3 {
  margin-top: 26px;
}

.article-shell ul,
.page-content-shell ul {
  padding-left: 1.25rem;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.toc-list a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--color-soft);
  text-decoration: none;
  font-weight: 750;
}

.wp-block-image {
  margin: 30px 0;
}

.wp-block-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.wp-block-image figcaption {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.page-hero {
  background: var(--color-brand);
  color: #fff;
  padding: 72px 0;
}

.page-hero .section-kicker,
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero__inner {
  max-width: 900px;
}

.page-content-shell {
  max-width: 930px;
  padding: 54px 0 86px;
}

.content-page .wp-block-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.trust-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.trust-meta p {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-soft);
  font-size: 0.93rem;
}

.faq-card details {
  margin: 0;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--color-ink);
}

.faq-card summary::-webkit-details-marker {
  color: var(--color-brand);
}

.faq-card details > p {
  margin-top: 12px;
}

.archive-grid {
  width: min(var(--container), calc(100% - 36px));
  margin: 54px auto 86px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.archive-card {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-field {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.search-submit {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(0, 1.8fr);
  gap: 36px;
  padding: 56px 0 34px;
}

.site-footer a {
  color: #fff;
}

.site-footer .brand-link {
  color: #fff;
}

.footer-brand img {
  max-width: 150px;
  max-height: 48px;
}

.footer-menu {
  columns: 3;
  column-gap: 28px;
}

.footer-menu li {
  break-inside: avoid;
  margin: 0 0 8px;
}

.footer-menu a {
  text-decoration: none;
}

.footer-responsible {
  grid-column: 1 / -1;
  max-width: 860px;
  margin: 0;
  font-size: 0.94rem;
}

.site-footer__bottom {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.floating-entry {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 80;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-entry.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.floating-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(320px, calc(100vw - 36px));
  min-height: 52px;
  padding: 13px 22px;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: #121212;
  box-shadow: 0 16px 36px rgba(13, 27, 42, 0.28);
  font-weight: 900;
  text-decoration: none;
}

.floating-entry__button:hover,
.floating-entry__button:focus {
  background: #ffd469;
  color: #121212;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-navigation {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }

  .primary-navigation.is-open {
    display: block;
  }

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

  .access-grid,
  .feature-grid,
  .games-grid,
  .review-grid,
  .faq-grid,
  .steps-grid,
  .sitemap-grid,
  .archive-grid,
  .trust-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-panel,
  .split-panel.reverse {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    margin-left: 18px;
    width: min(calc(100% - 36px), 760px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .site-branding,
  .brand-link,
  .custom-logo-link {
    max-width: min(58vw, 160px);
  }

  .custom-logo,
  .custom-logo-link img,
  .site-branding img,
  .brand-logo img {
    max-width: 140px;
    max-height: 44px;
  }

  .brand-wordmark {
    font-size: 0.95rem;
  }

  .home-hero {
    min-height: 610px;
    background-position: center;
  }

  .hero-inner {
    padding: 64px 0 74px;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .primary-entry-button,
  .internal-button {
    width: 100%;
  }

  .home-section,
  .article-section {
    padding: 52px 0;
  }

  .access-grid,
  .feature-grid,
  .games-grid,
  .review-grid,
  .faq-grid,
  .steps-grid,
  .sitemap-grid,
  .archive-grid,
  .trust-meta {
    grid-template-columns: 1fr;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .article-shell {
    padding: 26px 18px;
  }

  .page-hero {
    padding: 54px 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-menu {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Daman Game 2026 mobile-first brand entry redesign. */
:root {
  --dg-navy: #10183f;
  --dg-purple: #4c1d95;
  --dg-violet: #6d28d9;
  --dg-gold: #f5b942;
  --dg-gold-dark: #c98914;
  --dg-ink: #101426;
  --dg-muted: #5a6378;
  --dg-card: #ffffff;
  --dg-soft: #f5f7ff;
  --dg-line: rgba(39, 48, 78, 0.12);
  --dg-radius: 24px;
  --dg-shadow: 0 24px 70px rgba(16, 24, 63, 0.16);
}

body {
  background: #f5f7ff;
}

.dg-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.dg-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 185, 66, 0.28), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(109, 40, 217, 0.48), transparent 36%),
    linear-gradient(135deg, #0c1437 0%, #22145b 48%, #5a189a 100%);
}

.dg-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% 42%;
  height: 320px;
  border-radius: 999px;
  background: rgba(245, 185, 66, 0.16);
  filter: blur(46px);
  pointer-events: none;
}

.dg-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: clamp(640px, 78vh, 800px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: 78px 0 96px;
}

.dg-hero__copy {
  max-width: 680px;
}

.dg-kicker {
  margin: 0 0 12px;
  color: var(--dg-gold);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dg-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.dg-hero__intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.dg-hero__note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.dg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.dg-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 16px 34px rgba(16, 24, 63, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.dg-button:hover,
.dg-button:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.dg-button--primary {
  background: linear-gradient(135deg, #ffd978, var(--dg-gold));
  color: #241305;
}

.dg-button--primary:hover,
.dg-button--primary:focus {
  color: #241305;
  box-shadow: 0 20px 42px rgba(245, 185, 66, 0.34);
}

.dg-button--secondary {
  background: #fff;
  color: var(--dg-navy);
}

.dg-button--light {
  background: #fff;
  color: var(--dg-purple);
}

.dg-button--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.dg-phone-wrap {
  display: flex;
  justify-content: center;
}

.dg-phone-card {
  width: min(100%, 430px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.07));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.dg-phone-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
}

.dg-phone-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.dg-phone-badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.dg-trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.dg-trust-strip__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--dg-shadow);
}

.dg-trust-strip span {
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  padding: 10px 12px;
  background: #f8f4ff;
  color: var(--dg-muted);
  font-size: 0.9rem;
}

.dg-trust-strip strong {
  color: var(--dg-purple);
}

.dg-section,
.dg-page-intro,
.dg-article-section {
  padding: clamp(54px, 8vw, 88px) 0;
}

.dg-section--white {
  background: #fff;
}

.dg-section--soft {
  background: var(--dg-soft);
}

.dg-section--gradient,
.dg-responsible {
  color: #fff;
  background: linear-gradient(135deg, var(--dg-navy), var(--dg-purple));
}

.dg-section-head {
  max-width: 780px;
  margin: 0 0 30px;
}

.dg-section-head h2,
.dg-page-intro h2,
.dg-section h2,
.dg-article-shell h2 {
  margin: 0 0 14px;
  color: var(--dg-ink);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.dg-section--gradient h2,
.dg-section--gradient h3,
.dg-responsible h2,
.dg-responsible h3 {
  color: #fff;
}

.dg-section-head p,
.dg-page-intro p,
.dg-section p {
  color: var(--dg-muted);
}

.dg-section--gradient p,
.dg-responsible p {
  color: rgba(255, 255, 255, 0.82);
}

.dg-card-grid,
.dg-feature-grid,
.dg-game-grid,
.dg-mini-grid,
.dg-review-grid,
.dg-steps,
.dg-check-grid {
  display: grid;
  gap: 18px;
}

.dg-card-grid--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.dg-mini-grid,
.dg-review-grid,
.dg-steps,
.dg-check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dg-card,
.dg-game-card,
.dg-review,
.dg-step,
.dg-check-grid > div,
.dg-faq-item {
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius);
  background: var(--dg-card);
  padding: 24px;
  box-shadow: 0 16px 45px rgba(16, 24, 63, 0.08);
}

.dg-link-card,
.dg-game-card {
  display: block;
  color: var(--dg-ink);
  text-decoration: none;
}

.dg-link-card:hover,
.dg-game-card:hover,
.dg-link-card:focus,
.dg-game-card:focus {
  color: var(--dg-ink);
  transform: translateY(-2px);
}

.dg-card h3,
.dg-game-card h3,
.dg-review h3,
.dg-step h3,
.dg-check-grid strong {
  margin: 0 0 8px;
  color: var(--dg-ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.dg-card p,
.dg-game-card p,
.dg-review p,
.dg-step p {
  margin: 0;
  color: var(--dg-muted);
  font-size: 0.96rem;
}

.dg-games-visual .dg-section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.dg-game-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dg-game-media-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  isolation: isolate;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(18, 29, 72, 0.12);
  border-radius: 24px;
  background: var(--dg-navy);
  box-shadow: 0 18px 44px rgba(16, 24, 63, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dg-game-media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 10, 34, 0.1) 0%, rgba(7, 10, 34, 0.38) 42%, rgba(7, 10, 34, 0.88) 100%);
  pointer-events: none;
}

.dg-game-media-card:hover,
.dg-game-media-card:focus {
  color: #fff;
  transform: translateY(-3px);
  border-color: rgba(245, 176, 65, 0.65);
  box-shadow: 0 22px 54px rgba(16, 24, 63, 0.16);
}

.dg-game-media-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(135deg, #171a58, #5b2fa8);
}

.dg-game-media-card__image::after {
  display: none;
}

.dg-game-media-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 220ms ease;
}

.dg-game-media-card:hover .dg-game-media-card__image img,
.dg-game-media-card:focus .dg-game-media-card__image img {
  transform: scale(1.08);
}

.dg-game-media-card--casino img,
.dg-game-media-card--live img,
.dg-game-media-card--cricket img,
.dg-game-media-card--sports img,
.dg-game-media-card--slots img,
.dg-game-media-card--teen-patti img,
.dg-game-media-card--andar-bahar img,
.dg-game-media-card--dragon-tiger img,
.dg-game-media-card--aviator img {
  object-position: center;
}

.dg-game-media-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 108px 22px 22px;
}

.dg-game-media-card__body span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dg-game-media-card__body h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.13rem;
  line-height: 1.22;
}

.dg-game-media-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.58;
}

.dg-icon,
.dg-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dg-purple), var(--dg-violet));
  color: #fff;
  font-weight: 900;
}

.dg-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: clamp(26px, 5vw, 62px);
}

.dg-split--reverse {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.dg-image-panel {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--dg-shadow);
}

.dg-image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dg-check-grid > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dg-check-grid span {
  color: var(--dg-muted);
  font-size: 0.95rem;
}

.dg-payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.dg-payment-chips span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
  color: var(--dg-purple);
  border: 1px solid rgba(76, 29, 149, 0.16);
  font-weight: 850;
}

.dg-note,
.dg-article-callout {
  border-left: 4px solid var(--dg-gold);
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff8e7;
  color: #3d2b06;
}

.dg-article-section {
  background:
    linear-gradient(180deg, rgba(16, 24, 63, 0.04), rgba(109, 40, 217, 0.08)),
    #fff;
}

.dg-article-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--dg-shadow);
}

.dg-article-shell p {
  color: #30384d;
}

.dg-article-shell h2:not(:first-of-type) {
  margin-top: 38px;
}

.dg-faq-list {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: clamp(50px, 8vw, 78px) 0;
}

.dg-faq-item {
  box-shadow: none;
}

.schema-faq-question {
  display: block;
  color: var(--dg-ink);
  font-size: 1.04rem;
  margin-bottom: 8px;
}

.schema-faq-answer {
  margin: 0;
  color: var(--dg-muted);
}

.page-content-shell {
  width: 100%;
  max-width: none;
  padding: 0;
}

.content-page .page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(245,185,66,0.25), transparent 30%),
    linear-gradient(135deg, var(--dg-navy), var(--dg-purple));
}

.content-page .page-hero h1,
.content-page .page-hero .section-kicker {
  color: #fff;
}

.content-page .page-hero p {
  color: rgba(255,255,255,0.82);
}

.site-footer {
  background: #0c1437;
}

.floating-entry__button {
  background: linear-gradient(135deg, #ffd978, var(--dg-gold));
  color: #241305;
  border-radius: 999px;
  min-height: 52px;
}

@media (max-width: 980px) {
  .dg-hero__inner,
  .dg-split,
  .dg-split--reverse {
    grid-template-columns: 1fr;
  }

  .dg-phone-wrap {
    justify-content: flex-start;
  }

  .dg-card-grid--six,
  .dg-feature-grid,
  .dg-game-grid,
  .dg-game-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .dg-container,
  .dg-hero__inner,
  .dg-trust-strip__inner,
  .dg-faq-list {
    width: min(100% - 28px, 1180px);
  }

  .dg-hero__inner {
    min-height: 0;
    padding: 54px 0 78px;
  }

  .dg-actions,
  .dg-button {
    width: 100%;
  }

  .dg-card-grid--six,
  .dg-feature-grid,
  .dg-game-grid,
  .dg-game-media-grid,
  .dg-mini-grid,
  .dg-review-grid,
  .dg-steps,
  .dg-check-grid,
  .dg-trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .dg-card,
  .dg-game-card,
  .dg-review,
  .dg-step,
  .dg-check-grid > div,
  .dg-faq-item {
    padding: 20px;
    border-radius: 18px;
  }

  .dg-game-media-card {
    min-height: 300px;
    border-radius: 20px;
  }

  .dg-game-media-card__body {
    padding: 92px 20px 20px;
  }

  .dg-phone-card {
    width: min(100%, 340px);
    transform: none;
  }

  .dg-article-shell {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .dg-payment-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dg-payment-chips span {
    justify-content: center;
    text-align: center;
  }
}

/* Site-wide dark graphite palette with restrained gold accents. */
:root {
  --color-ink: #f7f0e2;
  --color-muted: #c8c0b0;
  --color-soft: #0b0d12;
  --color-panel: #141720;
  --color-line: rgba(221, 170, 77, 0.18);
  --color-brand: #d4a24a;
  --color-brand-dark: #f0cf87;
  --color-brand-soft: rgba(212, 162, 74, 0.12);
  --color-accent: #d7a64b;
  --color-coral: #f0cf87;
  --color-footer: #07080c;
  --shadow-card: 0 22px 58px rgba(0, 0, 0, 0.36);
  --dg-navy: #08090d;
  --dg-purple: #171923;
  --dg-violet: #222432;
  --dg-gold: #d7a64b;
  --dg-gold-dark: #aa7930;
  --dg-ink: #f7f0e2;
  --dg-muted: #c8c0b0;
  --dg-card: #141720;
  --dg-soft: #0f1118;
  --dg-line: rgba(221, 170, 77, 0.18);
  --dg-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

html {
  background: #08090d;
}

body {
  background:
    linear-gradient(180deg, #08090d 0%, #0d0f15 44%, #090a0f 100%);
  color: var(--dg-ink);
}

a {
  color: #f0cf87;
}

a:hover,
a:focus {
  color: #ffe0a0;
}

.site-header {
  background: rgba(8, 9, 13, 0.94);
  border-bottom: 1px solid rgba(221, 170, 77, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.brand-link,
.site-footer .brand-link {
  color: #fff7e6;
}

.brand-logo {
  background: rgba(215, 166, 75, 0.12);
  border: 1px solid rgba(215, 166, 75, 0.22);
}

.primary-menu a {
  color: rgba(247, 240, 226, 0.84);
}

.primary-menu a:hover,
.primary-menu a:focus {
  background: rgba(215, 166, 75, 0.12);
  color: #ffe0a0;
}

.menu-toggle {
  background: #13161e;
  border-color: rgba(215, 166, 75, 0.24);
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
  background: #f0cf87;
}

.home-hero,
.dg-hero,
.page-hero,
.content-page .page-hero,
.dg-section--gradient,
.dg-responsible,
.notice-band {
  color: #fff7e6;
  background:
    linear-gradient(135deg, rgba(8, 9, 13, 0.98) 0%, rgba(20, 23, 32, 0.96) 58%, rgba(50, 35, 16, 0.88) 100%);
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.98) 0%, rgba(18, 21, 29, 0.9) 52%, rgba(55, 39, 18, 0.58) 100%),
    var(--hero-image),
    #08090d;
  background-size: cover;
  background-position: center;
}

.dg-hero::after {
  background: rgba(215, 166, 75, 0.12);
}

.section-kicker,
.dg-kicker,
.home-hero .section-kicker,
.page-hero .section-kicker,
.content-page .page-hero .section-kicker {
  color: #d7a64b;
  letter-spacing: 0;
}

.home-section,
.home-section.is-soft,
.article-section,
.dg-section,
.dg-page-intro,
.dg-article-section,
.dg-section--white,
.dg-section--soft {
  background: #0b0d12;
  color: var(--dg-ink);
}

.home-section.is-soft,
.dg-section--soft {
  background:
    linear-gradient(180deg, #10131a 0%, #0b0d12 100%);
}

.dg-section--white,
.article-section,
.dg-article-section {
  background:
    linear-gradient(180deg, #0b0d12 0%, #10131a 100%);
}

.section-head p,
.hero-copy,
.hero-note,
.page-hero p,
.content-page .page-hero p,
.dg-hero__intro,
.dg-hero__note,
.dg-section-head p,
.dg-page-intro p,
.dg-section p,
.dg-article-shell p,
.article-shell p,
.page-content-shell p,
.schema-faq-answer,
.wp-block-image figcaption {
  color: rgba(247, 240, 226, 0.72);
}

.dg-section-head h2,
.dg-page-intro h2,
.dg-section h2,
.dg-article-shell h2,
.article-shell h2,
.page-content-shell h2,
.page-hero h1,
.content-page .page-hero h1,
h1,
h2,
h3 {
  color: #fff7e6;
}

.access-card,
.feature-card,
.game-card,
.review-card,
.faq-card,
.info-card,
.step-card,
.sitemap-card,
.trust-card,
.archive-card,
.dg-card,
.dg-game-card,
.dg-review,
.dg-step,
.dg-check-grid > div,
.dg-faq-item,
.article-shell,
.dg-article-shell,
.visual-panel,
.dg-image-panel,
.trust-meta p {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    #141720;
  border: 1px solid rgba(221, 170, 77, 0.16);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
}

.access-card:hover,
.game-card:hover,
.sitemap-card:hover,
.dg-link-card:hover,
.dg-game-card:hover,
.dg-link-card:focus,
.dg-game-card:focus {
  border-color: rgba(215, 166, 75, 0.36);
  color: #fff7e6;
}

.access-card a,
.game-card a,
.sitemap-card a,
.dg-link-card,
.dg-game-card,
.archive-card a,
.toc-list a {
  color: #fff7e6;
}

.access-card h3,
.feature-card h3,
.game-card h3,
.review-card h3,
.faq-card h3,
.info-card h3,
.step-card h3,
.sitemap-card h3,
.trust-card h3,
.faq-card summary,
.schema-faq-question,
.dg-card h3,
.dg-game-card h3,
.dg-review h3,
.dg-step h3,
.dg-check-grid strong {
  color: #fff7e6;
}

.access-card p,
.feature-card p,
.game-card p,
.review-card p,
.faq-card p,
.info-card p,
.step-card p,
.sitemap-card p,
.trust-card p,
.dg-card p,
.dg-game-card p,
.dg-review p,
.dg-step p,
.dg-check-grid span,
.trust-meta p {
  color: rgba(247, 240, 226, 0.7);
}

.card-mark,
.dg-icon,
.dg-step span,
.step-card::before {
  background: rgba(215, 166, 75, 0.14);
  border: 1px solid rgba(215, 166, 75, 0.24);
  color: #f0cf87;
}

.card-mark.is-amber,
.card-mark.is-coral {
  background: rgba(215, 166, 75, 0.14);
  color: #f0cf87;
}

.primary-entry-button,
.dg-button--primary,
.floating-entry__button {
  background: linear-gradient(135deg, #ffe0a0, #d7a64b);
  color: #1b1205;
  box-shadow: 0 18px 38px rgba(215, 166, 75, 0.22);
}

.primary-entry-button:hover,
.primary-entry-button:focus,
.dg-button--primary:hover,
.dg-button--primary:focus,
.floating-entry__button:hover,
.floating-entry__button:focus {
  background: linear-gradient(135deg, #ffe8b6, #e0b45c);
  color: #1b1205;
}

.internal-button,
.dg-button--secondary,
.dg-button--light,
.dg-button--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(215, 166, 75, 0.2);
  color: #f0cf87;
}

.internal-button:hover,
.internal-button:focus,
.dg-button--secondary:hover,
.dg-button--secondary:focus,
.dg-button--light:hover,
.dg-button--light:focus,
.dg-button--ghost:hover,
.dg-button--ghost:focus {
  background: rgba(215, 166, 75, 0.12);
  color: #ffe0a0;
}

.dg-trust-strip__inner {
  background: rgba(20, 23, 32, 0.96);
  border: 1px solid rgba(215, 166, 75, 0.18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.dg-trust-strip span,
.dg-phone-badges span,
.payment-chip,
.trust-chip,
.dg-payment-chips span,
.toc-list a {
  background: rgba(215, 166, 75, 0.1);
  border: 1px solid rgba(215, 166, 75, 0.18);
  color: #f0cf87;
}

.dg-trust-strip strong {
  color: #ffe0a0;
}

.dg-phone-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #141720;
  border-color: rgba(215, 166, 75, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.dg-game-media-card {
  border-color: rgba(215, 166, 75, 0.18);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
}

.dg-game-media-card::before {
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.08) 0%, rgba(8, 9, 13, 0.44) 42%, rgba(8, 9, 13, 0.9) 100%);
}

.dg-game-media-card__body span {
  background: rgba(215, 166, 75, 0.16);
  border-color: rgba(215, 166, 75, 0.28);
  color: #ffe0a0;
}

.dg-note,
.dg-article-callout {
  background: rgba(215, 166, 75, 0.1);
  border-left-color: #d7a64b;
  color: #f7f0e2;
}

.wp-block-image img,
.content-page .wp-block-image img {
  border: 1px solid rgba(215, 166, 75, 0.16);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.search-field {
  background: #11141c;
  border-color: rgba(215, 166, 75, 0.18);
  color: #fff7e6;
}

.search-submit {
  background: #d7a64b;
  color: #1b1205;
}

.site-footer {
  background: #07080c;
  border-top: 1px solid rgba(215, 166, 75, 0.16);
}

.site-footer,
.site-footer p,
.footer-responsible,
.site-footer__bottom {
  color: rgba(247, 240, 226, 0.72);
}

.site-footer a {
  color: #f0cf87;
}

.site-footer__bottom {
  border-top-color: rgba(215, 166, 75, 0.14);
}

.footer-contact {
  grid-column: 1 / -1;
  max-width: 940px;
  padding: 20px 22px;
  border: 1px solid rgba(215, 166, 75, 0.16);
  border-radius: 18px;
  background: rgba(215, 166, 75, 0.07);
}

.footer-contact__title {
  margin: 0 0 8px;
  color: #fff7e6;
  font-size: 1rem;
  line-height: 1.3;
}

.footer-contact p {
  margin: 0 0 12px;
}

.footer-contact__email {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(215, 166, 75, 0.22);
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.42);
  font-weight: 800;
  text-decoration: none;
}

/* Practical content modules used by the AI-tone rewrite pass. */
.dg-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0 6px;
  border: 1px solid rgba(215, 166, 75, 0.16);
  border-radius: 18px;
  background: rgba(8, 9, 13, 0.36);
}

.dg-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.dg-table th,
.dg-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(215, 166, 75, 0.13);
  color: rgba(247, 240, 226, 0.74);
  text-align: left;
  vertical-align: top;
}

.dg-table th {
  color: #ffe0a0;
  background: rgba(215, 166, 75, 0.09);
  font-size: 0.9rem;
}

.dg-table tr:last-child td {
  border-bottom: 0;
}

.dg-faq-list + .dg-section {
  padding-top: 22px;
}

.content-page--support.content-page--faq .dg-section + .dg-faq-list {
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .primary-navigation {
    background: rgba(13, 15, 21, 0.98);
    border-color: rgba(215, 166, 75, 0.2);
  }
}

/* Subpage layout variation pass. */
.content-page .page-hero {
  padding: 46px 0 42px;
  border-bottom: 1px solid rgba(215, 166, 75, 0.14);
}

.content-page .page-hero__inner {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
}

.content-page .page-hero h1 {
  max-width: 900px;
  font-size: 2.65rem;
}

.content-page .page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
}

.content-page--account .page-hero {
  background:
    linear-gradient(135deg, #08090d 0%, #111923 68%, rgba(215, 166, 75, 0.18) 100%);
}

.content-page--money .page-hero {
  background:
    linear-gradient(135deg, #08090d 0%, #17140f 62%, rgba(215, 166, 75, 0.22) 100%);
}

.content-page--game .page-hero {
  background:
    linear-gradient(135deg, #08090d 0%, #10131b 56%, rgba(215, 166, 75, 0.16) 100%);
}

.content-page--legal .page-hero,
.content-page--support .page-hero {
  background:
    linear-gradient(135deg, #08090d 0%, #12141b 74%, rgba(215, 166, 75, 0.12) 100%);
}

.content-page--account .dg-page-intro .dg-split,
.content-page--money .dg-page-intro .dg-split {
  align-items: stretch;
  gap: 34px;
}

.content-page--account .dg-page-intro .dg-split {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
}

.content-page--money .dg-page-intro .dg-split {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.08fr);
}

.content-page--money .dg-page-intro .dg-image-panel {
  order: -1;
}

.content-page--account .dg-page-intro .dg-split > div,
.content-page--money .dg-page-intro .dg-split > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 32px;
  border: 1px solid rgba(215, 166, 75, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    #141720;
}

.content-page--account .dg-page-intro .dg-image-panel img,
.content-page--money .dg-page-intro .dg-image-panel img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-page--account .page-content-shell > .dg-section:nth-of-type(even) .dg-container,
.content-page--money .page-content-shell > .dg-section:nth-of-type(odd) .dg-container {
  padding: 30px;
  border: 1px solid rgba(215, 166, 75, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #141720;
}

.content-page--account .page-content-shell > .dg-section:nth-of-type(odd) .dg-container,
.content-page--money .page-content-shell > .dg-section:nth-of-type(even) .dg-container {
  max-width: 980px;
}

.content-page--money .dg-payment-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-page--game .page-content-shell,
.content-page--legal .page-content-shell,
.content-page--support .page-content-shell {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 52px 0 76px;
}

.content-page--game .page-hero-image {
  max-width: 980px;
  margin: -18px auto 30px;
}

.content-page--game .page-hero-image img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.content-page--game .trust-meta {
  margin: 0 0 26px;
}

.content-page--game .page-content-shell > .info-card {
  max-width: 980px;
  margin: 0 0 26px;
  padding: 32px;
  border-left: 4px solid #d7a64b;
}

.content-page--game .page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 26px 0;
}

.content-page--game .page-card-grid .info-card {
  min-height: 100%;
}

.content-page--legal .page-content-shell,
.content-page--support .page-content-shell {
  width: min(980px, calc(100% - 40px));
}

.content-page--legal .trust-meta {
  grid-template-columns: 1fr;
}

.content-page--legal .page-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 26px 0;
}

.content-page--legal .info-card,
.content-page--support .info-card {
  padding: 30px;
  border-left: 4px solid rgba(215, 166, 75, 0.72);
}

.content-page--support.content-page--faq .dg-faq-list {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  padding: 16px 0;
}

.content-page--support.content-page--faq .dg-page-intro .dg-container {
  max-width: 880px;
  margin-left: 0;
}

.content-page--support .faq-grid,
.content-page--legal .faq-grid,
.content-page--game .faq-grid {
  gap: 18px;
}

.content-page .page-content-shell > .dg-section h2:first-child,
.content-page .info-card h2:first-child {
  position: relative;
  padding-left: 18px;
}

.content-page .page-content-shell > .dg-section h2:first-child::before,
.content-page .info-card h2:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 4px;
  height: 1.15em;
  border-radius: 999px;
  background: #d7a64b;
}

@media (max-width: 980px) {
  .content-page--account .dg-page-intro .dg-split,
  .content-page--money .dg-page-intro .dg-split,
  .content-page--game .page-card-grid,
  .content-page--support.content-page--faq .dg-faq-list {
    grid-template-columns: 1fr;
  }

  .content-page--money .dg-page-intro .dg-image-panel {
    order: 0;
  }

  .content-page--money .dg-payment-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .content-page .page-hero h1 {
    font-size: 2rem;
  }

  .content-page .page-hero__inner,
  .content-page--game .page-content-shell,
  .content-page--legal .page-content-shell,
  .content-page--support .page-content-shell {
    width: min(100% - 28px, 1180px);
  }

  .content-page--account .dg-page-intro .dg-split > div,
  .content-page--money .dg-page-intro .dg-split > div,
  .content-page--account .page-content-shell > .dg-section:nth-of-type(even) .dg-container,
  .content-page--money .page-content-shell > .dg-section:nth-of-type(odd) .dg-container,
  .content-page--game .page-content-shell > .info-card,
  .content-page--legal .info-card,
  .content-page--support .info-card {
    padding: 22px;
    border-radius: 20px;
  }

  .content-page--money .dg-payment-chips {
    grid-template-columns: 1fr;
  }
}
