/* ==========================================================================
   Pin-Up Casino AZ — Main Stylesheet
   Brand: Red #E8001C + Gold #FFD700 + Dark Navy #0d0a1a
   Aesthetic: Glamour, retro-luxury, pin-up vintage meets modern casino
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Backgrounds */
  --pu-bg-deep:    #08060f;
  --pu-bg:         #0d0a1a;
  --pu-bg-raised:  #150f28;
  --pu-bg-card:    #1a1230;
  --pu-bg-card2:   #221844;

  /* Brand Red */
  --pu-red:        #E8001C;
  --pu-red-light:  #ff2d45;
  --pu-red-deep:   #9e0013;
  --pu-red-dark:   #5c000b;

  /* Brand Gold */
  --pu-gold:       #FFD700;
  --pu-gold-light: #ffe94d;
  --pu-gold-deep:  #c9a800;
  --pu-gold-dark:  #7a6400;

  /* Neutrals */
  --pu-text:       #f5f0ff;
  --pu-text-soft:  #c8bde0;
  --pu-text-muted: #7a6ea0;
  --pu-border:     rgba(255, 215, 0, 0.12);
  --pu-border-red: rgba(232, 0, 28, 0.25);

  /* Gradients */
  --grad-red:      linear-gradient(135deg, #ff2d45 0%, #E8001C 50%, #5c000b 100%);
  --grad-gold:     linear-gradient(135deg, #ffe94d 0%, #FFD700 50%, #c9a800 100%);
  --grad-bg:       linear-gradient(160deg, #0d0a1a 0%, #150f28 50%, #08060f 100%);
  --grad-card:     linear-gradient(145deg, #1a1230 0%, #221844 100%);
  --grad-hero:     radial-gradient(ellipse 80% 60% at 30% 50%, rgba(232,0,28,0.18) 0%, transparent 70%),
                   radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,215,0,0.10) 0%, transparent 60%);

  /* Shadows */
  --sh-card:       0 8px 32px -8px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.4);
  --sh-card-hover: 0 20px 50px -8px rgba(0,0,0,0.8), 0 0 30px rgba(232,0,28,0.35);
  --sh-gold:       0 4px 20px rgba(255,215,0,0.4);
  --sh-red:        0 4px 20px rgba(232,0,28,0.5);

  /* Typography */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Nunito', system-ui, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-pill: 999px;

  /* Easing */
  --ease-out:    cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    160ms;
  --dur:         260ms;
  --dur-slow:    480ms;

  --header-h: 76px;
  --sticky-h: 72px;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--pu-text);
  background-color: var(--pu-bg-deep);
  background-image: var(--grad-bg);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h);
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease-out); }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  line-height: 1.15;
}

::selection { background: var(--pu-red); color: #fff; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pu-gold);
  padding: 5px 14px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(255, 215, 0, 0.07);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--pu-text);
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--pu-text-soft);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.7;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .section-lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--dur) var(--ease-out);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn--primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--sh-red);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,0,28,0.6);
}

.btn--gold {
  background: var(--grad-gold);
  color: #1a0800;
  box-shadow: var(--sh-gold);
  font-weight: 900;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--pu-text-soft);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--ghost:hover {
  color: var(--pu-text);
  border-color: rgba(255,215,0,0.4);
  background: rgba(255,215,0,0.05);
}

.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 12px; }

