/* ============================================================
   NEURAFORGE v2 — iGaming Games Provider
   Aesthetic: Bold, playful, PP-inspired. Red/gold on deep black.
   ============================================================ */

:root {
  --bg: #0b0b15;
  --bg-elev: #13131f;
  --bg-card: #1a1a28;
  --bg-card-hover: #202035;

  --red: #e60019;
  --red-bright: #ff1a3a;
  --red-deep: #a6000f;
  --red-glow: rgba(230, 0, 25, 0.35);

  --gold: #ffc933;
  --gold-bright: #ffdd66;

  --teal: #00d9c8;
  --purple: #8b5cf6;

  --white: #ffffff;
  --text: #e8eaf2;
  --text-dim: #a1a5b8;
  --text-muted: #6b7085;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Ambient glow layers */
body::before {
  content: '';
  position: fixed;
  top: -250px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

body::after {
  content: '';
  position: fixed;
  bottom: -350px;
  left: -250px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 201, 51, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: inline-block;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2.5rem;
  backdrop-filter: blur(20px);
  background: rgba(11, 11, 21, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-bright);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  border-radius: 100px;
  white-space: nowrap;
}

.btn-primary,
.nav-links a.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--red-glow);
}

.btn-ghost,
.nav-links a.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 201, 51, 0.35);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2.5rem 3rem;
  z-index: 1;
  overflow: hidden;
}

.hero-grid {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  display: block;
}

.hero-title .red {
  color: var(--red-bright);
  font-style: italic;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.55;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-badge-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

/* Hero visual — cartoony character composition */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(230, 0, 25, 0.25));
}

/* Animation classes — apply to INNER wrapper groups only
   (outer g holds transform="translate(...)"; inner g gets animated) */

