:root {
  --ink: #18202a;
  --muted: #637083;
  --line: #d9e1ea;
  --paper: #fffdf8;
  --soft: #f4f8fc;
  --dark: #07111f;
  --dark-2: #0d1b2e;
  --dark-3: #132842;
  --dark-text: #f3f7ff;
  --dark-muted: #b7c7dc;
  --blue: #1664d9;
  --cyan: #14a8d8;
  --yellow: #ffd34f;
  --pink: #f04f8b;
  --green: #35b86f;
  --shadow: 0 18px 50px rgba(28, 43, 68, .14);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-text);
  background:
    radial-gradient(circle at top left, rgba(22, 100, 217, .25), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(255, 211, 79, .14), transparent 28rem),
    linear-gradient(180deg, var(--dark) 0, #081522 44%, #050a12 100%);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: stretch;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(11, 18, 32, .94);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; min-width: 0; text-decoration: none; }
.brand img {
  width: min(760px, 100%);
  height: auto;
  max-height: 86px;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 45%, var(--yellow));
  color: white;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 8px 22px rgba(22, 100, 217, .28);
}
.brand strong { font-size: 1.1rem; }
.brand small { display: block; color: var(--muted); margin-top: 2px; }
.nav { display: flex; flex-wrap: wrap; align-content: center; justify-content: flex-end; gap: 6px; }
.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #edf5ff;
  font-weight: 700;
}
.nav a[aria-current="page"], .nav a:hover { background: #eaf3ff; color: var(--blue); }
main { min-height: 70vh; }
.hero, .page-hero, .section, .detail-hero, .contact-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(36px, 7vw, 78px) 0 42px;
}
.hero-copy {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 211, 79, .12), rgba(20, 168, 216, .12)),
    rgba(18, 36, 58, .82);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}
.hero h1, .page-hero h1, .detail-info h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: .98;
  letter-spacing: 0;
}
.page-hero.small h1 {
  max-width: 1120px;
  font-size: clamp(2.1rem, 5vw, 4.05rem);
}
.hero p, .page-hero p, .section p, .detail-info p { color: var(--dark-muted); font-size: 1.05rem; line-height: 1.65; }
.eyebrow {
  margin: 0 0 12px;
  color: #76c9ff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid var(--blue);
  text-decoration: none;
  font-weight: 900;
  color: var(--blue);
  background: rgba(255,255,255,.94);
}
.button.primary { background: var(--blue); color: white; }
.hero-panel, .note-card {
  border-radius: 8px;
  background: #10233a;
  color: white;
  padding: 26px;
  box-shadow: var(--shadow);
}
.hero-panel { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.hero-panel a { font-size: 1.35rem; font-weight: 900; text-decoration: none; }
.section { padding: 42px 0; }
.section-head { margin-bottom: 24px; }
.section-head h2, .contact-card h2, .cta-band h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
}
.section-head.row { display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.benefit-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--yellow);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}
.benefit-grid article:nth-child(2) { border-top-color: var(--cyan); }
.benefit-grid article:nth-child(3) { border-top-color: var(--green); }
.benefit-grid article:nth-child(4) { border-top-color: var(--pink); }
.benefit-grid strong, .benefit-grid span { display: block; }
.benefit-grid span { color: var(--muted); margin-top: 12px; line-height: 1.5; }
.color-band {
  width: 100%;
  max-width: none;
  padding: 48px max(16px, calc((100% - 1160px) / 2));
  background: rgba(7, 17, 31, .52);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.product-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.color-band .product-grid { width: 100%; margin: 0; }
.overview-callout {
  display: grid;
  gap: 6px;
  width: min(760px, 100%);
  margin: 24px auto 0;
  padding: 20px 24px;
  border-radius: 8px;
  border: 2px solid var(--blue);
  background: white;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}
.overview-callout strong {
  color: var(--blue);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.15;
}
.overview-callout span {
  color: #50647f;
  font-weight: 800;
}
.product-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(28, 43, 68, .08);
}
.product-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #dfe8f2;
  overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.game-card .product-image img { object-position: top center; }
