/* ============================================================
   CASINO ONLINE EUROPEI — style.css
   Italian Gambling Luxury Theme
   Dark Navy · Gold Accents · Italian Flag Colors
   Fonts: Playfair Display (headings) + Nunito (body)
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  /* Core palette */
  --bg-dark:       #07091a;
  --bg-mid:        #0b0f24;
  --bg-card:       #0f1630;
  --bg-card-hover: #131a38;

  /* Italian flag */
  --green-it:  #009246;
  --green-dark:#006f34;
  --red-it:    #CE2B37;
  --red-dark:  #9b1f28;
  --white-it:  #ffffff;

  /* Gold */
  --gold:       #C9A840;
  --gold-light: #f5d060;
  --gold-dim:   #a07820;
  --gold-glow:  rgba(201, 168, 64, 0.18);

  /* Text */
  --text-h:   #f5f0e0;
  --text-p:   #c0c8dc;
  --text-mut: #6b7898;

  /* Borders / shadows */
  --border:        rgba(201, 168, 64, 0.22);
  --border-card:   rgba(201, 168, 64, 0.30);
  --border-subtle: rgba(255,255,255,0.06);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.55);
  --shadow-gold:   0 4px 24px rgba(201,168,64,0.20);
  --shadow-btn:    0 4px 20px rgba(201,168,64,0.35);

  /* Spacing */
  --container: 1140px;
  --gap:       clamp(16px, 3vw, 32px);
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito', 'Segoe UI', system-ui, sans-serif;

  /* Transitions */
  --trans: 0.25s ease;
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  background-color: var(--bg-dark);
  color: var(--text-p);
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover { color: var(--gold-light); }

ul, ol { list-style: none; }

/* === CONTAINER === */
.container {
  width: min(var(--container), 100% - 2 * var(--gap));
  margin-inline: auto;
}

/* === DECORATIVE BACKGROUND SUITS === */
.bg-casino-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.suit {
  position: absolute;
  font-size: clamp(80px, 12vw, 160px);
  opacity: 0.025;
  user-select: none;
  animation: floatSuit 20s ease-in-out infinite;
}
.suit-heart  { top:  8%; left:  3%; color: var(--red-it);   animation-delay: 0s;   font-size: 140px; }
.suit-club   { top: 55%; right: 2%; color: var(--green-it); animation-delay: -5s;  font-size: 120px; }
.suit-diamond{ bottom: 10%; left: 45%; color: var(--gold);   animation-delay: -10s; font-size: 160px; }
.suit-spade  { top: 30%; right: 25%; color: #fff;           animation-delay: -3s;  font-size: 100px; }
.suit-heart2 { bottom: 30%; left: 20%; color: var(--red-it); animation-delay: -7s;  font-size: 90px;  }
.suit-star   { top: 70%; right: 10%; color: var(--gold);    animation-delay: -12s; font-size: 80px;  }

@keyframes floatSuit {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(5deg); }
}

/* === ITALIAN FLAG BAR === */
.hero-flag-bar,
.footer-flag-bar {
  display: flex;
  height: 4px;
}
.flag-green { flex: 1; background: var(--green-it); }
.flag-white { flex: 1; background: #fff; }
.flag-red   { flex: 1; background: var(--red-it); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--trans), box-shadow var(--trans);
}
.site-header.scrolled {
  background: rgba(7, 9, 26, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 10px;
}

.site-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* Desktop-only nav */
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-p);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color var(--trans), background var(--trans);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.main-nav a:hover {
  color: var(--gold);
  background: var(--gold-glow);
}

/* Header CTA button */
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--green-it) 0%, #00b355 100%);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 18px rgba(0,146,70,0.35);
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
  margin-left: auto;
}
.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,146,70,0.50);
  filter: brightness(1.08);
}
.btn-header svg { flex-shrink: 0; }

@media (min-width: 768px) {
  .btn-header { margin-left: 0; }
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  z-index: 1;
  padding-top: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,146,70,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 50%, rgba(206,43,55,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0b0f24 0%, #07091a 100%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-block: clamp(24px, 5vw, 56px);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr 340px;
    gap: 48px;
  }
}

/* Hero badges */
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--text-p);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge--gold {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* H1 */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-h);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero intro */
.hero-intro {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-p);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 24px;
}

/* Author block */
.author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  width: fit-content;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  flex-shrink: 0;
}
.author-meta { display: flex; flex-direction: column; gap: 2px; }
.author-top-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.author-name { font-weight: 800; font-size: 0.92rem; color: var(--text-h); }
.verified-badge {
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--green-it);
  color: #fff;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.author-date {
  font-size: 0.75rem;
  color: var(--text-mut);
}

