/* ============================================================
   FieryPlay Casino – Main Stylesheet
   Theme: Classic Fiery Casino – Burgundy & Gold
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-main:        #0d0000;
  --bg-card:        rgba(60, 0, 0, 0.7);
  --accent-red:     #8b0000;
  --accent-gold:    #c8a84b;
  --cta-red:        #e63946;
  --text-light:     #f5e6c8;
  --text-muted:     #b8997a;
  --border-gold:    1px solid #c8a84b;
  --border-gold-2:  2px solid #c8a84b;
  --radius-card:    12px;
  --radius-pill:    50px;
  --shadow-glow:    0 0 18px rgba(200, 168, 75, 0.35);
  --shadow-red:     0 0 22px rgba(139, 0, 0, 0.6);
  --font-heading:   Georgia, 'Times New Roman', serif;
  --font-body:      Arial, Helvetica, sans-serif;
  --transition:     0.25s ease;
  --max-width:      1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #f0d080;
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0.5rem auto 2rem;
  border: none;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #c8a84b 0%, #f0d080 50%, #c8a84b 100%);
  color: var(--bg-main);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(200, 168, 75, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(200, 168, 75, 0.65);
  filter: brightness(1.1);
  color: var(--bg-main);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  border: var(--border-gold);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background var(--transition), color var(--transition);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(200, 168, 75, 0.15);
  color: #f0d080;
}

.btn-red {
  display: inline-block;
  background: linear-gradient(135deg, #c0392b, #e63946);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: filter var(--transition), transform var(--transition);
}

.btn-red:hover,
.btn-red:focus-visible {
  filter: brightness(1.15);
  transform: translateY(-1px);
  color: #fff;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-main);
  border-bottom: 2px solid var(--accent-gold);
  padding: 0 20px;
  transition: box-shadow var(--transition);
}

#header.scrolled {
  box-shadow: 0 4px 24px rgba(200, 168, 75, 0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}

.site-logo .logo-fiery {
  color: var(--cta-red);
}

.site-logo .logo-play {
  color: var(--accent-gold);
}

/* Desktop nav */
.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.desktop-nav a {
  color: var(--text-light);
  font-size: 0.82rem;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.desktop-nav a:hover {
  color: var(--accent-gold);
  background: rgba(200, 168, 75, 0.1);
}

/* Header actions */
.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-badge {
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.header-actions .btn-ghost {
  padding: 7px 18px;
  font-size: 0.85rem;
}

.header-actions .btn-gold {
  padding: 7px 18px;
  font-size: 0.85rem;
}

/* Hamburger */
.menu-btn {
  display: none;
  background: none;
  border: var(--border-gold);
  color: var(--accent-gold);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- Mobile Nav Drawer ---------- */
#mobileNav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

#mobileNav.open {
  display: flex;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.mobile-nav-panel {
  position: relative;
  z-index: 1;
  background: #1a0000;
  border-right: var(--border-gold-2);
  width: min(320px, 85vw);
  height: 100%;
  overflow-y: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 1.6rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 16px;
  padding: 4px 8px;
}

.mobile-nav-panel a {
  display: block;
  color: var(--text-light);
  padding: 12px 10px;
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
  font-size: 1rem;
  border-radius: 6px;
}

.mobile-nav-panel a:hover {
  background: rgba(200, 168, 75, 0.1);
  color: var(--accent-gold);
}

.mobile-nav-panel .mobile-action-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/Fieryplay_Hero_Banner.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 40px 36px;
  max-width: 520px;
  margin-left: clamp(20px, 5vw, 80px);
  background: rgba(13, 0, 0, 0.62);
  border: var(--border-gold);
  border-radius: var(--radius-card);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(200, 168, 75, 0.15);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent-gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* ============================================================
   SEARCH & CATEGORY BLOCK
   ============================================================ */
.search-block {
  background: rgba(13, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 24px 20px;
}

.search-block .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.search-input {
  flex: 1;
  min-width: 200px;
  background: rgba(60, 0, 0, 0.5);
  border: var(--border-gold);
  color: var(--text-light);
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  border-color: #f0d080;
  box-shadow: 0 0 10px rgba(200, 168, 75, 0.3);
}

.search-btn {
  padding: 11px 26px;
}

.dropdown-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dropdown-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 14px;
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: var(--radius-pill);
  transition: border-color var(--transition), color var(--transition);
}

.dropdown-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Category chips */
.category-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-btn {
  background: rgba(60, 0, 0, 0.6);
  color: var(--text-light);
  border: 1px solid rgba(200, 168, 75, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
  background: rgba(139, 0, 0, 0.75);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.promo-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.promo-chip {
  background: linear-gradient(135deg, rgba(139,0,0,0.7), rgba(60,0,0,0.7));
  color: var(--accent-gold);
  border: var(--border-gold);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: filter var(--transition), transform var(--transition);
}

.promo-chip:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
  color: #f0d080;
}

/* ============================================================
   TOP GAMES SECTION
   ============================================================ */
#top-spiele {
  padding: 60px 20px;
}

.slots-img-link {
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: var(--border-gold);
  transition: box-shadow var(--transition);
}

.slots-img-link:hover {
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
}

.slots-img-link img {
  width: 100%;
  border-radius: var(--radius-card);
}

/* ============================================================
   TEXT BLOCKS
   ============================================================ */
.text-block {
  padding: 60px 20px;
  background: rgba(13, 0, 0, 0.6);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}

.text-block .container {
  max-width: 860px;
}

.text-block p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.text-block .btn-center {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================
   WINNERS STRIP
   ============================================================ */
#winners {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a0000 0%, #0d0000 100%);
  border-top: var(--border-gold-2);
  border-bottom: var(--border-gold-2);
}

.winners-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.winners-content {
  flex: 1;
}

.winners-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.winners-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.winner-card {
  display: block;
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-card);
  padding: 14px 18px;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.winner-card::before {
  content: '🏆';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.winner-card:hover,
.winner-card.highlighted {
  background: rgba(139, 0, 0, 0.7);
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
  color: #fff;
}

.winner-card:hover::before,
.winner-card.highlighted::before {
  opacity: 1;
}

.winners-mascot {
  flex-shrink: 0;
  width: 220px;
  align-self: center;
}

.winners-mascot img {
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(200, 168, 75, 0.4));
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/Fieryplay_Bonus_Gift.png');
  background-size: cover;
  background-position: center;
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 0, 0, 0.72);
}

.promo-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 640px;
}

.promo-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.promo-banner-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.promo-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 2;
}