.float-slow {
  animation: float-slow 5.5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.float-med {
  animation: float-med 4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.float-fast {
  animation: float-fast 3.2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.float-delay-1 { animation-delay: -0.8s; }
.float-delay-2 { animation-delay: -1.6s; }
.float-delay-3 { animation-delay: -2.4s; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes float-med {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-fast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.spin-slow {
  animation: spin-slow 40s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .float-slow, .float-med, .float-fast, .spin-slow {
    animation: none;
  }
}

/* ============ WAVE DIVIDER ============ */
.wave-divider {
  width: 100%;
  height: 80px;
  margin-bottom: -1px;
  display: block;
}

/* ============ SECTIONS ============ */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 2.5rem;
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 760px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title .red {
  color: var(--red-bright);
  font-style: italic;
}

.section-title .gold {
  color: var(--gold);
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ============ FEATURED BANNER ============ */
.featured {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-banner {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 50%, #6b000b 100%);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 201, 51, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.featured-banner > * {
  position: relative;
  z-index: 1;
}

.featured-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}

.featured-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.featured-visual {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-visual svg {
  width: 100%;
  height: 100%;
}

/* ============ PRODUCT CATEGORY CARDS ============ */
.products {
  background: var(--bg);
}

.product-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-cat {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.product-cat:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--red);
}

.product-cat-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-cat-visual svg {
  width: 100%;
  height: 100%;
}

.product-cat:nth-child(1) .product-cat-visual {
  background: linear-gradient(135deg, #ff6b35 0%, #e60019 100%);
}

.product-cat:nth-child(2) .product-cat-visual {
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
}

.product-cat:nth-child(3) .product-cat-visual {
  background: linear-gradient(135deg, #ffc933 0%, #f97316 100%);
}

.product-cat:nth-child(4) .product-cat-visual {
  background: linear-gradient(135deg, #00d9c8 0%, #0ea5e9 100%);
}

.product-cat-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.product-cat-body p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-cat-link {
  color: var(--red-bright);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.25s ease;
}

.product-cat:hover .product-cat-link {
  gap: 0.7rem;
}

/* ============ FEATURED GAMES ROW ============ */
.games-section {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.game-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid var(--line);
}

.game-tile:hover {
  transform: scale(1.04);
}

.game-tile svg {
  width: 100%;
  height: 100%;
  display: block;
}

.game-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}

.game-tile-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}

.game-tile-badge.gold {
  background: var(--gold);
  color: var(--bg);
}

.game-tile-badge.teal {
  background: var(--teal);
  color: var(--bg);
}

/* ============ STATS ============ */
.stats {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.stats-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  padding: 2rem 1rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.stat-num .red { color: var(--red-bright); }
.stat-num .gold { color: var(--gold); }

.stat-label {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ============ NEWS ============ */
.news-section {
  background: var(--bg);
}

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

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text);
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.news-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-img svg {
  width: 100%;
  height: 100%;
}

.news-card:nth-child(1) .news-card-img {
  background: linear-gradient(135deg, #e60019 0%, #6b000b 100%);
}

.news-card:nth-child(2) .news-card-img {
  background: linear-gradient(135deg, #ffc933 0%, #e60019 100%);
}

.news-card:nth-child(3) .news-card-img {
  background: linear-gradient(135deg, #7c3aed 0%, #e60019 100%);
}

.news-card-body {
  padding: 1.75rem;
}

.news-card-date {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
}

.news-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ============ AWARDS ============ */
.awards-section {
  padding: 5rem 2.5rem;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}

.awards-grid {
  max-width: 1300px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.award-item {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--text-muted);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  border-right: 1px solid var(--line);
  padding: 0 0.5rem;
}

.award-item:nth-child(6n) { border-right: none; }

.award-item:hover {
  opacity: 1;
  color: var(--text);
}

.award-year {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.award-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 6rem 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(230, 0, 25, 0.15) 0%, transparent 65%),
    var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.cta-sub {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
}

.cta-band-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 11rem 2.5rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
}

.page-header > * {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.page-title .red { color: var(--red-bright); font-style: italic; }
.page-title .gold { color: var(--gold); }

.page-sub {
  color: var(--text-dim);
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 500;
}

/* ============ ABOUT PAGE ============ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.about-aside {
  position: sticky;
  top: 7rem;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.about-aside h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.about-aside-list {
  list-style: none;
}

.about-aside-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.about-aside-list li:last-child { border-bottom: none; }

.about-aside-list li strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.prose {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.75;
}

.prose p {
  margin-bottom: 1.5rem;
  color: var(--text-dim);
}

.prose p:first-of-type::first-letter {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4.2rem;
  float: left;
  line-height: 0.9;
  margin-right: 0.6rem;
  margin-top: 0.4rem;
  color: var(--red-bright);
  font-weight: 800;
}

.prose h3 {
  font-size: 1.85rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
}

.prose blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--red);
  background: var(--bg-card);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.45;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}

.value-card-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.value-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============ CONTACT PAGE ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
}

.contact-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child { border-bottom: none; }

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.contact-value {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-value a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s ease;
}

.contact-value a:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(230, 0, 25, 0.15);
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

/* ============ FOOTER ============ */
footer {
  background: #06060d;
  border-top: 1px solid var(--line);
  padding: 5rem 2.5rem 2rem;
  z-index: 1;
  position: relative;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand { max-width: 320px; }

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-top: 1rem;
  line-height: 1.65;
}

.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }

.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease;
  font-weight: 500;
}

.footer-col a:hover { color: var(--red-bright); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal a:hover { color: var(--text); }

.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav { padding: 0.9rem 1.25rem; }
  .nav-links { gap: 1rem; }
  .nav-links li:nth-child(-n+4) { display: none; }
  .hero { padding: 5rem 1.25rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; padding-top: 1rem; }
  .hero-visual { height: 340px; order: -1; }
  section { padding: 4rem 1.25rem; }
  .featured-banner { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .featured-visual { height: 200px; }
  .product-cat-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .award-item:nth-child(3n) { border-right: none; }
  .award-item:nth-child(6n) { border-right: 1px solid var(--line); }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-aside { position: static; }
  .values-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-card { padding: 1.75rem 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-header { padding: 8rem 1.25rem 3rem; }
  .cta-band { padding: 4rem 1.25rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