.product-content { padding: 18px; }
.product-content h3 { margin: 0 0 14px; font-size: 1.45rem; line-height: 1.1; }
.product-content h3 a { text-decoration: none; }
.facts, .detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}
.facts div, .detail-facts div {
  padding: 12px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
}
dt { color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
dd { margin: 4px 0 0; font-weight: 900; }
ul { padding-left: 20px; }
li { margin: 7px 0; line-height: 1.45; }
.text-link { color: var(--blue); font-weight: 900; }
.split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: stretch;
}
.split > div:first-child {
  padding: 10px 0;
}
.note-card { background: linear-gradient(135deg, #14213d, #1664d9); }
.reviews-section {
  width: min(1160px, calc(100% - 32px));
  margin: 10px auto 56px;
}
.trustindex-widget {
  min-height: 190px;
  padding: 18px 22px;
  border-radius: 8px;
  background: #050910;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.page-hero.small { padding: 44px 0 26px; }
.page-hero.small h1 { font-size: clamp(2.1rem, 5vw, 4rem); }
.back-nav {
  width: min(1160px, calc(100% - 32px));
  margin: 26px auto 0;
}
.back-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 900;
}
.back-nav a:hover {
  background: rgba(255,255,255,.18);
}
.toolbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gigant-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 26px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 211, 79, .20), rgba(20, 168, 216, .13)),
    #111f35;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(28, 43, 68, .09);
  color: white;
}
.gigant-image {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 22px;
  background: #050910;
}
.gigant-image img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}
.gigant-intro {
  max-width: 780px;
}
.gigant-intro h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}
.gigant-intro p { color: #d7e6ff; }
.module-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.module-strip a {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: #10233a;
  color: white;
  text-decoration: none;
}
.module-strip span {
  font-weight: 900;
}
.module-strip strong {
  font-size: 1.35rem;
  color: var(--yellow);
}
.module-note {
  margin: 16px 0 0;
  color: #d7e6ff;
  line-height: 1.55;
}
.chip {
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,.08);
  font-weight: 900;
  cursor: pointer;
  color: var(--dark-text);
}
.chip.active { background: var(--blue); color: white; border-color: var(--blue); }
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  padding: 44px 0 28px;
}
.detail-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f2;
  box-shadow: var(--shadow);
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-info { padding: 8px 0; }
.detail-info h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.detail-facts { margin: 24px 0; }
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff4cc;
  color: var(--ink);
  font-weight: 800;
}
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding: 14px;
  border-radius: 8px;
  background: #10233a;
  color: white;
}
.contact-strip a { font-weight: 900; }
.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #dfe8f2;
}
.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px;
  margin-bottom: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 211, 79, .18), rgba(20, 168, 216, .12));
  border: 1px solid rgba(255,255,255,.12);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
.contact-card { background: white; color: var(--ink); border: 1px solid var(--line); }
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 22px;
  padding: 32px clamp(18px, 4vw, 58px);
  background: #10233a;
  color: white;
}
.footer-postal {
  display: block;
  margin-top: 4px;
  color: #b9cbe2;
}
.footer-pickup {
  display: block;
  margin-top: 12px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #ffffff;
}
.footer-pickup strong { color: #ffd34f; }
.site-footer p { margin: 0; color: #d7e6ff; line-height: 1.55; }
.footer-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.footer-links a { color: #d7e6ff; }
.legal-content {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto 54px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  line-height: 1.7;
}
.legal-content h2 { margin-top: 28px; }
@media (max-width: 920px) {
  .site-header { position: static; grid-template-columns: 1fr; }
  .nav { justify-content: stretch; }
  .hero, .detail-hero, .split, .contact-grid, .reviews-section { grid-template-columns: 1fr; }
  .benefit-grid, .product-grid, .product-grid.compact, .gallery, .module-strip { grid-template-columns: repeat(2, 1fr); }
  .section-head.row, .cta-band { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); }
  .nav a { background: #f0f5fb; color: var(--ink); text-align: center; }
  .nav a[aria-current="page"], .nav a:hover { color: var(--blue); }
  .brand img { max-height: none; }
  .hero h1, .page-hero h1, .detail-info h1 { font-size: 2.35rem; }
  .benefit-grid, .product-grid, .product-grid.compact, .gallery, .module-strip { grid-template-columns: 1fr; }
  .facts, .detail-facts { grid-template-columns: 1fr; }
  .hero-copy, .hero-panel { padding: 22px; }
}
