:root {
  --gd6d-primary: #26a69a;
  --gd6d-primary-dark: #126b64;
  --gd6d-accent: #adff2f;
  --gd6d-warm: #f5deb3;
  --gd6d-bg: #0c0c0c;
  --gd6d-surface: #151917;
  --gd6d-surface-soft: #202722;
  --gd6d-text: #fffaf0;
  --gd6d-muted: #b9c4bd;
  --gd6d-line: rgba(245, 222, 179, .16);
  --gd6d-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, .32);
  --gd6d-radius: 1.6rem;
}

* { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 32rem;
  overflow-x: hidden;
  color: var(--gd6d-text);
  background: radial-gradient(circle at 80% 0, rgba(38, 166, 154, .18), transparent 32rem), var(--gd6d-bg);
  font: 1.5rem/1.5rem Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.gd6d-menu-locked { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.gd6d-container { width: min(100% - 3.2rem, 118rem); margin-inline: auto; }
.gd6d-wrapper { position: relative; }
.gd6d-skip {
  position: fixed; top: -8rem; left: 1.6rem; z-index: 10001; padding: 1.2rem 1.6rem;
  color: var(--gd6d-bg); background: var(--gd6d-accent); border-radius: .8rem; font-weight: 800;
}
.gd6d-skip:focus { top: 1rem; }

.gd6d-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: 6.8rem;
  background: rgba(12, 12, 12, .94); border-bottom: .1rem solid var(--gd6d-line); backdrop-filter: blur(1.4rem);
}
.gd6d-header-row { height: 6.8rem; display: flex; align-items: center; gap: .8rem; }
.gd6d-brand { display: inline-flex; align-items: center; gap: .8rem; min-width: 0; text-decoration: none; }
.gd6d-brand img { width: 3.2rem; height: 3.2rem; border-radius: .8rem; object-fit: cover; }
.gd6d-brand strong { color: var(--gd6d-warm); font-size: 2rem; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.gd6d-desktop-nav { display: none; margin-left: auto; align-items: center; gap: 2rem; }
.gd6d-desktop-nav a { color: var(--gd6d-muted); font-weight: 700; text-decoration: none; }
.gd6d-desktop-nav a:hover { color: var(--gd6d-accent); }
.gd6d-header-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.gd6d-btn {
  min-height: 4.4rem; display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: .9rem 1.4rem; border: .1rem solid transparent; border-radius: 1.2rem; cursor: pointer;
  color: var(--gd6d-bg); background: var(--gd6d-accent); font-weight: 900; text-decoration: none; transition: .2s ease;
}
.gd6d-btn:hover, .gd6d-btn:focus-visible { filter: brightness(1.08); transform: translateY(-.2rem); }
.gd6d-btn-outline { color: var(--gd6d-warm); background: transparent; border-color: var(--gd6d-primary); }
.gd6d-btn-small { min-height: 4.4rem; padding: .8rem 1rem; font-size: 1.25rem; }
.gd6d-menu-toggle {
  width: 4.4rem; height: 4.4rem; display: grid; place-items: center; border: 0; border-radius: 1.2rem;
  color: var(--gd6d-text); background: var(--gd6d-surface-soft); cursor: pointer;
}
.gd6d-menu-toggle i { font-size: 2.4rem; }
.gd6d-toggle-active { color: var(--gd6d-accent); }

.gd6d-mobile-menu {
  position: fixed; z-index: 9999; top: 7.6rem; right: 1.6rem; width: min(32rem, calc(100% - 3.2rem));
  padding: 1.2rem; opacity: 0; visibility: hidden; transform: translateY(-1rem) scale(.98); transition: .22s ease;
  background: #151917; border: .1rem solid rgba(173, 255, 47, .25); border-radius: 1.6rem; box-shadow: var(--gd6d-shadow);
}
.gd6d-menu-open { opacity: 1; visibility: visible; transform: none; }
.gd6d-mobile-menu a, .gd6d-mobile-menu button {
  width: 100%; min-height: 4.8rem; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem;
  color: var(--gd6d-text); background: transparent; border: 0; border-radius: 1rem; font-weight: 750; text-align: left; text-decoration: none; cursor: pointer;
}
.gd6d-mobile-menu a:hover, .gd6d-mobile-menu button:hover { color: var(--gd6d-accent); background: rgba(38, 166, 154, .14); }
.gd6d-mobile-menu i, .gd6d-mobile-menu ion-icon { width: 2.4rem; font-size: 2.2rem; }

.gd6d-main { padding-top: 6.8rem; }
.gd6d-hero { padding: 1.6rem 0 2.4rem; }
.gd6d-carousel { position: relative; overflow: hidden; min-height: 31rem; border-radius: 2rem; background: var(--gd6d-surface); box-shadow: var(--gd6d-shadow); }
.gd6d-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s ease; }
.gd6d-slide-active { position: relative; opacity: 1; visibility: visible; }
.gd6d-slide-image { width: 100%; height: 31rem; display: block; padding: 0; border: 0; background: transparent; cursor: pointer; }
.gd6d-slide img { width: 100%; height: 31rem; object-fit: cover; }
.gd6d-slide::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.1)), linear-gradient(0deg, rgba(0,0,0,.65), transparent 55%); }
.gd6d-slide-content { position: absolute; z-index: 2; left: 2rem; right: 2rem; bottom: 3.8rem; max-width: 58rem; }
.gd6d-kicker { display: inline-flex; align-items: center; gap: .6rem; margin: 0 0 1rem; color: var(--gd6d-accent); font-size: 1.2rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.gd6d-slide h2 { margin: 0 0 1rem; font-size: clamp(2.6rem, 8vw, 5.6rem); line-height: 1.05; }
.gd6d-slide p { max-width: 54rem; margin: 0 0 1.5rem; color: #e2e9e4; line-height: 2.2rem; }
.gd6d-carousel-controls { position: absolute; z-index: 3; left: 1.6rem; right: 1.6rem; bottom: 1.2rem; display: flex; justify-content: space-between; align-items: center; }
.gd6d-carousel-dots { display: flex; gap: .7rem; }
.gd6d-carousel-dot { width: 1rem; height: 1rem; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; }
.gd6d-dot-active { width: 2.8rem; border-radius: 1rem; background: var(--gd6d-accent); }
.gd6d-carousel-arrows { display: flex; gap: .6rem; }
.gd6d-carousel-arrow { width: 4.4rem; height: 4.4rem; border: .1rem solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; background: rgba(0,0,0,.5); cursor: pointer; }

.gd6d-intro { padding: 2rem 0 1rem; text-align: center; }
.gd6d-intro h1 { max-width: 85rem; margin: 0 auto 1.2rem; font-size: clamp(3rem, 9vw, 5.6rem); line-height: 1.08; letter-spacing: -.045em; }
.gd6d-intro p { max-width: 78rem; margin: 0 auto 1.4rem; color: var(--gd6d-muted); line-height: 2.4rem; }
.gd6d-inline-link { border: 0; padding: 0; color: var(--gd6d-accent); background: none; font-weight: 900; text-decoration: underline; cursor: pointer; }
.gd6d-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 1.5rem; }
.gd6d-trust-chip { min-height: 4.4rem; display: inline-flex; align-items: center; gap: .7rem; padding: .8rem 1.1rem; color: var(--gd6d-warm); background: var(--gd6d-surface); border: .1rem solid var(--gd6d-line); border-radius: 999rem; }
.gd6d-trust-chip i, .gd6d-trust-chip ion-icon { color: var(--gd6d-primary); font-size: 2rem; }

.gd6d-section { padding: 3.2rem 0; scroll-margin-top: 8rem; }
.gd6d-section-alt { background: linear-gradient(180deg, rgba(38,166,154,.08), transparent); }
.gd6d-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.2rem; margin-bottom: 1.6rem; }
.gd6d-section-heading h2 { margin: 0; font-size: clamp(2.4rem, 7vw, 3.8rem); line-height: 1.12; }
.gd6d-section-heading p { margin: .6rem 0 0; color: var(--gd6d-muted); line-height: 2.2rem; }
.gd6d-count { flex: 0 0 auto; padding: .7rem 1rem; color: var(--gd6d-accent); background: rgba(173,255,47,.08); border-radius: 999rem; font-weight: 850; }
.gd6d-category { margin-top: 3rem; }
.gd6d-category-title { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.2rem; color: var(--gd6d-warm); font-size: 2rem; line-height: 1.2; }
.gd6d-category-title i, .gd6d-category-title ion-icon { color: var(--gd6d-accent); font-size: 2.4rem; }
.gd6d-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gd6d-card { overflow: hidden; min-width: 0; background: var(--gd6d-surface); border: .1rem solid var(--gd6d-line); border-radius: 1.2rem; box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.2); }
.gd6d-game-card { position: relative; min-height: 100%; cursor: pointer; transition: .2s ease; }
.gd6d-game-card:hover, .gd6d-game-card:focus-visible { border-color: var(--gd6d-primary); transform: translateY(-.3rem); outline: none; }
.gd6d-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--gd6d-surface-soft); }
.gd6d-game-card strong { min-height: 5.2rem; display: flex; align-items: center; justify-content: center; padding: .8rem .6rem; font-size: 1.25rem; line-height: 1.6rem; text-align: center; }
.gd6d-game-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 0 var(--gd6d-accent); transition: .2s; }
.gd6d-game-card:active::after { box-shadow: inset 0 0 0 .2rem var(--gd6d-accent); }
.gd6d-image-error { opacity: .5; filter: grayscale(1); }