/* Hero visual (decorative cards + chips) */
.hero-visual {
  position: relative;
  height: 300px;
  display: none;
}
@media (min-width: 900px) {
  .hero-visual { display: block; }
}

.playing-card {
  position: absolute;
  width: 110px;
  height: 160px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  font-family: var(--font-display);
  color: #1a1a1a;
  font-weight: 900;
}
.card-ace {
  top: 20px;
  left: 30px;
  transform: rotate(-8deg);
  z-index: 2;
}
.card-king {
  top: 60px;
  left: 100px;
  transform: rotate(6deg);
  z-index: 1;
}
.card-corner-top { font-size: 14px; line-height: 1.1; }
.card-corner-bottom { font-size: 14px; line-height: 1.1; transform: rotate(180deg); align-self: flex-end; }
.card-center { font-size: 40px; text-align: center; }
.card-red { color: var(--red-it); }

.casino-chip {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px dashed rgba(255,255,255,0.5);
  animation: spinChip 8s linear infinite;
}
.chip-red   { background: radial-gradient(circle, #e8404f, #9b1f28); top: 200px; left: 10px; animation-duration: 9s; }
.chip-gold  { background: radial-gradient(circle, #f5d060, #a07820); top: 30px;  left: 200px; animation-duration: 7s; }
.chip-green { background: radial-gradient(circle, #00c86a, #005c30); top: 180px; left: 195px; animation-duration: 11s; }

@keyframes spinChip {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.dice-icon {
  position: absolute;
  font-size: 36px;
  top: 120px;
  left: 5px;
  animation: floatSuit 6s ease-in-out infinite;
}
.slot-icon {
  position: absolute;
  font-size: 40px;
  top: 230px;
  left: 120px;
  animation: floatSuit 8s ease-in-out infinite reverse;
}

/* === LISTING SECTION === */
.listing-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(28px, 5vw, 64px);
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text-h);
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-it), var(--gold), var(--red-it));
  border-radius: 2px;
  margin: 8px auto 0;
}
.section-heading {
  flex-direction: column;
  gap: 0;
}
.section-heading .heading-trophy { font-size: 1.5em; margin-bottom: 4px; }

.casino-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
}

/* === CASINO CARD === */
.casino-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--trans), border-color var(--trans);
}
.casino-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}
.casino-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  background: var(--bg-card-hover);
}

/* Featured card (rank 1) */
.casino-card--top {
  border-color: var(--gold);
  background: linear-gradient(135deg, #0f1630, #141d3a);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--gold), var(--shadow-gold);
}

/* Top ribbon */
.card-top-ribbon {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  color: #000;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 16px;
}

/* Card inner layout */
.card-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto auto;
  grid-template-rows: auto;
  align-items: center;
  gap: 16px 20px;
  padding: clamp(16px, 2.5vw, 24px) clamp(16px, 3vw, 28px);
}

/* === Mobile card layout === */
@media (max-width: 767px) {
  .card-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
  }
  .card-inner .card-rank-badge { grid-row: 1; grid-column: 1; }
  .card-inner .card-brand-block { grid-row: 1; grid-column: 2; }
  .card-inner .bonus-block { grid-row: 2; grid-column: 1 / -1; }
  .card-inner .features-list { grid-row: 3; grid-column: 1 / -1; }
  .card-inner .card-cta-block { grid-row: 4; grid-column: 1 / -1; }
}

/* === Tablet & Desktop card layout === */
@media (min-width: 768px) {
  .card-inner {
    grid-template-columns: 44px 200px 1fr 200px auto;
    align-items: center;
  }
  .card-inner .card-rank-badge { grid-column: 1; }
  .card-inner .card-brand-block { grid-column: 2; }
  .card-inner .bonus-block { grid-column: 3; }
  .card-inner .features-list { grid-column: 4; }
  .card-inner .card-cta-block { grid-column: 5; }
}

/* Rank badge */
.card-rank-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 10px;
}
.rank-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
}
.rank-label {
  font-size: 0.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Brand block */
.card-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand-logo {
  max-width: 110px;
  max-height: 44px;
  object-fit: contain;
  width: auto;
  height: auto;
}
.brand-details { display: flex; flex-direction: column; gap: 3px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-h);
  white-space: nowrap;
}
.star-row { display: flex; align-items: center; gap: 5px; }

