/* ============================================================
   LUCKYGEM CASINO — STYLE 3: GEM NEON LUXE
   Domain: it-luckygem.com  |  Locale: it-IT
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --bg-dark:       #000000;
  --bg-green:      #0a2218;
  --gold:          #ffd700;
  --amber:         #ffb300;
  --gold-soft:     rgba(255, 215, 0, 0.14);
  --gold-border:   rgba(255, 215, 0, 0.28);
  --text-primary:  #ffffff;
  --text-secondary:#b8d4bc;
  --card-bg:       rgba(4, 18, 10, 0.72);
  --header-bg:     rgba(0, 0, 0, 0.88);

  --glow-text:     0 0 14px rgba(255,215,0,0.85), 0 0 32px rgba(255,183,0,0.4);
  --glow-card:     0 0 20px rgba(255,215,0,0.10), 0 8px 36px rgba(0,0,0,0.65);
  --glow-btn:      0 0 22px rgba(255,215,0,0.60), 0 4px 16px rgba(255,183,0,0.35);

  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --transition:    all 0.28s ease;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; }
ul, ol { list-style: none; }

/* ─── BODY & BACKGROUND ──────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #000;
  background-image:
    linear-gradient(160deg, #000000 0%, #040f08 35%, #0a2218 65%, #000000 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Gem-cut facet pattern overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='50,6 94,50 50,94 6,50' fill='none' stroke='rgba(255,215,0,0.045)' stroke-width='1'/%3E%3Cpolygon points='50,22 78,50 50,78 22,50' fill='none' stroke='rgba(255,215,0,0.028)' stroke-width='0.8'/%3E%3Cpolygon points='50,36 64,50 50,64 36,50' fill='none' stroke='rgba(255,215,0,0.018)' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: var(--glow-text);
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255,215,0,0.60);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 10px;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

p {
  line-height: 1.78;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

p:last-child { margin-bottom: 0; }

strong { color: var(--text-primary); font-weight: 600; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-border);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.logo-gem {
  color: var(--gold);
  text-shadow: var(--glow-text);
}

.logo-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 7px rgba(255,215,0,0.75));
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.35));
}

.header-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #0d3320 0%, #1a6030 45%, #d4a800 100%);
  color: #000;
  font-weight: 800;
  box-shadow: var(--glow-btn);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  box-shadow: 0 0 32px rgba(255,215,0,0.80), 0 6px 22px rgba(255,183,0,0.5);
  transform: translateY(-2px);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(255,215,0,0.6);
  box-shadow: 0 0 10px rgba(255,215,0,0.15);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #000;
  box-shadow: var(--glow-btn);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 44px; font-size: 1.05rem; }

/* ─── SECTION SEPARATOR ─────────────────────────────────── */
.section-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,215,0,0.20) 15%,
    rgba(255,215,0,0.55) 50%,
    rgba(255,215,0,0.20) 85%,
    transparent 100%
  );
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero { padding: 100px 0 80px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amber);
  border: 1px solid rgba(255,179,0,0.35);
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(255,179,0,0.07);
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gold);
  text-shadow: var(--glow-text);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.badge-diamond {
  color: var(--gold);
  font-size: 0.65rem;
  filter: drop-shadow(0 0 4px rgba(255,215,0,0.8));
}

.hero-visual {}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--glow-card), 0 0 60px rgba(255,215,0,0.06);
  width: 100%;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ─── GLASSMORPHISM CARD ─────────────────────────────────── */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--glow-card);
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(255,215,0,0.50);
  box-shadow: 0 0 30px rgba(255,215,0,0.18), 0 14px 44px rgba(0,0,0,0.7);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.4rem;
}

/* ─── GAME CARDS ─────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.game-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--glow-card);
  transition: var(--transition);
}

.game-card:hover {
  border-color: rgba(255,215,0,0.52);
  box-shadow: 0 0 30px rgba(255,215,0,0.18), 0 14px 44px rgba(0,0,0,0.7);
  transform: translateY(-4px);
}

.game-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.game-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(10,34,24,0.95), rgba(255,215,0,0.07));
  border: 1px solid rgba(255,215,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255,215,0,0.1);
}

/* ─── BONUS CARDS ────────────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--glow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.bonus-card.featured {
  border-color: rgba(255,215,0,0.55);
  box-shadow: 0 0 32px rgba(255,215,0,0.18), 0 10px 36px rgba(0,0,0,0.75);
}

.bonus-card:hover { transform: translateY(-4px); }

.bonus-card-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.bonus-amount {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: var(--glow-text);
  line-height: 1.1;
}

.bonus-subtitle {
  font-size: 0.9rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  color: var(--amber);
}

.bonus-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-detail {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}

/* ─── STEPS LIST ─────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--glow-card);
  transition: var(--transition);
}

.step-item:hover {
  border-color: rgba(255,215,0,0.45);
  transform: translateX(5px);
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d3320, #c8a000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  box-shadow: 0 0 14px rgba(255,215,0,0.45);
}

.step-content { flex: 1; }
.step-content h4 { margin-bottom: 4px; }
.step-content p  { margin: 0; font-size: 0.95rem; }

/* ─── PAYMENT GRID ───────────────────────────────────────── */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.payment-item:hover {
  border-color: rgba(255,215,0,0.45);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.payment-icon { font-size: 1.6rem; color: var(--gold); }

/* ─── FEATURE LIST ───────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 14px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.97rem;
}

.feature-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.62rem;
  margin-top: 5px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255,215,0,0.75));
}

/* ─── INFO BLOCK ─────────────────────────────────────────── */
.info-block {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--glow-card);
  margin-bottom: 24px;
}

