/* ============================================================
   NV CASINO — style.css
   Luxury Dark Casino Design | Germany Edition
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Rajdhani:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #8B6914;
  --bg-deep:     #050508;
  --bg-card:     #0D0D14;
  --bg-section:  #0A0A10;
  --surface:     #12121C;
  --surface2:    #1A1A28;
  --border:      rgba(201,168,76,0.18);
  --border-soft: rgba(255,255,255,0.06);
  --text-main:   #EAE6D8;
  --text-muted:  #8A8478;
  --text-accent: #C9A84C;
  --red:         #C0392B;
  --green:       #1E8C45;
  --radius:      6px;
  --radius-lg:   14px;
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Subtle noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ---------- Typography: Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-main);
  position: relative;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.2rem;
}

h1::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 0.6rem;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--text-main);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

h2::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6em;
  vertical-align: middle;
  margin-right: 0.5rem;
  opacity: 0.8;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

h3::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.6rem;
  margin-bottom: 2px;
}

h4 {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

h5, h6 {
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}

/* ---------- Typography: Body ---------- */
p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 1.3rem;
}

p:first-of-type::first-letter {
  font-size: 2.8em;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  float: left;
  line-height: 0.78;
  margin-right: 0.12em;
  margin-top: 0.1em;
}

/* Reset dropcap for specific contexts */
.cta-block p:first-of-type::first-letter,
.footer-disclaimer p:first-of-type::first-letter,
.slot-section p:first-of-type::first-letter,
nav p:first-of-type::first-letter {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  float: none;
  line-height: inherit;
  margin: 0;
}

strong, b {
  font-weight: 700;
  color: var(--gold-light);
}

em, i {
  font-style: italic;
  color: var(--text-main);
  opacity: 0.9;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
}

/* ---------- Lists ---------- */
ul, ol {
  margin: 1.2rem 0 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

ul li, ol li {
  position: relative;
  padding: 0.6rem 0.6rem 0.6rem 2rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.7;
  border-left: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 0 var(--radius) var(--radius) 0;
}

ul li::before {
  content: '♦';
  position: absolute;
  left: 0.5rem;
  top: 0.65rem;
  color: var(--gold);
  font-size: 0.6em;
}

ol {
  counter-reset: item;
}

ol li {
  counter-increment: item;
}

ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.8rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

ul li:hover, ol li:hover {
  border-left-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* ---------- Tables ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-card);
}

table thead {
  background: linear-gradient(135deg, #1a1308, #12120C);
}

table thead th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  border-bottom: 2px solid var(--gold-dark);
  white-space: nowrap;
}

table tbody tr {
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s;
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.025);
}

table tbody tr:hover {
  background: rgba(201,168,76,0.06);
}

table tbody td {
  padding: 0.85rem 1.2rem;
  color: var(--text-main);
  vertical-align: middle;
  white-space: nowrap;
}

table tbody td:first-child {
  font-weight: 600;
  color: var(--gold-light);
}

/* ---------- Blockquote ---------- */
blockquote {
  position: relative;
  margin: 2rem 0;
  padding: 1.5rem 1.8rem 1.5rem 3rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-main);
  box-shadow: var(--shadow-gold);
}

blockquote::before {
  content: '"';
  position: absolute;
  left: 0.7rem;
  top: -0.3rem;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}

/* ---------- Images in content ---------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--border);
}

figure {
  margin: 2rem 0;
  max-width: 100%;
}

figcaption {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-family: var(--font-heading);
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Buttons (global) ---------- */
.btn, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn:hover::before {
  opacity: 1;
}

/* Primary gold button */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0800;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  color: #000;
  text-decoration: none;
}

/* Outline gold button */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 0 var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Ghost button */
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
  border: 1px solid var(--border-soft);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border);
  color: var(--text-main);
  text-decoration: none;
}

/* ---------- hr ---------- */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem auto;
  opacity: 0.4;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 1px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: all 0.22s;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s;
}

.site-nav a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  text-decoration: none;
}

.site-nav a:hover::after {
  width: 60%;
}

.header-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(5,5,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--border-soft);
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--gold); text-decoration: none; }

.mobile-nav .btn {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 300px;
}

/* ---------- MAIN WRAPPER ---------- */
main {
  position: relative;
  z-index: 1;
}