.gd6d-feature-grid { display: grid; gap: 1.2rem; }
.gd6d-feature-card { padding: 1.8rem; }
.gd6d-feature-icon { width: 4.8rem; height: 4.8rem; display: grid; place-items: center; margin-bottom: 1.2rem; color: var(--gd6d-bg); background: var(--gd6d-accent); border-radius: 1.4rem; }
.gd6d-feature-icon i, .gd6d-feature-icon ion-icon { font-size: 2.6rem; }
.gd6d-feature-card h3 { margin: 0 0 .8rem; color: var(--gd6d-warm); font-size: 1.9rem; line-height: 1.25; }
.gd6d-feature-card p { margin: 0; color: var(--gd6d-muted); line-height: 2.2rem; }
.gd6d-steps { counter-reset: gd6d-step; display: grid; gap: 1.2rem; }
.gd6d-step { position: relative; padding: 1.8rem 1.8rem 1.8rem 6.8rem; }
.gd6d-step::before { counter-increment: gd6d-step; content: counter(gd6d-step); position: absolute; left: 1.6rem; top: 1.6rem; width: 3.8rem; height: 3.8rem; display: grid; place-items: center; color: var(--gd6d-bg); background: var(--gd6d-accent); border-radius: 50%; font-weight: 950; }
.gd6d-step h3 { margin: 0 0 .7rem; font-size: 1.8rem; }
.gd6d-step p { margin: 0; color: var(--gd6d-muted); line-height: 2.2rem; }

