/* =============================================================
   TactiGlow VR Arena — Main Stylesheet
   No animations / No transitions per project requirements
   ============================================================= */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

img, svg { display: block; }
ul { list-style: none; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── CSS VARIABLES ── */
:root {
  --bg-main:        #08091c;
  --bg-alt:         #0c0d22;
  --bg-card:        #0f1028;
  --bg-card-border: #141533;

  --cyan:           #00d4ff;
  --red:            #ff2b5e;
  --purple:         #7c3aed;

  --text-primary:   #f0f2ff;
  --text-secondary: #8892b0;
  --text-muted:     #44485c;

  --border:         #1a1c38;
  --border-light:   #22254a;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans',  system-ui, sans-serif;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;

  --container: 1200px;
  --pad-x: 1.5rem;
  --section-y: 5rem;
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }

p { color: var(--text-secondary); line-height: 1.75; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── SECTION ── */
.section { padding: var(--section-y) 0; }
.section--alt { background-color: var(--bg-alt); }

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section__title { margin-bottom: 0.9rem; }

.section__sub {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.neon-bar {
  width: 48px;
  height: 3px;
  background-color: var(--cyan);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.7rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-s);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background-color: var(--cyan);
  color: #08091c;
}

.btn--outline {
  border: 2px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

.btn--block { width: 100%; }

/* ── ICON WRAPPER ── */
.icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-s);
  flex-shrink: 0;
}

.icon-box svg { width: 26px; height: 26px; }

/* ──────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  position: relative;
  overflow: hidden;
}

/* Tactical grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}

/* Cyan corner accent */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at top right, rgba(0,212,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Brand bar (no nav) */
.hero__brand-bar {
  position: relative;
  z-index: 2;
  padding: 1.75rem var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.hero__logo-img { width: 52px; height: auto; }

.hero__site-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.hero__site-name em {
  font-style: normal;
  color: var(--cyan);
}

/* Hero content */
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem var(--pad-x) 5rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__inner { max-width: 760px; }

.hero__chip {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero__title .accent { color: var(--cyan); }

.hero__lead {
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll arrow */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background-color: var(--text-muted);
}

/* ──────────────────────────────────────────────
   STATS
   ────────────────────────────────────────────── */
.section-stats {
  padding: 0;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child { border-right: none; }

.stat-cell__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-cell__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* ──────────────────────────────────────────────
   ABOUT
   ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.photo-placeholder {
  background-color: var(--bg-card);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-l);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-placeholder svg { opacity: 0.3; }

.photo-placeholder--main { aspect-ratio: 4/3; }
.photo-placeholder--sq   { aspect-ratio: 1; }
.photo-placeholder--wide { aspect-ratio: 16/9; }

.about-text .section__eyebrow { display: block; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p  { margin-bottom: 1.1rem; }
.about-text p:last-of-type { margin-bottom: 1.75rem; }

/* ──────────────────────────────────────────────
   FEATURES
   ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.75rem;
  text-align: center;
}

.feature-card .icon-box { margin-bottom: 1.25rem; display: flex; justify-content: center; }
.feature-card h3 { margin-bottom: 0.65rem; }

/* ──────────────────────────────────────────────
   GAMES (PRODUCT BLOCK)
   ────────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.game-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.game-card__stripe { height: 3px; background-color: var(--cyan); }
.game-card:nth-child(2) .game-card__stripe { background-color: var(--red); }
.game-card:nth-child(3) .game-card__stripe { background-color: var(--purple); }
.game-card:nth-child(4) .game-card__stripe { background-color: var(--cyan); }
.game-card:nth-child(5) .game-card__stripe { background-color: var(--red); }
.game-card:nth-child(6) .game-card__stripe { background-color: var(--purple); }

.game-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-card__icon { margin-bottom: 1.1rem; width: 44px; height: 44px; }
.game-card__icon svg { width: 44px; height: 44px; }

.game-card h3 { margin-bottom: 0.6rem; }
.game-card p  { font-size: 0.88rem; flex: 1; margin-bottom: 1.25rem; }

.game-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.game-meta__item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.game-meta__item svg { width: 13px; height: 13px; flex-shrink: 0; }

.game-meta__price {
  margin-left: auto;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
}

.game-meta__price strong {
  font-weight: 700;
}

/* ──────────────────────────────────────────────
   HOW IT WORKS
   ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 2px;
  background-color: var(--border-light);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 52px;
  height: 52px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background-color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.step h3 { font-size: 0.95rem; margin-bottom: 0.45rem; }
.step p   { font-size: 0.82rem; }

/* ──────────────────────────────────────────────
   ARENA (photo block)
   ────────────────────────────────────────────── */
.arena-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.arena-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.arena-photos .photo-placeholder--wide { grid-column: span 2; }

.arena-text h2 { margin-bottom: 1.25rem; }
.arena-text p  { margin-bottom: 1.1rem; }
.arena-text p:last-of-type { margin-bottom: 0; }

/* ──────────────────────────────────────────────
   AUDIENCE
   ────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 2rem 1.5rem;
  text-align: center;
}

.audience-card .icon-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.audience-card .icon-circle svg { width: 28px; height: 28px; color: var(--cyan); }

.audience-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.audience-card p  { font-size: 0.85rem; }

/* ──────────────────────────────────────────────
   GALLERY
   ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  background-color: var(--bg-card);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-m);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-item svg { opacity: 0.3; width: 34px; height: 34px; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }

/* ──────────────────────────────────────────────
   REVIEWS
   ────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.75rem;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review-stars svg { width: 15px; height: 15px; }

.review-text {
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.review-author { display: flex; align-items: center; gap: 0.75rem; }

.review-avatar {
  width: 42px;
  height: 42px;
  background-color: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.review-meta__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.review-meta__date { font-size: 0.78rem; color: var(--text-muted); }

/* ──────────────────────────────────────────────
   CONTACTS
   ────────────────────────────────────────────── */
.section-contacts {
  border-top: 1px solid var(--border);
  background-color: var(--bg-main);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg { width: 22px; height: 22px; color: var(--cyan); }

.contact-row__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-row__value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-row__value a {
  color: var(--text-primary);
}

.contact-row__value a:hover { color: var(--cyan); }

.contact-map {
  aspect-ratio: 4/3;
  background-color: var(--bg-card);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map svg { opacity: 0.3; width: 48px; height: 48px; }

/* ──────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────── */
.footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.75rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer__logo  { width: 38px; height: auto; }

.footer__name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}

.footer__name em { font-style: normal; color: var(--cyan); }
.footer__tagline  { font-size: 0.82rem; color: var(--text-secondary); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer__links a:hover { color: var(--cyan); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy { font-size: 0.78rem; color: var(--text-muted); }

.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.footer__legal a { font-size: 0.78rem; color: var(--text-muted); }
.footer__legal a:hover { color: var(--cyan); }

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .games-grid     { grid-template-columns: repeat(2, 1fr); }
  .audience-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-row      { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--border); }
}

@media (max-width: 768px) {
  :root { --section-y: 3.5rem; }

  .about-grid,
  .arena-grid,
  .contacts-grid  { grid-template-columns: 1fr; gap: 2.5rem; }

  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }

  .reviews-grid   { grid-template-columns: 1fr; }

  .footer__top    { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stats-row       { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-cell:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }

  .features-grid  { grid-template-columns: 1fr; }
  .games-grid     { grid-template-columns: 1fr; }
  .audience-grid  { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }

  .gallery-grid   { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }

  .arena-photos   { grid-template-columns: 1fr; }
  .arena-photos .photo-placeholder--wide { grid-column: span 1; }

  .footer__cols   { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal  { justify-content: center; gap: 1rem; }

  .hero__cta      { flex-direction: column; }
  .btn            { text-align: center; }
}

/* Image placeholder styling */
.image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-m);
  display: block;
}
