:root {
  --w2906-primary: #ff8c00;
  --w2906-accent: #ff4500;
  --w2906-gold: #ffd166;
  --w2906-bg: #0a0a0a;
  --w2906-surface: #151515;
  --w2906-surface-2: #202020;
  --w2906-text: #fff8eb;
  --w2906-muted: #c7bfb2;
  --w2906-border: rgba(255, 140, 0, .28);
  --w2906-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: var(--w2906-bg); color: var(--w2906-text); font: 1.5rem/1.5rem Inter, Arial, sans-serif; overflow-x: hidden; }
body.w2906-lock { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }

.w2906-container { width: min(100% - 2.4rem, 118rem); margin-inline: auto; }
.w2906-wrapper { min-height: 100vh; background: radial-gradient(circle at 50% 0, rgba(255, 69, 0, .13), transparent 38rem); }
.w2906-header { position: fixed; inset: 0 0 auto; z-index: 1000; min-height: 6.4rem; background: rgba(10, 10, 10, .94); border-bottom: .1rem solid var(--w2906-border); backdrop-filter: blur(1.6rem); transition: box-shadow .25s ease; }
.w2906-header-scrolled { box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .4); }
.w2906-header-row { min-height: 6.4rem; display: flex; align-items: center; gap: .8rem; }
.w2906-brand { display: flex; align-items: center; gap: .7rem; min-width: 0; font-weight: 900; font-size: 1.7rem; letter-spacing: -.03em; }
.w2906-logo { width: 3rem; height: 3rem; border-radius: .8rem; object-fit: cover; box-shadow: 0 0 0 .2rem rgba(255, 140, 0, .2); }
.w2906-brand-name { white-space: nowrap; }
.w2906-header-actions { margin-left: auto; display: flex; gap: .6rem; }
.w2906-btn { min-height: 4.4rem; padding: 0 1.4rem; display: inline-flex; justify-content: center; align-items: center; gap: .6rem; border-radius: 1.2rem; font-weight: 900; line-height: 1.2; transition: transform .18s ease, filter .18s ease; }
.w2906-btn:active, .w2906-bottom-item:active { transform: scale(.94); }
.w2906-btn-primary { color: #170900; background: linear-gradient(135deg, var(--w2906-gold), var(--w2906-primary)); box-shadow: 0 .5rem 1.4rem rgba(255, 140, 0, .24); }
.w2906-btn-accent { color: #fff; background: linear-gradient(135deg, var(--w2906-accent), #c62d00); }
.w2906-btn-ghost { color: var(--w2906-gold); border: .1rem solid var(--w2906-primary); background: rgba(255, 140, 0, .08); }
.w2906-menu-button { width: 4.4rem; height: 4.4rem; padding: 0; color: var(--w2906-text); background: var(--w2906-surface-2); font-size: 2.2rem; }
.w2906-desktop-nav { display: none; gap: .6rem; align-items: center; }
.w2906-desktop-link { min-height: 4.4rem; padding: 0 1.1rem; display: inline-flex; align-items: center; color: var(--w2906-muted); font-weight: 800; }
.w2906-desktop-link:hover { color: var(--w2906-gold); }

.w2906-menu { position: fixed; inset: 0; z-index: 9999; display: grid; grid-template-columns: min(84vw, 34rem) 1fr; visibility: hidden; pointer-events: none; }
.w2906-menu::after { content: ''; grid-column: 2; grid-row: 1; background: rgba(0, 0, 0, .68); opacity: 0; transition: opacity .24s; }
.w2906-menu-panel { grid-column: 1; grid-row: 1; padding: 1.6rem; background: #111; border-right: .1rem solid var(--w2906-border); transform: translateX(-102%); transition: transform .24s ease; overflow-y: auto; }
.w2906-menu-open { visibility: visible; pointer-events: auto; }
.w2906-menu-open::after { opacity: 1; }
.w2906-menu-open .w2906-menu-panel { transform: translateX(0); }
.w2906-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.8rem; }
.w2906-menu-title { margin: 0; font-size: 2rem; }
.w2906-menu-close { width: 4.4rem; height: 4.4rem; border-radius: 1.2rem; color: #fff; background: var(--w2906-surface-2); }
.w2906-menu-list { display: grid; gap: .8rem; }
.w2906-menu-link { min-height: 4.8rem; padding: 0 1.4rem; display: flex; align-items: center; gap: 1rem; border-radius: 1.2rem; color: var(--w2906-muted); background: var(--w2906-surface); font-weight: 800; }
.w2906-menu-link:hover { color: #fff; background: rgba(255, 140, 0, .16); }

.w2906-main { padding-top: 7.6rem; }
.w2906-hero { position: relative; min-height: 38rem; overflow: hidden; border-radius: 0 0 2.4rem 2.4rem; background: #131313; }
.w2906-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .6s ease; }
.w2906-slide-active { opacity: 1; visibility: visible; }
.w2906-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .25)), linear-gradient(0deg, #0a0a0a 0, transparent 55%); }
.w2906-slide-image { width: 100%; height: 100%; object-fit: cover; }
.w2906-hero-content { position: relative; z-index: 2; min-height: 38rem; padding: 5rem 0 5.5rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.w2906-kicker { margin: 0 0 1rem; color: var(--w2906-gold); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 1.2rem; }
.w2906-hero h1 { max-width: 66rem; margin: 0 0 1.2rem; font-size: clamp(3rem, 8vw, 5.8rem); line-height: 1.02; letter-spacing: -.05em; }
.w2906-hero-copy { max-width: 58rem; margin: 0 0 2rem; color: #eee4d6; line-height: 2.3rem; }
.w2906-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.w2906-carousel-control { position: absolute; z-index: 3; top: 50%; width: 4.4rem; height: 4.4rem; border-radius: 50%; color: #fff; background: rgba(10, 10, 10, .66); transform: translateY(-50%); }
.w2906-carousel-prev { left: .8rem; }
.w2906-carousel-next { right: .8rem; }
.w2906-dots { position: absolute; z-index: 3; bottom: 1.5rem; left: 50%; display: flex; gap: .7rem; transform: translateX(-50%); }
.w2906-dot { width: 2.6rem; height: .6rem; padding: 0; border-radius: 1rem; background: rgba(255, 255, 255, .35); }
.w2906-dot-active { background: var(--w2906-primary); }

.w2906-section { padding: 4.5rem 0; scroll-margin-top: 7.4rem; }
.w2906-section-alt { background: #101010; border-block: .1rem solid rgba(255, 255, 255, .05); }
.w2906-section-head { margin-bottom: 2rem; display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.w2906-section h2 { margin: 0; font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1.12; letter-spacing: -.04em; }
.w2906-section h3 { margin: 0 0 1rem; font-size: 2rem; line-height: 1.2; }
.w2906-section-label { color: var(--w2906-primary); font-size: 1.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.w2906-copy { color: var(--w2906-muted); line-height: 2.4rem; }
.w2906-copy strong { color: #fff; }
.w2906-text-link { color: var(--w2906-gold); font-weight: 900; text-decoration: underline; text-decoration-color: rgba(255, 209, 102, .4); text-underline-offset: .3rem; cursor: pointer; }

.w2906-category { margin-top: 3rem; }
.w2906-category-head { margin-bottom: 1.3rem; display: flex; align-items: center; justify-content: space-between; }
.w2906-category-title { display: flex; align-items: center; gap: .8rem; }
.w2906-category-title i, .w2906-category-title ion-icon { color: var(--w2906-primary); font-size: 2.4rem; }
.w2906-count { padding: .5rem .8rem; border-radius: 3rem; color: var(--w2906-gold); background: rgba(255, 140, 0, .12); font-size: 1.2rem; font-weight: 900; }
.w2906-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.w2906-card { min-width: 0; overflow: hidden; border: .1rem solid rgba(255, 255, 255, .08); border-radius: 1.3rem; background: var(--w2906-surface); box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .18); cursor: pointer; transition: transform .2s ease, border-color .2s ease; }
.w2906-card:hover { transform: translateY(-.3rem); border-color: var(--w2906-primary); }
.w2906-game-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #242424; }
.w2906-game-name { min-height: 4.8rem; margin: 0; padding: .8rem .6rem; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 1.2rem; line-height: 1.45rem; font-weight: 800; }

.w2906-feature-grid, .w2906-review-grid, .w2906-stat-grid { display: grid; gap: 1.2rem; }
.w2906-feature-grid { grid-template-columns: 1fr; }
.w2906-feature-card, .w2906-review, .w2906-panel { padding: 1.8rem; border: .1rem solid rgba(255, 255, 255, .08); border-radius: 1.6rem; background: linear-gradient(145deg, #1b1b1b, #121212); }
.w2906-feature-icon { width: 4.6rem; height: 4.6rem; margin-bottom: 1.3rem; display: grid; place-items: center; border-radius: 1.3rem; color: #1a0900; background: linear-gradient(135deg, var(--w2906-gold), var(--w2906-primary)); font-size: 2.3rem; }
.w2906-stat-grid { grid-template-columns: repeat(2, 1fr); }
.w2906-stat { padding: 1.6rem; border-radius: 1.5rem; background: var(--w2906-surface-2); }
.w2906-stat-value { display: block; margin-bottom: .6rem; color: var(--w2906-gold); font-size: 2.5rem; line-height: 1; font-weight: 900; }
.w2906-stat-label { color: var(--w2906-muted); font-size: 1.2rem; line-height: 1.5; }
.w2906-step-list { display: grid; gap: 1.2rem; counter-reset: w2906-step; }
.w2906-step { position: relative; padding: 1.8rem 1.8rem 1.8rem 6rem; border-radius: 1.6rem; background: var(--w2906-surface); counter-increment: w2906-step; }
.w2906-step::before { content: counter(w2906-step); position: absolute; left: 1.4rem; top: 1.4rem; width: 3.4rem; height: 3.4rem; display: grid; place-items: center; border-radius: 50%; color: #160800; background: var(--w2906-primary); font-weight: 900; }
.w2906-review-grid { grid-template-columns: 1fr; }
.w2906-stars { margin-bottom: .8rem; color: var(--w2906-gold); letter-spacing: .15em; }
.w2906-review-name { margin-top: 1.2rem; color: #fff; font-weight: 900; }
.w2906-payment-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.w2906-payment { min-height: 4.4rem; padding: 0 1.3rem; display: inline-flex; align-items: center; gap: .7rem; border-radius: 1rem; color: #fff; background: var(--w2906-surface-2); font-weight: 800; }
.w2906-cta { padding: 2.6rem; border: .1rem solid var(--w2906-border); border-radius: 2rem; background: radial-gradient(circle at 90% 0, rgba(255, 69, 0, .35), transparent 18rem), linear-gradient(135deg, #251000, #131313); box-shadow: var(--w2906-shadow); }
.w2906-cta-actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.w2906-faq details { margin-bottom: 1rem; padding: 1.4rem; border: .1rem solid rgba(255, 255, 255, .08); border-radius: 1.2rem; background: var(--w2906-surface); }
.w2906-faq summary { min-height: 4.4rem; display: flex; align-items: center; cursor: pointer; font-weight: 900; line-height: 1.4; }
.w2906-faq p { color: var(--w2906-muted); line-height: 2.3rem; }

.w2906-footer { padding: 4rem 0 9rem; border-top: .1rem solid var(--w2906-border); background: #070707; }
.w2906-footer-brand { margin-bottom: 1rem; font-size: 2rem; font-weight: 900; }
.w2906-footer-links { margin: 2rem 0; display: flex; flex-wrap: wrap; gap: .8rem; }
.w2906-footer-link { min-height: 4.4rem; padding: 0 1.2rem; display: inline-flex; align-items: center; border-radius: 1rem; color: var(--w2906-gold); background: rgba(255, 140, 0, .1); font-weight: 800; }
.w2906-copyright { color: #918a80; font-size: 1.2rem; }
.w2906-bottom-nav { position: fixed; z-index: 1000; bottom: 0; left: 0; width: 100%; height: 6.2rem; padding-bottom: env(safe-area-inset-bottom); display: flex; justify-content: space-around; border-top: .1rem solid var(--w2906-border); background: #111; box-shadow: 0 -1rem 2.6rem rgba(0, 0, 0, .45); }
.w2906-bottom-item { position: relative; min-width: 6rem; min-height: 6rem; padding: .5rem .5rem .4rem; display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; color: var(--w2906-muted); background: transparent; transition: color .18s, transform .18s; }
.w2906-bottom-item i, .w2906-bottom-item ion-icon, .w2906-bottom-item .material-icons { font-size: 2.4rem; line-height: 1; }
.w2906-bottom-item span:last-child { font-size: 1.05rem; line-height: 1.2; font-weight: 800; }
.w2906-bottom-active { color: var(--w2906-gold); }
.w2906-bottom-active::before { content: ''; position: absolute; top: 0; width: 3.4rem; height: .3rem; border-radius: 0 0 .4rem .4rem; background: var(--w2906-primary); }
.w2906-badge { position: absolute; top: .4rem; left: calc(50% + .8rem); min-width: 1.7rem; height: 1.7rem; display: grid; place-items: center; border-radius: 2rem; color: #fff; background: var(--w2906-accent); font-size: .9rem !important; }

@media (max-width: 430px) {
  .w2906-container { width: min(100% - 2rem, 43rem); }
  .w2906-brand-name { max-width: 9rem; overflow: hidden; text-overflow: ellipsis; }
  .w2906-header-actions .w2906-btn { padding-inline: .9rem; font-size: 1.2rem; }
  .w2906-hero { min-height: 42rem; }
  .w2906-hero-content { min-height: 42rem; padding-top: 4rem; }
  .w2906-hero-copy { font-size: 1.4rem; }
  .w2906-carousel-control { top: auto; bottom: 1rem; transform: none; }
  .w2906-dots { bottom: 2.8rem; }
  .w2906-grid { gap: .8rem; }
  .w2906-section { padding-block: 3.6rem; }
}

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

@media (min-width: 560px) {
  .w2906-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .w2906-feature-grid, .w2906-review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) {
  .w2906-bottom-nav { display: none; }
  .w2906-footer { padding-bottom: 4rem; }
  .w2906-menu-button { display: none; }
  .w2906-desktop-nav { display: flex; }
  .w2906-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .w2906-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .w2906-review-grid { grid-template-columns: repeat(3, 1fr); }
  .w2906-stat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .w2906-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .w2906-hero { border-radius: 0 0 3.4rem 3.4rem; }
}

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