:root {
  --v182-primary: #b22222;
  --v182-primary-dark: #8b0000;
  --v182-bg: #0d0d0d;
  --v182-panel: #1a1a1a;
  --v182-panel-soft: #24201d;
  --v182-text: #fff8dc;
  --v182-muted: #d8cdb2;
  --v182-gold: #ffc857;
  --v182-green: #53d68a;
  --v182-border: rgba(255, 248, 220, .14);
  --v182-shadow: 0 1rem 3rem rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0, #351010 0, var(--v182-bg) 38rem);
  color: var(--v182-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
body.v182-menu-lock { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.v182-shell { width: 100%; min-height: 100vh; }
.v182-container { width: min(100% - 2.4rem, 118rem); margin-inline: auto; }
.v182-wrapper { padding-block: 2.4rem; }
.v182-main { padding-top: 7.4rem; }
.v182-section { padding: 2.5rem 0; scroll-margin-top: 8rem; }
.v182-section-alt { background: linear-gradient(180deg, rgba(178, 34, 34, .08), transparent); }
.v182-eyebrow { margin: 0 0 .8rem; color: var(--v182-gold); font-size: 1.2rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.v182-title { margin: 0; font-family: Georgia, serif; font-size: clamp(2.4rem, 7vw, 4.8rem); line-height: 1.08; }
.v182-heading { margin: 0 0 .8rem; font-family: Georgia, serif; font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.15; }
.v182-subheading { margin: 0; color: var(--v182-muted); line-height: 2.3rem; }
.v182-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1.2rem; margin-bottom: 1.6rem; }
.v182-section-count { flex: 0 0 auto; padding: .7rem 1rem; border: .1rem solid var(--v182-border); border-radius: 99rem; color: var(--v182-gold); font-size: 1.2rem; }

.v182-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 6.6rem;
  border-bottom: .1rem solid var(--v182-border);
  background: rgba(13, 13, 13, .94);
  box-shadow: 0 .6rem 2rem rgba(0, 0, 0, .3);
  backdrop-filter: blur(1.4rem);
}
.v182-header-row { min-height: 6.6rem; display: flex; align-items: center; gap: .8rem; }
.v182-brand { display: inline-flex; min-width: 0; align-items: center; gap: .8rem; text-decoration: none; }
.v182-logo { width: 3.2rem; height: 3.2rem; object-fit: contain; }
.v182-brand-copy { min-width: 0; }
.v182-brand-name { display: block; overflow: hidden; font-family: Georgia, serif; font-size: 1.6rem; font-weight: 800; line-height: 1.7rem; text-overflow: ellipsis; text-transform: capitalize; white-space: nowrap; }
.v182-brand-tag { display: none; color: var(--v182-muted); font-size: 1.1rem; line-height: 1.3rem; }
.v182-header-actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
.v182-btn {
  min-height: 4.4rem;
  border: .1rem solid transparent;
  border-radius: 1.1rem;
  padding: .9rem 1.3rem;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 800;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}
.v182-btn:active { transform: scale(.96); }
.v182-btn-primary { background: linear-gradient(135deg, var(--v182-primary), #e24832); color: #fff; box-shadow: 0 .5rem 1.4rem rgba(178, 34, 34, .3); }
.v182-btn-secondary { border-color: rgba(255, 200, 87, .65); background: transparent; color: var(--v182-gold); }
.v182-menu-button { width: 4.4rem; padding: 0; border-color: var(--v182-border); background: var(--v182-panel); color: var(--v182-text); font-size: 2rem; }
.v182-desktop-nav { display: none; align-items: center; gap: .4rem; margin-left: auto; }
.v182-desktop-link { min-height: 4.4rem; display: inline-flex; align-items: center; padding: 0 1rem; border-radius: .8rem; color: var(--v182-muted); font-size: 1.3rem; font-weight: 700; text-decoration: none; }
.v182-desktop-link:hover { background: rgba(178, 34, 34, .16); color: var(--v182-text); }

.v182-mobile-menu { position: fixed; inset: 0; z-index: 9999; visibility: hidden; background: rgba(0, 0, 0, .72); opacity: 0; transition: opacity .2s ease, visibility .2s ease; }
.v182-mobile-menu.v182-menu-open { visibility: visible; opacity: 1; }
.v182-menu-panel { width: min(86vw, 35rem); height: 100%; margin-left: auto; padding: 2rem; background: #171313; box-shadow: -1rem 0 4rem rgba(0, 0, 0, .5); transform: translateX(100%); transition: transform .24s ease; }
.v182-menu-open .v182-menu-panel { transform: translateX(0); }
.v182-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1.5rem; border-bottom: .1rem solid var(--v182-border); }
.v182-menu-title { font-family: Georgia, serif; font-size: 2rem; font-weight: 800; }
.v182-menu-close { width: 4.4rem; height: 4.4rem; border: .1rem solid var(--v182-border); border-radius: 50%; background: var(--v182-panel); color: var(--v182-text); cursor: pointer; }
.v182-menu-links { display: grid; gap: .8rem; padding-top: 1.6rem; }
.v182-menu-link { min-height: 4.8rem; display: flex; align-items: center; gap: 1.2rem; padding: 1rem 1.2rem; border: .1rem solid var(--v182-border); border-radius: 1rem; color: var(--v182-text); font-weight: 750; text-decoration: none; }
.v182-menu-link i, .v182-menu-link ion-icon { width: 2.4rem; color: var(--v182-gold); font-size: 2.2rem; text-align: center; }

.v182-hero { padding: 1.4rem 0 2.6rem; }
.v182-carousel { position: relative; min-height: 27rem; overflow: hidden; border: .1rem solid var(--v182-border); border-radius: 2rem; background: var(--v182-panel); box-shadow: var(--v182-shadow); }
.v182-slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .5s ease, visibility .5s ease; }
.v182-slide-active { visibility: visible; opacity: 1; }
.v182-slide-image { width: 100%; height: 27rem; object-fit: cover; }
.v182-slide-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .38) 75%, transparent); }
.v182-slide-copy { position: absolute; inset: auto 1.8rem 2.2rem; max-width: 31rem; }
.v182-slide-copy h2 { margin: .4rem 0 .8rem; font-family: Georgia, serif; font-size: 2.5rem; line-height: 2.8rem; }
.v182-slide-copy p { margin: 0 0 1.2rem; color: #f4ead3; line-height: 2.1rem; }
.v182-carousel-control { position: absolute; z-index: 2; top: 50%; width: 4.4rem; height: 4.4rem; border: .1rem solid rgba(255, 255, 255, .3); border-radius: 50%; background: rgba(0, 0, 0, .54); color: #fff; cursor: pointer; transform: translateY(-50%); }
.v182-carousel-prev { left: .8rem; }
.v182-carousel-next { right: .8rem; }
.v182-dots { position: absolute; z-index: 3; right: 1.4rem; bottom: 1.2rem; display: flex; gap: .6rem; }
.v182-dot { width: .8rem; height: .8rem; border: 0; border-radius: 50%; padding: 0; background: rgba(255, 255, 255, .5); cursor: pointer; }
.v182-dot-active { width: 2.2rem; border-radius: 2rem; background: var(--v182-gold); }
.v182-hero-intro { padding: 2.3rem .2rem 0; }
.v182-hero-intro p { color: var(--v182-muted); line-height: 2.4rem; }
.v182-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.v182-text-link { border: 0; padding: 0; background: transparent; color: var(--v182-gold); cursor: pointer; font-weight: 900; text-decoration: underline; text-underline-offset: .3rem; }

.v182-category-strip { display: flex; gap: .8rem; overflow-x: auto; padding: 0 0 1.5rem; scrollbar-width: none; }
.v182-category-strip::-webkit-scrollbar { display: none; }
.v182-chip { min-height: 4.4rem; display: inline-flex; flex: 0 0 auto; align-items: center; gap: .7rem; padding: .9rem 1.2rem; border: .1rem solid var(--v182-border); border-radius: 99rem; background: var(--v182-panel); color: var(--v182-text); font-weight: 800; text-decoration: none; }
.v182-chip i, .v182-chip ion-icon, .v182-chip .material-symbols-outlined { color: var(--v182-gold); font-size: 2rem; }
.v182-games-block + .v182-games-block { margin-top: 3rem; }
.v182-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .9rem; }
.v182-card { position: relative; min-width: 0; overflow: hidden; border: .1rem solid var(--v182-border); border-radius: 1.2rem; background: var(--v182-panel); box-shadow: 0 .4rem 1.4rem rgba(0, 0, 0, .2); }
.v182-game-card { min-height: 4.4rem; cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.v182-game-card:hover { border-color: rgba(255, 200, 87, .58); box-shadow: 0 .8rem 2.2rem rgba(0, 0, 0, .3); transform: translateY(-.2rem); }
.v182-game-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #2b2320; }
.v182-game-name { min-height: 4.3rem; display: flex; align-items: center; justify-content: center; margin: 0; padding: .7rem .5rem; color: var(--v182-text); font-size: 1.15rem; font-weight: 800; line-height: 1.4rem; text-align: center; }

.v182-content-grid { display: grid; gap: 1.2rem; }
.v182-info-card { padding: 1.7rem; }
.v182-info-card h3 { display: flex; align-items: center; gap: .8rem; margin: 0 0 1rem; color: var(--v182-gold); font-size: 1.8rem; line-height: 2.2rem; }
.v182-info-card p, .v182-info-card li { color: var(--v182-muted); line-height: 2.3rem; }
.v182-info-card ul, .v182-info-card ol { margin: 0; padding-left: 2rem; }
.v182-steps { counter-reset: v182-step; display: grid; gap: 1rem; margin-top: 1.6rem; }
.v182-step { display: grid; grid-template-columns: 4.2rem 1fr; gap: 1rem; align-items: start; padding: 1.3rem; }
.v182-step::before { counter-increment: v182-step; content: counter(v182-step); display: grid; width: 4.2rem; height: 4.2rem; place-items: center; border-radius: 1rem; background: var(--v182-primary); font-size: 1.8rem; font-weight: 900; }
.v182-step h3 { margin: 0 0 .5rem; font-size: 1.6rem; line-height: 2rem; }
.v182-step p { margin: 0; color: var(--v182-muted); line-height: 2.2rem; }
.v182-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.v182-stat { padding: 1.6rem; text-align: center; }
.v182-stat strong { display: block; color: var(--v182-gold); font-family: Georgia, serif; font-size: 2.5rem; line-height: 3rem; }
.v182-stat span { color: var(--v182-muted); font-size: 1.2rem; line-height: 1.6rem; }
.v182-notice { margin-top: 1.2rem; padding: 1.4rem; border-left: .4rem solid var(--v182-green); border-radius: .7rem; background: rgba(83, 214, 138, .08); color: var(--v182-muted); line-height: 2.2rem; }
.v182-review-grid { display: grid; gap: 1rem; }
.v182-review { padding: 1.6rem; }
.v182-stars { color: var(--v182-gold); letter-spacing: .2rem; }
.v182-review p { color: var(--v182-muted); line-height: 2.2rem; }
.v182-review footer { color: var(--v182-text); font-weight: 800; }
.v182-faq { display: grid; gap: .8rem; }
.v182-faq details { border: .1rem solid var(--v182-border); border-radius: 1rem; background: var(--v182-panel); }
.v182-faq summary { min-height: 4.8rem; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; cursor: pointer; font-weight: 850; line-height: 2rem; }
.v182-faq p { margin: 0; padding: 0 1.4rem 1.4rem; color: var(--v182-muted); line-height: 2.2rem; }
.v182-banner { position: relative; overflow: hidden; padding: 2rem; border: .1rem solid rgba(255, 200, 87, .3); border-radius: 1.6rem; background: linear-gradient(135deg, #5b1010, var(--v182-primary-dark)); box-shadow: var(--v182-shadow); }
.v182-banner::after { position: absolute; top: -4rem; right: -3rem; width: 14rem; height: 14rem; border: 2rem solid rgba(255, 200, 87, .1); border-radius: 50%; content: ""; }
.v182-banner h2 { position: relative; z-index: 1; margin: 0 0 .8rem; font-family: Georgia, serif; font-size: 2.4rem; line-height: 2.8rem; }
.v182-banner p, .v182-banner .v182-cta-row { position: relative; z-index: 1; }

.v182-footer { padding: 3rem 0 8rem; border-top: .1rem solid var(--v182-border); background: #090909; }
.v182-footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.v182-footer-copy { max-width: 70rem; color: var(--v182-muted); line-height: 2.2rem; }
.v182-footer-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0; }
.v182-footer-links { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; padding: 1.5rem 0; border-block: .1rem solid var(--v182-border); }
.v182-footer-link { color: var(--v182-gold); font-weight: 750; text-decoration: none; }
.v182-copyright { margin: 1.5rem 0 0; color: #9e927c; font-size: 1.2rem; line-height: 1.8rem; }

.v182-bottom-nav { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1000; height: 6.2rem; display: flex; justify-content: space-around; border-top: .1rem solid rgba(255, 200, 87, .28); background: #181212; box-shadow: 0 -1rem 2.8rem rgba(0, 0, 0, .38); }
.v182-bottom-item { min-width: 6rem; min-height: 6rem; display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; border: 0; background: transparent; color: #c8bda6; cursor: pointer; font-size: 1rem; line-height: 1.2rem; text-decoration: none; transition: color .18s ease, transform .18s ease, background .18s ease; }
.v182-bottom-item i, .v182-bottom-item ion-icon, .v182-bottom-item .material-symbols-outlined { font-size: 2.3rem; line-height: 2.3rem; }
.v182-bottom-item:active { transform: scale(.91); }
.v182-bottom-active { background: linear-gradient(180deg, rgba(178, 34, 34, .28), transparent); color: var(--v182-gold); }
.v182-bottom-promo { color: #fff; }
.v182-bottom-promo i, .v182-bottom-promo ion-icon { filter: drop-shadow(0 0 .6rem rgba(255, 200, 87, .4)); }

@media (max-width: 430px) {
  .v182-container { width: min(100% - 2rem, 41rem); }
  .v182-main { padding-bottom: 8rem; }
  .v182-header-row { gap: .5rem; }
  .v182-brand { max-width: 10.5rem; }
  .v182-header-actions { gap: .4rem; }
  .v182-btn { padding-inline: .9rem; font-size: 1.15rem; }
  .v182-menu-button { width: 4.4rem; padding: 0; }
  .v182-carousel, .v182-slide-image { min-height: 26rem; height: 26rem; }
  .v182-slide-copy { right: 4.8rem; }
  .v182-carousel-control { top: 37%; }
  .v182-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
  .v182-game-name { min-height: 4.5rem; font-size: 1.05rem; }
  .v182-section-head { align-items: start; }
}

@media (min-width: 431px) {
  body { line-height: 1.6rem; }
  .v182-brand-tag { display: block; }
  .v182-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .v182-content-grid, .v182-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

@media (min-width: 769px) {
  .v182-bottom-nav { display: none; }
  .v182-footer { padding-bottom: 3rem; }
  .v182-menu-button { display: none; }
  .v182-desktop-nav { display: flex; }
  .v182-header-actions { margin-left: 1rem; }
  .v182-main { padding-top: 8rem; }
  .v182-carousel, .v182-slide-image { min-height: 42rem; height: 42rem; }
  .v182-slide-copy { inset: auto auto 4rem 4rem; max-width: 52rem; }
  .v182-slide-copy h2 { font-size: 4rem; line-height: 4.4rem; }
  .v182-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 1.2rem; }
  .v182-game-name { font-size: 1.2rem; }
  .v182-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v182-review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v182-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .v182-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

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