.gd6d-promo-banner { padding: 2.2rem; text-align: center; background: linear-gradient(135deg, var(--gd6d-primary-dark), #1b251c); border: .1rem solid rgba(173,255,47,.3); border-radius: 2rem; }
.gd6d-promo-banner h2 { margin: 0 0 1rem; font-size: clamp(2.5rem, 7vw, 4rem); line-height: 1.1; }
.gd6d-promo-banner p { max-width: 70rem; margin: 0 auto 1.5rem; color: #e6eee9; line-height: 2.3rem; }
.gd6d-promo-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.gd6d-faq { display: grid; gap: 1rem; }
.gd6d-faq details { padding: 1.4rem 1.6rem; background: var(--gd6d-surface); border: .1rem solid var(--gd6d-line); border-radius: 1.2rem; }
.gd6d-faq summary { min-height: 4.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--gd6d-warm); font-weight: 850; cursor: pointer; }
.gd6d-faq p { margin: .8rem 0 0; color: var(--gd6d-muted); line-height: 2.2rem; }
.gd6d-faq summary::after { content: "+"; color: var(--gd6d-accent); font-size: 2.4rem; }
.gd6d-faq details[open] summary::after { content: "−"; }

.gd6d-footer { padding: 4rem 0 9rem; background: #080a09; border-top: .1rem solid var(--gd6d-line); }
.gd6d-footer-grid { display: grid; gap: 2rem; }
.gd6d-footer h2, .gd6d-footer h3 { color: var(--gd6d-warm); }
.gd6d-footer h2 { margin: 0 0 1rem; font-size: 2.4rem; }
.gd6d-footer h3 { margin: 0 0 1rem; font-size: 1.7rem; }
.gd6d-footer p { margin: 0 0 1rem; color: var(--gd6d-muted); line-height: 2.2rem; }
.gd6d-footer-links { display: flex; flex-wrap: wrap; gap: .8rem; }
.gd6d-footer-links a, .gd6d-footer-links button { min-height: 4.4rem; display: inline-flex; align-items: center; padding: .8rem 1.1rem; color: var(--gd6d-warm); background: var(--gd6d-surface); border: .1rem solid var(--gd6d-line); border-radius: 1rem; font-weight: 750; text-decoration: none; cursor: pointer; }
.gd6d-footer-links a:hover, .gd6d-footer-links button:hover { color: var(--gd6d-accent); border-color: var(--gd6d-primary); }
.gd6d-copyright { margin-top: 2.4rem !important; padding-top: 1.6rem; border-top: .1rem solid var(--gd6d-line); font-size: 1.25rem; }

.gd6d-bottom-nav {
  position: fixed; z-index: 1000; inset: auto 0 0; height: 6.2rem; display: flex; justify-content: space-around;
  background: #101412; border-top: .1rem solid rgba(173,255,47,.22); box-shadow: 0 -1rem 2.4rem rgba(0,0,0,.42);
}
.gd6d-bottom-item { position: relative; min-width: 6rem; min-height: 6rem; display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; padding: .3rem; border: 0; color: var(--gd6d-muted); background: transparent; font-size: 1.05rem; font-weight: 750; text-decoration: none; cursor: pointer; transition: .18s ease; }
.gd6d-bottom-item i, .gd6d-bottom-item ion-icon { font-size: 2.4rem; line-height: 1; }
.gd6d-bottom-item:active { color: var(--gd6d-accent); transform: scale(.92); }
.gd6d-bottom-active { color: var(--gd6d-accent); }
.gd6d-bottom-active::before { content: ""; position: absolute; top: 0; width: 3.2rem; height: .3rem; background: var(--gd6d-accent); border-radius: 0 0 .5rem .5rem; }
.gd6d-bottom-promo { color: var(--gd6d-warm); }
.gd6d-badge { position: absolute; top: .4rem; left: 55%; min-width: 1.7rem; height: 1.7rem; display: grid; place-items: center; padding: 0 .4rem; color: var(--gd6d-bg); background: var(--gd6d-accent); border-radius: 999rem; font-size: .9rem; font-weight: 950; }

@media (max-width: 768px) {
  .gd6d-main { padding-bottom: 8rem; }
  .gd6d-header-row { width: min(100% - 2rem, 118rem); }
  .gd6d-brand strong { font-size: 1.7rem; }
  .gd6d-btn-small { padding-inline: .8rem; }
  .gd6d-btn-small i { display: none; }
}

@media (max-width: 430px) {
  .gd6d-container, .gd6d-header-row { width: calc(100% - 2rem); }
  .gd6d-header-row { gap: .4rem; }
  .gd6d-brand { flex: 1 1 auto; overflow: hidden; }
  .gd6d-brand strong { overflow: hidden; font-size: 1.45rem; text-overflow: ellipsis; white-space: nowrap; }
  .gd6d-header-actions { flex: 0 0 auto; gap: .4rem; }
  .gd6d-btn-small { min-height: 4rem; padding: .65rem .7rem; font-size: 1.15rem; }
  .gd6d-menu-toggle { width: 4rem; height: 4rem; }
  .gd6d-carousel, .gd6d-slide-image, .gd6d-slide img { min-height: 28rem; height: 28rem; }
  .gd6d-slide-content { left: 1.4rem; right: 1.4rem; bottom: 3.4rem; }
  .gd6d-slide p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .gd6d-section-heading { align-items: flex-start; }
  .gd6d-promo-actions .gd6d-btn { width: 100%; }
}

@media (min-width: 600px) {
  body { line-height: 1.6rem; }
  .gd6d-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; }
  .gd6d-feature-grid, .gd6d-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gd6d-footer-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 769px) {
  .gd6d-bottom-nav { display: none; }
  .gd6d-menu-toggle, .gd6d-mobile-menu { display: none; }
  .gd6d-desktop-nav { display: flex; }
  .gd6d-header-actions { margin-left: 2rem; }
  .gd6d-main { padding-bottom: 0; }
  .gd6d-hero { padding-top: 2.4rem; }
  .gd6d-carousel, .gd6d-slide-image, .gd6d-slide img { min-height: 46rem; height: 46rem; }
  .gd6d-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .gd6d-feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gd6d-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1050px) {
  .gd6d-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .gd6d-game-card strong { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