.arrow-btn {
  pointer-events: all;
  background: rgba(200, 168, 75, 0.2);
  border: var(--border-gold);
  color: var(--accent-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background var(--transition);
}

.arrow-btn:hover {
  background: rgba(200, 168, 75, 0.4);
  color: var(--accent-gold);
}

/* ============================================================
   TWO-COLUMN TEXT BLOCK
   ============================================================ */
.two-col-block {
  padding: 60px 20px;
}

.two-col-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.two-col-inner h2 {
  grid-column: 1 / -1;
}

.two-col-inner p {
  color: var(--text-light);
  line-height: 1.8;
}

.feature-list {
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.75rem;
  top: 4px;
}

.two-col-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   JACKPOT CTA BLOCK
   ============================================================ */
.jackpot-cta {
  padding: 60px 20px;
  background: rgba(13, 0, 0, 0.7);
}

.jackpot-panel {
  background: var(--bg-card);
  border: var(--border-gold-2);
  border-radius: var(--radius-card);
  padding: 50px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-glow);
}

/* Ornamental corners */
.jackpot-panel::before,
.jackpot-panel::after {
  content: '❧';
  position: absolute;
  color: var(--accent-gold);
  font-size: 1.8rem;
  opacity: 0.5;
}

.jackpot-panel::before { top: 12px; left: 20px; }
.jackpot-panel::after  { bottom: 12px; right: 20px; transform: rotate(180deg); }

.jackpot-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.jackpot-panel p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ============================================================
   LONG SEO SECTION
   ============================================================ */
#bonus {
  padding: 70px 20px;
  background: repeating-linear-gradient(
    45deg,
    rgba(60,0,0,0.04) 0px,
    rgba(60,0,0,0.04) 1px,
    transparent 1px,
    transparent 12px
  ), var(--bg-main);
}

#bonus h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

#bonus h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--cta-red);
  margin: 2rem 0 0.75rem;
}