.btn--glow {
  animation: btnPulse 2.8s ease-in-out infinite;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background var(--dur), box-shadow var(--dur), border-color var(--dur);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(13, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--pu-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  gap: 24px;
}

.brand { display: flex; align-items: center; }
.brand__logo { width: auto; height: 46px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pu-text-soft);
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.nav__link:hover {
  color: var(--pu-gold);
  background: rgba(255,215,0,0.06);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.nav__close,
.nav__toggle { display: none; }

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 98;
  opacity: 0;
  transition: opacity var(--dur);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 15% 50%, rgba(232,0,28,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 600px 500px at 85% 20%, rgba(255,215,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 500px 500px at 70% 85%, rgba(232,0,28,0.10) 0%, transparent 60%);
}

.hero__bg-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,215,0,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 12%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 68% 35%, rgba(255,215,0,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 72%, rgba(255,215,0,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 85%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 18%, rgba(255,215,0,0.5) 0%, transparent 100%);
}

.hero__bg-chips {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(circle at center, rgba(255,215,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  padding-block: 80px 60px;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pu-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pu-text);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.25s both;
}

.hero__desc {
  font-size: 17px;
  color: var(--pu-text-soft);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.55s both;
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s both;
}

.stat__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--pu-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--pu-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero decoration: card fan */
.hero__pinup-art {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.8s both;
}

.hero__card-fan {
  position: relative;
  width: 220px;
  height: 300px;
}

.card {
  position: absolute;
  width: 120px;
  height: 180px;
  border-radius: 12px;
  background: var(--grad-card);
  border: 1px solid var(--pu-border);
  box-shadow: var(--sh-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card::before {
  content: '♠';
  font-size: 40px;
  color: var(--pu-red);
  opacity: 0.5;
}

.card--1 {
  left: 0;
  top: 30px;
  transform: rotate(-18deg);
  background: linear-gradient(145deg, #1e1540 0%, #150f28 100%);
}
.card--2 {
  left: 50px;
  top: 0;
  transform: rotate(0deg);
  background: linear-gradient(145deg, #221844 0%, #1a1230 100%);
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,215,0,0.2);
}
.card--2::before { content: '♥'; color: var(--pu-gold); opacity: 0.8; }
.card--3 {
  left: 100px;
  top: 30px;
  transform: rotate(18deg);
  background: linear-gradient(145deg, #1e1540 0%, #150f28 100%);
}
.card--3::before { content: '♦'; color: var(--pu-red-light); opacity: 0.5; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--pu-bg-raised);
  border-top: 1px solid var(--pu-border);
  border-bottom: 1px solid var(--pu-border);
  padding: 18px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pu-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-item img {
  filter: saturate(0) brightness(1.5);
  opacity: 0.7;
}

/* ---------- Games Section ---------- */
.games {
  padding: 90px 0 70px;
  position: relative;
}

.games::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pu-gold) 50%, transparent);
  opacity: 0.3;
}

/* Slider */
.slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider__viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius);
}

.slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}

.slider__btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pu-bg-card);
  border: 1px solid var(--pu-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease-out);
  color: var(--pu-text-soft);
}
.slider__btn:hover:not(:disabled) {
  background: var(--pu-red);
  border-color: var(--pu-red);
  box-shadow: var(--sh-red);
}
.slider__btn:disabled { opacity: 0.3; cursor: not-allowed; }

.slider__btn--prev img { transform: rotate(180deg); }

/* Game Cards */
.game-card {
  flex-shrink: 0;
  flex-basis: calc((100% - 80px) / 5);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pu-bg-card);
  border: 1px solid var(--pu-border);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-hover);
  border-color: rgba(232, 0, 28, 0.4);
}

.game-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.game-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.game-card:hover .game-card__image img { transform: scale(1.06); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__meta {
  padding: 12px 14px;
}
.game-card__title {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pu-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pu-gold);
  opacity: 0.8;
}

.games__footer {
  text-align: center;
  margin-top: 36px;
}

/* ---------- Bonus Banner ---------- */
.banner-section {
  padding: 60px 0;
}

.promo-banner {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1f0808 0%, #3d0010 40%, #1f0808 100%);
  border: 1px solid rgba(232,0,28,0.4);
  box-shadow: 0 0 60px rgba(232,0,28,0.2), var(--sh-card);
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
}
.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 80px rgba(232,0,28,0.35), 0 20px 50px rgba(0,0,0,0.5);
}

.promo-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 52px) clamp(24px, 5vw, 60px);
  position: relative;
  z-index: 2;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-banner__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pu-gold);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.promo-banner__amount {
  font-family: var(--f-display);
  font-size: clamp(44px, 8vw, 82px);
  font-weight: 900;
  color: var(--pu-gold);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(255,215,0,0.4);
}

.promo-banner__sub {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

.promo-banner__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.promo-banner__offer {
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 900;
  font-family: var(--f-display);
  color: #fff;
  text-align: right;
  letter-spacing: 0.03em;
}

.promo-banner__cta {
  font-size: 16px;
  padding: 16px 36px;
}

.promo-banner__shine {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,215,0,0.04) 40%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,215,0,0.04) 60%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

