@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
  --g670-primary: #d4af37;
  --g670-accent: #ff8c00;
  --g670-soft: #eee8aa;
  --g670-bg: #080b1f;
  --g670-surface: #14172e;
  --g670-surface-2: #202448;
  --g670-text: #eeeeee;
  --g670-muted: #b9bdd2;
  --g670-blue: #0000cd;
  --g670-line: rgba(212, 175, 55, .28);
  --g670-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, .32);
  --g670-radius: 1.6rem;
}

* { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; scroll-padding-top: 8rem; }
body {
  margin: 0;
  min-width: 32rem;
  overflow-x: hidden;
  color: var(--g670-text);
  background: radial-gradient(circle at 50% 0, #252856 0, var(--g670-bg) 42rem);
  font: 400 1.5rem/1.5rem Manrope, Arial, sans-serif;
}
body.g670-menu-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.g670-logo.material-icons-two-tone { display: grid; place-items: center; color: var(--g670-primary); background: #171a38; font-size: 2.1rem; line-height: 3.2rem; }

.g670-container { width: min(100% - 2.4rem, 112rem); margin-inline: auto; }
.g670-wrapper { position: relative; isolation: isolate; }
.g670-skip {
  position: fixed; top: -8rem; left: 1.2rem; z-index: 10001;
  padding: 1rem 1.4rem; color: #111; background: var(--g670-soft); border-radius: .8rem;
}
.g670-skip:focus { top: 1rem; }
.g670-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: 6.8rem;
  background: rgba(8, 11, 31, .94); border-bottom: 1px solid var(--g670-line);
  box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .2); backdrop-filter: blur(1.4rem);
}
.g670-header-row { height: 6.8rem; display: flex; align-items: center; gap: .7rem; }
.g670-brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; min-width: 0; }
.g670-logo {
  width: 3.2rem; height: 3.2rem; object-fit: cover; flex: none;
  border: 2px solid var(--g670-primary); border-radius: 50%; box-shadow: 0 0 1.8rem rgba(212, 175, 55, .45);
}
.g670-brand-text {
  max-width: 11rem; overflow: hidden; color: var(--g670-soft);
  font: 800 1.7rem/2rem "Playfair Display", serif; text-overflow: ellipsis; white-space: nowrap;
}
.g670-header-actions { display: flex; align-items: center; gap: .6rem; }
.g670-btn {
  min-height: 4.4rem; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .8rem 1.2rem; border: 1px solid transparent; border-radius: 1rem; cursor: pointer;
  font-weight: 800; transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.g670-btn:active, .g670-bottom-item:active, .g670-game-link:active { transform: scale(.95); }
.g670-btn-primary { color: #171000; background: linear-gradient(135deg, var(--g670-soft), var(--g670-primary)); }
.g670-btn-secondary { color: #fff; background: linear-gradient(135deg, #333, var(--g670-blue)); border-color: #6868ff; }
.g670-menu-button {
  width: 4.4rem; min-height: 4.4rem; padding: 0; color: var(--g670-soft);
  background: var(--g670-surface-2); border: 1px solid var(--g670-line); border-radius: 1rem;
}
.g670-desktop-nav { display: none; }
.g670-mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 9999; width: min(84vw, 34rem); height: 100dvh;
  padding: 8.4rem 1.6rem 2rem; overflow-y: auto; background: #10142c;
  border-left: 1px solid var(--g670-line); box-shadow: -2rem 0 4rem rgba(0, 0, 0, .45);
  transform: translateX(110%); visibility: hidden; transition: transform .26s ease, visibility .26s;
}
.g670-mobile-menu.g670-menu-open { transform: translateX(0); visibility: visible; }
.g670-menu-title { margin: 0 0 1.2rem; color: var(--g670-primary); font-size: 1.3rem; letter-spacing: .14rem; text-transform: uppercase; }
.g670-mobile-menu a {
  min-height: 4.8rem; display: flex; align-items: center; gap: 1rem; padding: .8rem 1rem;
  border-bottom: 1px solid rgba(238, 232, 170, .1); color: var(--g670-text); font-weight: 700;
}
.g670-mobile-menu i, .g670-mobile-menu ion-icon { width: 2.4rem; color: var(--g670-primary); font-size: 2.2rem; }
.g670-menu-promo { margin-top: 1.6rem; width: 100%; }
.g670-menu-backdrop {
  position: fixed; inset: 0; z-index: 9998; background: rgba(0, 0, 0, .65);
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.g670-menu-backdrop.g670-backdrop-open { opacity: 1; visibility: visible; }

.g670-main { padding-top: 6.8rem; }
.g670-carousel { position: relative; height: clamp(21rem, 61vw, 38rem); overflow: hidden; background: #0d1027; }
.g670-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .65s ease; }
.g670-slide.g670-slide-active { opacity: 1; pointer-events: auto; }
.g670-slide img { width: 100%; height: 100%; object-fit: cover; }
.g670-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 11, 31, .8), transparent 62%), linear-gradient(0deg, var(--g670-bg), transparent 46%); }
.g670-slide-copy { position: absolute; z-index: 2; left: 1.6rem; bottom: 3.8rem; width: min(76%, 44rem); }
.g670-slide-kicker { color: var(--g670-soft); font-size: 1.1rem; font-weight: 800; letter-spacing: .12rem; text-transform: uppercase; }
.g670-slide-copy strong { display: block; margin-top: .6rem; font: 700 clamp(2.2rem, 7vw, 4.2rem)/1.08 "Playfair Display", serif; text-shadow: 0 .3rem 1rem #000; }
.g670-carousel-control {
  position: absolute; z-index: 3; top: 50%; width: 4.4rem; height: 4.4rem; padding: 0;
  color: #fff; background: rgba(8, 11, 31, .68); border: 1px solid var(--g670-line); border-radius: 50%; cursor: pointer;
}
.g670-carousel-prev { left: .8rem; }
.g670-carousel-next { right: .8rem; }
.g670-carousel-dots { position: absolute; z-index: 3; bottom: 1.3rem; left: 50%; display: flex; gap: .7rem; transform: translateX(-50%); }
.g670-carousel-dot { width: 1rem; height: 1rem; padding: 0; border: 0; border-radius: 50%; background: #8a8a9b; cursor: pointer; }
.g670-carousel-dot.g670-dot-active { width: 2.8rem; border-radius: 1rem; background: var(--g670-primary); }

.g670-hero { padding: 2.8rem 0 2rem; text-align: center; }
.g670-eyebrow { display: inline-flex; align-items: center; gap: .6rem; color: var(--g670-primary); font-weight: 800; letter-spacing: .12rem; text-transform: uppercase; }
.g670-hero h1 { margin: 1rem auto; max-width: 78rem; font: 700 clamp(3rem, 10vw, 5.8rem)/1.08 "Playfair Display", serif; }
.g670-hero p { max-width: 76rem; margin: 0 auto 1.8rem; color: var(--g670-muted); line-height: 2.3rem; }
.g670-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.g670-trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 2rem; }
.g670-trust-item { padding: 1rem .5rem; background: rgba(238, 232, 170, .06); border: 1px solid var(--g670-line); border-radius: 1.2rem; }
.g670-trust-item strong { display: block; color: var(--g670-soft); font-size: 1.6rem; }
.g670-trust-item span { color: var(--g670-muted); font-size: 1.05rem; }

.g670-section { padding: 2.8rem 0; }
.g670-section-alt { background: rgba(20, 23, 46, .72); border-block: 1px solid rgba(212, 175, 55, .12); }
.g670-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.g670-section h2 { margin: 0; font: 700 clamp(2.3rem, 7vw, 3.5rem)/1.15 "Playfair Display", serif; }
.g670-section-intro { margin: .7rem 0 0; color: var(--g670-muted); line-height: 2.2rem; }
.g670-count { flex: none; padding: .5rem .9rem; color: #171000; background: var(--g670-primary); border-radius: 2rem; font-size: 1.1rem; font-weight: 800; }
.g670-category-block + .g670-category-block { margin-top: 3.2rem; }
.g670-category-title { display: flex; align-items: center; gap: .9rem; margin: 0 0 1.2rem; color: var(--g670-soft); font-size: 2rem; }
.g670-category-title i, .g670-category-title ion-icon { color: var(--g670-accent); font-size: 2.4rem; }
.g670-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .9rem; }
.g670-card { min-width: 0; background: var(--g670-surface); border: 1px solid rgba(238, 232, 170, .12); border-radius: 1.2rem; box-shadow: 0 .7rem 1.6rem rgba(0, 0, 0, .2); }
.g670-game-link { width: 100%; display: block; min-height: 4.4rem; padding: 0; overflow: hidden; color: inherit; background: transparent; border: 0; border-radius: 1.2rem; cursor: pointer; transition: transform .2s, border-color .2s; }
.g670-game-link img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #252848; }
.g670-game-name { display: flex; align-items: center; justify-content: center; min-height: 4.4rem; padding: .6rem .4rem; text-align: center; font-size: 1.1rem; font-weight: 700; line-height: 1.35rem; }

.g670-feature-grid, .g670-info-grid { display: grid; gap: 1.2rem; }
.g670-feature-card, .g670-content-card { padding: 1.7rem; background: linear-gradient(145deg, var(--g670-surface), #0f1229); border: 1px solid var(--g670-line); border-radius: var(--g670-radius); }
.g670-feature-icon { width: 4.6rem; height: 4.6rem; display: grid; place-items: center; margin-bottom: 1rem; color: #161100; background: linear-gradient(135deg, var(--g670-soft), var(--g670-accent)); border-radius: 1.3rem; font-size: 2.3rem; }
.g670-feature-card h3, .g670-content-card h3 { margin: 0 0 .7rem; color: var(--g670-soft); font-size: 1.8rem; line-height: 2.3rem; }
.g670-feature-card p, .g670-content-card p { margin: 0; color: var(--g670-muted); line-height: 2.2rem; }
.g670-text-link { display: inline; padding: 0; color: var(--g670-soft); background: transparent; border: 0; font-weight: 800; text-decoration: underline; text-decoration-color: var(--g670-accent); text-underline-offset: .3rem; cursor: pointer; }
.g670-steps { counter-reset: g670-step; display: grid; gap: 1rem; margin: 1.8rem 0 0; padding: 0; list-style: none; }
.g670-step { position: relative; min-height: 6rem; padding: 1.3rem 1.3rem 1.3rem 6.2rem; background: var(--g670-surface); border-left: .3rem solid var(--g670-primary); border-radius: 1rem; line-height: 2.1rem; }
.g670-step::before { counter-increment: g670-step; content: counter(g670-step); position: absolute; left: 1.3rem; top: 1rem; width: 3.6rem; height: 3.6rem; display: grid; place-items: center; color: #111; background: var(--g670-primary); border-radius: 50%; font-weight: 800; }
.g670-methods { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.g670-method { min-height: 4.4rem; display: inline-flex; align-items: center; gap: .7rem; padding: .8rem 1.1rem; color: var(--g670-soft); background: var(--g670-surface); border: 1px solid var(--g670-line); border-radius: 1rem; font-weight: 800; }
.g670-quote { margin: 0; padding: 1.5rem; background: rgba(0, 0, 205, .14); border: 1px solid #4e4eff; border-radius: 1.2rem; }
.g670-quote p { margin: 0 0 .8rem; color: var(--g670-text); line-height: 2.2rem; }
.g670-quote cite { color: var(--g670-primary); font-style: normal; font-weight: 800; }
.g670-notice { padding: 1.5rem; color: var(--g670-soft); background: rgba(255, 140, 0, .1); border-left: .4rem solid var(--g670-accent); border-radius: .8rem; line-height: 2.2rem; }
.g670-cta { padding: 2.4rem 1.6rem; text-align: center; background: linear-gradient(135deg, #20245a, #090b20); border: 1px solid var(--g670-primary); border-radius: 2rem; box-shadow: var(--g670-shadow); }
.g670-cta h2 { margin-bottom: .8rem; }
.g670-cta p { max-width: 60rem; margin: 0 auto 1.5rem; color: var(--g670-muted); line-height: 2.2rem; }

.g670-footer { padding: 3.2rem 0 9rem; background: #050715; border-top: 1px solid var(--g670-line); }
.g670-footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; color: var(--g670-soft); font-size: 2rem; font-weight: 800; }
.g670-footer p { color: var(--g670-muted); line-height: 2.2rem; }
.g670-footer-links { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.4rem 0; }
.g670-footer-links a { min-height: 4.4rem; display: inline-flex; align-items: center; padding: .8rem 1rem; color: var(--g670-soft); border: 1px solid var(--g670-line); border-radius: .8rem; font-weight: 700; }
.g670-copyright { padding-top: 1.4rem; border-top: 1px solid rgba(238, 232, 170, .1); font-size: 1.2rem; }
.g670-bottom-nav {
  position: fixed; inset: auto 0 0; z-index: 1000; height: 6.2rem; display: flex; justify-content: space-around;
  padding-bottom: env(safe-area-inset-bottom); background: #11142d; border-top: 1px solid var(--g670-primary); box-shadow: 0 -1rem 3rem rgba(0, 0, 0, .38);
}
.g670-bottom-item {
  position: relative; min-width: 6rem; min-height: 6rem; display: flex; flex: 1; flex-direction: column;
  align-items: center; justify-content: center; gap: .2rem; padding: .4rem; color: var(--g670-muted);
  background: transparent; border: 0; cursor: pointer; transition: transform .18s, color .18s, background .18s;
}
.g670-bottom-item i, .g670-bottom-item ion-icon, .g670-bottom-item .material-icons { font-size: 2.4rem; line-height: 2.5rem; }
.g670-bottom-item span:last-child { font-size: 1rem; font-weight: 700; }
.g670-bottom-active { color: #171000; background: linear-gradient(180deg, var(--g670-primary), #b88910); }
.g670-bottom-badge { position: absolute; top: .3rem; left: calc(50% + .7rem); min-width: 1.7rem; padding: .1rem .4rem; color: #fff; background: #d92525; border-radius: 1rem; font-size: .9rem !important; }

@media (max-width: 430px) {
  .g670-container { width: min(100% - 2rem, 41rem); }
  .g670-header-actions .g670-btn { min-width: 6.1rem; padding-inline: .8rem; font-size: 1.15rem; }
  .g670-brand-text { max-width: 8rem; font-size: 1.5rem; }
  .g670-slide-copy { left: 1.2rem; }
  .g670-carousel-control { top: 45%; width: 3.8rem; height: 3.8rem; }
  .g670-grid { gap: .7rem; }
  .g670-game-name { font-size: 1rem; }
  .g670-section { padding: 2.4rem 0; }
}

@media (max-width: 360px) {
  .g670-brand-text { display: none; }
  .g670-header-row { gap: .5rem; }
  .g670-header-actions { gap: .4rem; }
  .g670-header-actions .g670-btn { min-width: 5.7rem; padding-inline: .6rem; }
  .g670-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .g670-main { padding-bottom: 8rem; }
}

@media (min-width: 600px) {
  .g670-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .g670-feature-grid, .g670-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 769px) {
  .g670-container { width: min(100% - 4rem, 112rem); }
  .g670-header, .g670-header-row { height: 7.6rem; }
  .g670-main { padding-top: 7.6rem; }
  .g670-menu-button, .g670-mobile-menu, .g670-menu-backdrop, .g670-bottom-nav { display: none; }
  .g670-desktop-nav { display: flex; align-items: center; gap: .4rem; margin-right: 1rem; }
  .g670-desktop-nav a { min-height: 4.4rem; display: inline-flex; align-items: center; padding: .7rem 1rem; color: var(--g670-muted); font-weight: 700; }
  .g670-desktop-nav a:hover { color: var(--g670-soft); }
  .g670-carousel { height: 42rem; }
  .g670-slide-copy { left: max(2rem, calc((100vw - 112rem) / 2)); bottom: 6rem; }
  .g670-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 1.2rem; }
  .g670-game-link:hover { transform: translateY(-.5rem); box-shadow: 0 1rem 2.4rem rgba(212, 175, 55, .16); }
  .g670-feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .g670-info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .g670-footer { padding-bottom: 3rem; }
}

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