#bonus p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.casino-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2.5rem 0;
  color: var(--accent-gold);
  opacity: 0.5;
  font-size: 1.1rem;
}

.casino-separator::before,
.casino-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Casino Info Table */
.casino-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-card);
  border: var(--border-gold);
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.casino-table th,
.casino-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
}

.casino-table th {
  background: rgba(139, 0, 0, 0.5);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  white-space: nowrap;
}

.casino-table tbody th {
  width: 40%;
}

.casino-table td {
  background: rgba(60, 0, 0, 0.4);
  color: var(--text-light);
}

.casino-table tr:last-child th,
.casino-table tr:last-child td {
  border-bottom: none;
}

.casino-table tr:hover th,
.casino-table tr:hover td {
  background: rgba(139, 0, 0, 0.35);
}

/* Responsive table → cards on mobile */
@media (max-width: 600px) {
  .casino-table-wrap {
    border: none;
  }

  .casino-table,
  .casino-table tbody,
  .casino-table tr {
    display: block;
    width: 100%;
  }

  .casino-table thead {
    display: none;
  }

  .casino-table tr {
    display: flex;
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-card);
    margin-bottom: 10px;
    overflow: hidden;
  }

  .casino-table th {
    width: 45%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .casino-table td {
    flex: 1;
    padding: 12px 14px;
    font-size: 0.85rem;
    border-bottom: none;
    display: flex;
    align-items: center;
  }
}

.seo-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

/* Registration steps */
.register-steps {
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.2rem 0;
}

.register-steps li {
  counter-increment: step-counter;
  padding: 14px 18px 14px 52px;
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-card);
  color: var(--text-light);
  position: relative;
  line-height: 1.6;
}

.register-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #c8a84b, #f0d080);
  color: var(--bg-main);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 1.5rem 0;
}

.faq-item {
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-glow);
}

.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin: 0 0 0.6rem 0;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050000;
  border-top: var(--border-gold-2);
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-logo .logo-fiery { color: var(--cta-red); }
.footer-logo .logo-play  { color: var(--accent-gold); }

.footer-rg {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-contact {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--accent-gold);
}

/* Payment logos */
.payment-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.payment-logos img {
  height: 28px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0.9) saturate(0.7);
  transition: opacity var(--transition), filter var(--transition);
}

.payment-logos img:hover {
  opacity: 1;
  filter: brightness(1) saturate(1);
}

/* Legal links */
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent-gold);
  text-decoration-color: var(--accent-gold);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================================
   LEGAL PAGES – Breadcrumb & Content
   ============================================================ */
.breadcrumb {
  padding: 16px 20px;
  background: rgba(60, 0, 0, 0.3);
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
}

.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-inner a {
  color: var(--text-muted);
}

.breadcrumb-inner a:hover {
  color: var(--accent-gold);
}

.breadcrumb-sep {
  color: var(--accent-gold);
}

.breadcrumb-current {
  color: var(--accent-gold);
}

/* Legal content */
.legal-page {
  padding: 60px 20px 80px;
  min-height: 60vh;
}

.legal-page .container {
  max-width: 860px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cta-red);
  margin: 2.5rem 0 0.75rem;
}

.legal-page h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin: 1.5rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.legal-page ul li {
  list-style: disc;
  color: var(--text-light);
}

.legal-page .legal-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-card);
}

/* ============================================================
   RESPONSIVE – 768px
   ============================================================ */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .lang-badge {
    display: none;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-section {
    min-height: 420px;
  }

  .winners-inner {
    flex-direction: column;
  }

  .winners-mascot {
    width: 160px;
    align-self: center;
    order: -1;
  }

  .two-col-inner {
    grid-template-columns: 1fr;
  }

  .two-col-inner h2 {
    grid-column: 1;
  }

  .two-col-cta {
    grid-column: 1;
  }

  .jackpot-panel {
    padding: 40px 24px;
  }
}

/* ============================================================
   RESPONSIVE – 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-section {
    min-height: 340px;
  }

  .search-row {
    flex-direction: column;
  }

  .search-input {
    width: 100%;
  }

  .btn-gold,
  .btn-ghost {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .header-inner {
    height: 58px;
  }

  .promo-banner {
    min-height: 280px;
  }

  .casino-table th,
  .casino-table td {
    padding: 10px 12px;
  }
}