/* ---------- Brand Section ---------- */
.brand-section {
  padding: 90px 0;
  position: relative;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.brand-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative casino wheel/badge */
.brand-decoration {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.deco-ring--1 {
  inset: 0;
  border-color: rgba(255,215,0,0.15);
  animation: spinSlow 20s linear infinite;
}
.deco-ring--2 {
  inset: 20px;
  border-color: rgba(232,0,28,0.2);
  border-style: dashed;
  animation: spinSlow 14s linear infinite reverse;
}

.deco-chip {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-card);
  border: 2px solid var(--pu-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--sh-gold);
  animation: floatChip 3s ease-in-out infinite;
}
.deco-chip--1 { top: 20px;  left: 50%; transform: translateX(-50%); color: #000; }
.deco-chip--2 { bottom: 20px; left: 10px; color: var(--pu-red); animation-delay: 1s; }
.deco-chip--3 { bottom: 20px; right: 10px; color: var(--pu-red); animation-delay: 2s; }

.brand-badge-center {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, #221844, #150f28);
  border: 2px solid rgba(255,215,0,0.4);
  box-shadow: 0 0 50px rgba(255,215,0,0.12), var(--sh-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.brand-badge-center__label {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--pu-gold);
  letter-spacing: 0.12em;
  line-height: 1;
}
.brand-badge-center__sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--pu-red-light);
  text-transform: uppercase;
}

.brand-text { }

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pu-text-soft);
  background: var(--pu-bg-card);
  border: 1px solid var(--pu-border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: border-color var(--dur), background var(--dur);
}
.features li:hover {
  border-color: rgba(255,215,0,0.3);
  background: var(--pu-bg-card2);
}

.features li img {
  filter: saturate(0) brightness(1.5);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ---------- SEO / Content Section ---------- */
.seo-section,
.content-section {
  padding: 70px 0;
  border-top: 1px solid var(--pu-border);
}

.seo-section h2,
.content-section h2 {
  font-family: var(--f-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--pu-text);
  margin: 36px 0 14px;
}

.seo-section h3,
.content-section h3 {
  font-family: var(--f-display);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--pu-gold);
  margin: 28px 0 10px;
}

.seo-section p,
.content-section p {
  color: var(--pu-text-soft);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}

.seo-section ul,
.content-section ul {
  color: var(--pu-text-soft);
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 14px;
  font-size: 15px;
}
.seo-section ul li,
.content-section ul li { margin-bottom: 6px; line-height: 1.7; }

.seo-section table,
.content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.seo-section th,
.content-section th {
  background: var(--pu-bg-card2);
  color: var(--pu-gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--pu-border);
  font-family: var(--f-body);
  letter-spacing: 0.05em;
}
.seo-section td,
.content-section td {
  padding: 11px 16px;
  color: var(--pu-text-soft);
  border-bottom: 1px solid var(--pu-border);
}
.seo-section tr:nth-child(even) td,
.content-section tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}
.seo-section strong,
.content-section strong {
  color: var(--pu-text);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pu-bg-raised);
  border-top: 1px solid var(--pu-border);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo { margin-bottom: 18px; }

.footer-about {
  font-size: 14px;
  color: var(--pu-text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pu-bg-card);
  border: 1px solid var(--pu-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease-out);
}
.social:hover {
  background: var(--pu-red);
  border-color: var(--pu-red);
  transform: translateY(-2px);
}
.social img {
  filter: brightness(0.7);
  transition: filter var(--dur);
}
.social:hover img { filter: brightness(1) invert(1); }

.footer-title {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--pu-text);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.footer-list li { margin-bottom: 10px; }
.footer-list a {
  font-size: 14px;
  color: var(--pu-text-muted);
  transition: color var(--dur);
}
.footer-list a:hover { color: var(--pu-gold); }

.footer-bottom {
  border-top: 1px solid var(--pu-border);
  padding: 20px 0;
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 13px;
  color: var(--pu-text-muted);
  font-weight: 700;
}
.footer-legal {
  font-size: 12px;
  color: var(--pu-text-muted);
  opacity: 0.6;
  max-width: 500px;
  text-align: right;
}

/* ---------- Sticky Promo ---------- */
.sticky-promo {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #1a0005 0%, #2e000c 100%);
  border-top: 1px solid rgba(232,0,28,0.4);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  animation: stickySlideUp 0.6s var(--ease-out) 2s both;
}

.sticky-promo__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 12px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-promo__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.sticky-promo__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sticky-promo__name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--pu-text);
  font-family: var(--f-display);
}
.sticky-promo__offer {
  display: block;
  font-size: 12px;
  color: var(--pu-gold);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-promo__cta {
  flex-shrink: 0;
  font-size: 13px;
  padding: 10px 22px;
}

.sticky-promo__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur);
}
.sticky-promo__close:hover { background: rgba(255,255,255,0.12); }

.sticky-promo.is-hidden {
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