/* Star rating using CSS clip */
.stars {
  font-size: 1rem;
  letter-spacing: 1px;
  background: linear-gradient(
    to right,
    var(--gold) var(--fill, 100%),
    rgba(255,255,255,0.18) var(--fill, 100%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rating-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
}

/* Bonus block */
.bonus-block { padding: 0 8px; }
.bonus-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.bonus-text {
  font-size: clamp(0.82rem, 1.2vw, 0.9rem);
  color: var(--text-p);
  line-height: 1.4;
}
.bonus-text strong { color: var(--text-h); font-weight: 800; }

/* Features list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 8px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-p);
  font-weight: 600;
}
.features-list .check-icon { color: var(--green-it); flex-shrink: 0; }

/* CTA block */
.card-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  min-width: 140px;
}

/* Play button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  background-size: 200% 100%;
  color: #000 !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 11px 22px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
  transition: transform var(--trans), box-shadow var(--trans), background-position 0.4s ease;
  -webkit-text-fill-color: #000;
}
.btn-play:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201,168,64,0.5);
  background-position: right center;
}
.btn-play:active { transform: translateY(0); }

.card-terms {
  font-size: 0.65rem;
  color: var(--text-mut);
  line-height: 1.3;
  text-align: center;
}
.card-disclaimer {
  font-size: 0.62rem;
  color: var(--text-mut);
  opacity: 0.75;
}

/* === CONTENT SECTION === */
.content-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(32px, 6vw, 80px);
  background:
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(201,168,64,0.04) 0%, transparent 60%),
    var(--bg-dark);
}

.content-wrap {
  max-width: 860px;
  margin-inline: auto;
}

/* Typography: headings */
.content-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text-h);
  margin: clamp(36px, 5vw, 56px) 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  line-height: 1.25;
  position: relative;
}
.content-wrap h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-it), var(--gold));
}

.content-wrap h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  color: var(--gold-light);
  margin: 28px 0 10px;
  line-height: 1.3;
}

.content-wrap h6 {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 400;
  color: var(--text-p);
  line-height: 1.75;
  margin: 14px 0;
}

/* Paragraphs */
.content-wrap p {
  color: var(--text-p);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* FAQ paragraph with id */
#faq {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text-h);
  margin: clamp(36px, 5vw, 56px) 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
#faq::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-it), var(--gold));
}

/* Lists in content */
.content-wrap ul {
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-wrap ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-p);
  line-height: 1.7;
}
.content-wrap ul li::before {
  content: '♦';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 0.7em;
}

.content-wrap ol {
  counter-reset: content-ol;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-wrap ol > li {
  position: relative;
  padding-left: 36px;
  color: var(--text-p);
  line-height: 1.7;
}
.content-wrap ol > li::before {
  counter-increment: content-ol;
  content: counter(content-ol);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}
/* Reset counter for nested ol > li that contain h3 */
.content-wrap ol > li > h3 {
  display: inline;
  margin: 0;
  font-size: inherit;
  color: var(--gold-light);
}

/* Table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.content-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.content-wrap table tr:first-child td {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #000;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 16px;
}
.content-wrap table tr:first-child td p { margin: 0; color: #000; }
.content-wrap table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-p);
  vertical-align: top;
}
.content-wrap table td p { margin: 0; }
.content-wrap table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.content-wrap table tr:last-child td { border-bottom: none; }

/* === FOOTER === */
.site-footer {
  position: relative;
  z-index: 1;
  background: #050711;
  border-top: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.footer-inner {
  padding-block: 40px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 40px;
  }
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-mut);
  max-width: 200px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: flex-start;
}
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-p);
  transition: color var(--trans);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--gold); }

.footer-responsible { max-width: 320px; }
.responsible-badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 12px;
}
.responsible-icon { font-size: 1.4rem; flex-shrink: 0; }
.responsible-badge strong {
  display: block;
  color: var(--text-h);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.responsible-badge p {
  font-size: 0.72rem;
  color: var(--text-mut);
  line-height: 1.5;
  margin: 0;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--red-it);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--red-it);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: 1 / -1;
}
.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--text-mut);
  line-height: 1.6;
}
.footer-copyright {
  font-size: 0.72rem;
  color: var(--text-mut);
  opacity: 0.7;
}

/* === DESKTOP-ONLY UTILITY === */
.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only {
    display: flex;
  }
}

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === SCROLL BEHAVIOR for anchors below sticky header === */
:target { scroll-margin-top: 80px; }

/* === SELECTION === */
::selection {
  background: var(--gold);
  color: #000;
}

/* === PRINT === */
@media print {
  .site-header,
  .hero-visual,
  .bg-casino-deco,
  .btn-header,
  .btn-play { display: none; }
  body { background: #fff; color: #000; }
  .content-wrap { max-width: 100%; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}