/* ============================================================
   AXUONYX — iGaming Aggregator Platform
   Aesthetic: Black + gold + oxblood, casino marketing energy,
   subtle Indonesian batik parang motifs.
   ============================================================ */

:root {
  /* Backgrounds */
  --bg: #07060a;
  --bg-elev: #0d0c12;
  --bg-card: #15131c;
  --bg-card-hover: #1f1c2a;
  --bg-deep: #050409;

  /* Gold — the brand */
  --gold: #d4af37;
  --gold-bright: #f5d76e;
  --gold-deep: #a8862d;
  --gold-glow: rgba(212, 175, 55, 0.35);

  /* Oxblood / heritage red */
  --ox: #6e1822;
  --ox-bright: #a82332;
  --ox-deep: #4a0f17;

  /* Accents */
  --emerald: #1c8c5a;
  --jade: #25b07a;
  --ivory: #fff9e6;

  /* Text */
  --white: #fff9e6;
  --text: #ece5d2;
  --text-dim: #a89e87;
  --text-muted: #6f6655;

  /* Lines */
  --line: rgba(212, 175, 55, 0.14);
  --line-strong: rgba(212, 175, 55, 0.32);
  --line-soft: rgba(255, 249, 230, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -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;
}

/* Background ambient layers */
body::before {
  content: '';
  position: fixed;
  top: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--white);
}

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

/* ============ PARANG BATIK BORDER ============ */
/* Decorative diagonal-wave divider, used between sections */
.parang-divider {
  width: 100%;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0,12 Q30,0 60,12 T120,12' fill='none' stroke='%23d4af37' stroke-width='1.2' opacity='0.45'/%3E%3Cpath d='M0,18 Q30,6 60,18 T120,18' fill='none' stroke='%236e1822' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 24px;
  position: relative;
  z-index: 2;
}

/* Gold gradient text — used for headlines and currency */
.gold-grad {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo .x {
  color: var(--gold);
  font-style: italic;
}

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

.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: 500;
  transition: color 0.25s ease;
  position: relative;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary,
.nav-links a.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--bg);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px var(--gold-glow);
}

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

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

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

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

/* Subtle parang motif at hero edges */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 0;
  width: 80px;
  height: 60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40,0 Q60,20 40,40 T40,80' fill='none' stroke='%23d4af37' stroke-width='1' opacity='0.18'/%3E%3Cpath d='M20,0 Q40,20 20,40 T20,80' fill='none' stroke='%236e1822' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.05); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero-title em {
  font-style: italic;
  font-weight: 700;
}

.hero-bonus {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-bonus-pct {
  font-size: 1.4em;
  font-style: italic;
}

.hero-bonus-currency {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

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

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

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

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
}

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

/* Hero visual */
.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 25px 60px rgba(212, 175, 55, 0.18));
}

/* Animation classes (nested-group pattern, no SVG transform conflicts) */
.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;
}
.delay-1 { animation-delay: -0.8s; }
.delay-2 { animation-delay: -1.6s; }
.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; }
}

/* ============ MARQUEE TICKER ============ */
.ticker {
  background: linear-gradient(90deg, var(--ox-deep) 0%, var(--ox) 50%, var(--ox-deep) 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-bright);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ticker-item .sep {
  color: var(--gold);
  margin-left: 3rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

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

.section-header {
  margin-bottom: 4rem;
}

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

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

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ============ GAME CATEGORIES ============ */
.categories {
  background: var(--bg);
}

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

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.cat-card:hover::before {
  width: 80%;
}

.cat-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.cat-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

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

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

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

.game-tile:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--gold);
}

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

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

.game-tile-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--ox-bright);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
}
.game-tile-badge.gold {
  background: var(--gold);
  color: var(--bg);
}

/* ============ PROMOTIONS ============ */
.promos {
  background: var(--bg);
}

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

.promo-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.promo-banner {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card:nth-child(1) .promo-banner {
  background: linear-gradient(135deg, var(--ox) 0%, var(--ox-deep) 60%, #2a0509 100%);
}
.promo-card:nth-child(2) .promo-banner {
  background: linear-gradient(135deg, var(--gold-deep) 0%, #4a3812 60%, #1a1208 100%);
}
.promo-card:nth-child(3) .promo-banner {
  background: linear-gradient(135deg, #0e3b2a 0%, #062118 60%, #03110d 100%);
}

.promo-banner svg { width: 100%; height: 100%; }

.promo-pct {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold-bright);
  letter-spacing: -0.04em;
  line-height: 0.9;
  z-index: 2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

.promo-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.promo-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.promo-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
}

.promo-link {
  color: var(--gold-bright);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.promo-link:hover { gap: 0.7rem; }

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

.provider-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.provider-item {
  background: var(--bg-card);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.provider-item:hover {
  color: var(--gold-bright);
  background: var(--bg-card-hover);
}

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

.trust-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.trust-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.trust-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

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

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

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40,0 Q60,20 40,40 T40,80' fill='none' stroke='%23d4af37' stroke-width='1' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.cta-band > .section-inner {
  position: relative;
  z-index: 1;
}

.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.1rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.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(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

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

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

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

/* ============ ABOUT ============ */
.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: 16px;
  border: 1px solid var(--line);
}

.about-aside h3 {
  font-size: 1.25rem;
  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.93rem;
}

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

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

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

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

.prose p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.4rem;
  float: left;
  line-height: 0.9;
  margin-right: 0.6rem;
  margin-top: 0.4rem;
  color: var(--gold);
  font-weight: 800;
}

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

.prose blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
  background: var(--bg-card);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

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

.contact-info h3 {
  font-size: 1.7rem;
  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(--gold);
  color: var(--gold-bright);
}

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

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

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

.form-row label {
  display: block;
  font-size: 0.7rem;
  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: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

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

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

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

/* ============ FOOTER ============ */
footer {
  background: var(--bg-deep);
  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.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

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

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

.footer-col a:hover { color: var(--gold-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(--ox-bright);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .games-row { grid-template-columns: repeat(3, 1fr); }
  .provider-wall { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav { padding: 0.85rem 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: 320px; order: -1; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  section { padding: 4rem 1.25rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .games-row { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .provider-wall { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-aside { position: static; }
  .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; }
}