.info-block:last-child { margin-bottom: 0; }

/* ─── HIGHLIGHT BOX ──────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(10,34,24,0.85) 0%, rgba(255,215,0,0.04) 100%);
  border: 1px solid rgba(255,215,0,0.32);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 0 22px rgba(255,215,0,0.08);
  margin: 24px 0;
}

/* ─── TABLES ─────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,215,0,0.22);
  box-shadow: var(--glow-card);
  margin: 24px 0;
}

table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }

table thead {
  background: linear-gradient(135deg, #071a10 0%, #0f3a1e 100%);
}

table thead th {
  padding: 16px 22px;
  color: var(--gold);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: left;
  border-bottom: 2px solid rgba(255,215,0,0.38);
}

table tbody tr:nth-child(odd)  { background: rgba(10,34,24,0.62); }
table tbody tr:nth-child(even) { background: rgba(4,14,9,0.72); }

table tbody tr {
  border-bottom: 1px solid rgba(255,215,0,0.08);
  transition: var(--transition);
}

table tbody tr:hover { background: rgba(255,215,0,0.04); }

table tbody td {
  padding: 14px 22px;
  color: var(--text-secondary);
  border-right: 1px solid rgba(255,215,0,0.07);
}

table tbody td:last-child { border-right: none; }
table tbody td strong { color: var(--text-primary); }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg,
    rgba(10,34,24,0.80) 0%,
    rgba(20,70,35,0.60) 50%,
    rgba(0,0,0,0.80) 100%);
  border: 1px solid rgba(255,215,0,0.30);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--glow-card), 0 0 60px rgba(255,215,0,0.05);
  margin: 0;
}

.cta-band h2 { margin-bottom: 14px; }

.cta-band p {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  padding: 80px 0 56px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: 14px; }

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ─── TWO-COLUMN ─────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ─── TOOLS GRID (Responsible Gambling) ─────────────────── */
.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.rg-tool {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--glow-card);
  transition: var(--transition);
}

.rg-tool:hover {
  border-color: rgba(255,215,0,0.45);
  transform: translateY(-3px);
}

.rg-tool-icon { font-size: 1.7rem; margin-bottom: 12px; display: block; }
.rg-tool h3   { font-size: 1.05rem; margin-bottom: 8px; }
.rg-tool p    { font-size: 0.88rem; margin: 0; }

/* ─── WARNING LIST ───────────────────────────────────────── */
.warning-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,120,0,0.05);
  border: 1px solid rgba(255,120,0,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.warning-icon { color: #ff9500; flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

/* ─── COOKIE TYPES ───────────────────────────────────────── */
.cookie-types { display: flex; flex-direction: column; gap: 20px; }

.cookie-type {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--glow-card);
}

.cookie-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.cookie-badge.always {
  background: rgba(0,210,110,0.10);
  color: #00d26a;
  border: 1px solid rgba(0,210,110,0.25);
}

.cookie-badge.consent {
  background: rgba(255,215,0,0.08);
  color: var(--amber);
  border: 1px solid rgba(255,215,0,0.25);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: rgba(0,0,0,0.97);
  border-top: 1px solid rgba(255,215,0,0.18);
  padding: 60px 0 28px;
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand .site-logo {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(184,212,188,0.65);
  line-height: 1.65;
}

.footer-col h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(184,212,188,0.70);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,215,0,0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(184,212,188,0.45); margin: 0; }

.footer-disclaimer {
  font-size: 0.74rem;
  color: rgba(184,212,188,0.38);
  line-height: 1.55;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,215,0,0.05);
}

/* ─── BANNER GRID ────────────────────────────────────────── */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.banner-grid a {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--glow-card);
  transition: var(--transition);
  aspect-ratio: 4 / 3;       /* единое соотношение для всех 4 банеров */
  background: #050f08;
}

.banner-grid a:hover {
  border-color: rgba(255,215,0,0.52);
  box-shadow: 0 0 28px rgba(255,215,0,0.18), 0 8px 32px rgba(0,0,0,0.65);
  transform: translateY(-3px);
}

.banner-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* заполняет ячейку без пустых полос */
  object-position: center top; /* сохраняет верхнюю часть (лицо/текст) */
  display: block;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .footer-inner     { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bonus-grid       { grid-template-columns: 1fr 1fr; }
  .rg-tools-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section           { padding: 56px 0; }
  .games-grid       { grid-template-columns: 1fr; }
  .two-col          { grid-template-columns: 1fr; gap: 28px; }
  .bonus-grid       { grid-template-columns: 1fr; }
  .rg-tools-grid    { grid-template-columns: 1fr; }
  .cta-band         { padding: 40px 24px; }
  .info-block       { padding: 28px 20px; }
  .highlight-box    { padding: 24px 20px; }
  .banner-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header-inner     { flex-wrap: wrap; }
  .header-cta .btn  { padding: 10px 16px; font-size: 0.82rem; }
  .footer-inner     { grid-template-columns: 1fr; }
  .hero-title       { font-size: 2rem; }
  h2                { font-size: 1.45rem; }
  .cta-band         { padding: 32px 18px; }
}