/* ---------- CTA HERO BLOCK ---------- */
.cta-block {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #070710 0%, #0e0c1a 40%, #0d0b08 100%);
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 80% at 10% 90%, rgba(100,60,180,0.06) 0%, transparent 50%);
}

/* Decorative card suits */
.cta-block::after {
  content: '♠  ♦  ♣  ♥';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  font-size: 10rem;
  color: rgba(201,168,76,0.04);
  letter-spacing: 2rem;
  pointer-events: none;
  white-space: nowrap;
  font-family: Arial, sans-serif;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.cta-content {}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cta-badge::before {
  content: '●';
  font-size: 0.5em;
  color: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem;
}

.cta-title span {
  color: var(--gold);
  display: inline;
}

.cta-title::after {
  display: none;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(234,230,216,0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 50ch;
}

.cta-desc::first-letter {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  float: none;
  line-height: inherit;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Bonus card on right */
.cta-bonus-card {
  background: linear-gradient(145deg, var(--surface), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.cta-bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.bonus-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.bonus-sub {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.bonus-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0;
  border: none;
  margin: 0;
  border-radius: 0;
}

.bonus-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(30,140,69,0.2);
  border: 1px solid #1E8C45;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #4ade80;
  flex-shrink: 0;
  position: static;
}

.bonus-features li:hover {
  background: none;
  border: none;
}

.bonus-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ---------- Perks Strip ---------- */
.perks-strip {
  background: linear-gradient(135deg, #0c0c14, #0a0a10);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.perks-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
}

.perk-item {
  background: var(--bg-section);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: background 0.25s;
}

.perk-item:hover {
  background: rgba(201,168,76,0.04);
}

.perk-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
}

.perk-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.perk-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}

.perk-desc::first-letter { all: unset; }

/* ---------- CONTENT SECTION ---------- */
.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
}

.content-wrap {
  max-width: 860px;
  width: 100%;
}

/* ---------- SLOTS SECTION ---------- */
.slot-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-deep) 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.slot-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.slot-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.slot-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.slot-section-header h2 {
  border: none;
  margin-top: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.slot-section-header h2::before { display: none; }

.slot-section-header p {
  max-width: 55ch;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

.slot-section-header p::first-letter { all: unset; }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

.slot-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  aspect-ratio: 3/4;
}

.slot-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.2);
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  display: block;
  transition: filter 0.3s;
}

/* Placeholder while no real image */
.slot-card .slot-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.5rem;
  gap: 0.4rem;
}

.slot-card .slot-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.slot-card:hover img,
.slot-card:hover .slot-placeholder {
  filter: brightness(0.45);
}

.slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
  padding: 1rem;
}

.slot-card:hover .slot-overlay {
  opacity: 1;
}

.slot-overlay .btn {
  width: 100%;
  padding: 0.55rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.slot-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.6rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  transition: opacity 0.3s;
}

.slot-card:hover .slot-name {
  opacity: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--bg-card) 0%, #020204 100%);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 2rem;
}

.footer-brand .site-logo {
  margin-bottom: 1rem;
}

.footer-disclaimer {
  max-width: 680px;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  max-width: none;
}

.footer-disclaimer p::first-letter { all: unset; }

.responsible-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e07070;
  margin-bottom: 1rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.footer-links-col a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.footer-links-col a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: 0.06em;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(192,57,43,0.5);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: #e07070;
  letter-spacing: 0;
}

.footer-trust {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0.3rem 0.6rem;
  opacity: 0.7;
}

/* ========== RESPONSIVE ========== */

/* Large tablet */
@media (max-width: 1024px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .perks-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2rem;
  }

  .cta-block::after { display: none; }

  .cta-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .cta-buttons { gap: 0.75rem; }
  .cta-buttons .btn { flex: 1; min-width: 140px; }

  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }

  .footer-links-col a {
    border-bottom: none;
  }

  table {
    font-size: 0.85rem;
  }

  table thead th, table tbody td {
    padding: 0.7rem 0.9rem;
  }

  p { max-width: 100%; }
}

/* Mobile */
@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .perks-inner {
    grid-template-columns: 1fr;
  }

  .cta-bonus-card {
    padding: 1.8rem 1.4rem;
  }

  .bonus-amount { font-size: 2.5rem; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.82rem;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-tagline { display: none; }
}