/* =============================================
   aussieres0rts - Main Stylesheet
   Premium Casino Aggregator | Portugal
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --scarlet: #cc0000;
  --scarlet-bright: #ff1a1a;
  --scarlet-dark: #8b0000;
  --gold: #ffd700;
  --gold-dark: #b8860b;
  --black-deep: #0a0505;
  --black-card: #150808;
  --black-panel: #1e0e0e;
  --black-surface: #2a1010;
  --white: #ffffff;
  --white-soft: #f5f0f0;
  --gray-light: #d4c4c4;
  --gray-mid: #9a8585;
  --neon-red: #ff2222;
  --neon-glow: 0 0 10px #ff2222, 0 0 20px #cc0000, 0 0 40px #8b0000;
  --neon-glow-sm: 0 0 6px #ff2222, 0 0 12px #cc0000;
  --gold-glow: 0 0 8px #ffd700, 0 0 16px #b8860b;
  --card-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(204,0,0,0.2);
  --card-hover-shadow: 0 16px 48px rgba(0,0,0,0.8), 0 4px 16px rgba(255,26,26,0.4);
  --border-glow: 1px solid rgba(204, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black-deep);
  color: var(--white-soft);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  color: var(--scarlet-bright);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================
   AGE WARNING BAR (Top)
   ============================================= */
.age-warning-bar {
  background: linear-gradient(90deg, #1a0000, #2d0000, #1a0000);
  border-bottom: 1px solid rgba(204, 0, 0, 0.5);
  padding: 6px 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

.age-warning-bar span {
  color: var(--scarlet-bright);
  font-weight: 700;
  margin-right: 4px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.4);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--scarlet-dark), var(--scarlet));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--neon-glow-sm);
  border: 1px solid rgba(255, 68, 68, 0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-title span {
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow-sm);
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--gray-light);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(204, 0, 0, 0.15);
  text-shadow: var(--neon-glow-sm);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--scarlet-bright);
  box-shadow: var(--neon-glow-sm);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--scarlet-dark), var(--scarlet)) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.4) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--scarlet), var(--scarlet-bright)) !important;
  box-shadow: var(--neon-glow) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-soft);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   TRUST BADGES BAR
   ============================================= */
.trust-bar {
  background: linear-gradient(180deg, #150505, #1a0808);
  border-bottom: 1px solid rgba(204, 0, 0, 0.2);
  padding: 10px 0;
  overflow: hidden;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(204, 0, 0, 0.1);
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--gray-light);
  font-weight: 500;
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(204, 0, 0, 0.2);
  border-color: var(--scarlet);
  color: var(--white);
}

.trust-badge .checkmark {
  color: var(--scarlet-bright);
  font-size: 0.85rem;
  text-shadow: var(--neon-glow-sm);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(204, 0, 0, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 40%),
    linear-gradient(135deg, #0a0505 0%, #150808 40%, #1e0a0a 70%, #0a0505 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(204, 0, 0, 0.03) 40px,
      rgba(204, 0, 0, 0.03) 80px
    );
  pointer-events: none;
}

.hero-cards-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background:
    radial-gradient(ellipse at center, rgba(204, 0, 0, 0.15) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid rgba(204, 0, 0, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--scarlet-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: var(--neon-glow-sm);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 620px;
}

.hero-title .neon-text {
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow);
}

.hero-title .gold-text {
  color: var(--gold);
  text-shadow: var(--gold-glow);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow-sm);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--scarlet-dark) 0%, var(--scarlet) 50%, #e60000 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-glow), inset 0 1px 0 rgba(255,255,255,0.1);
  color: var(--white);
  background: linear-gradient(135deg, var(--scarlet) 0%, var(--scarlet-bright) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--scarlet);
  color: var(--scarlet-bright);
  box-shadow: var(--neon-glow-sm);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black-deep);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  color: var(--black-deep);
}

.btn-visit {
  background: linear-gradient(135deg, #cc3300, #ff4400);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(204, 51, 0, 0.4);
}

.btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 68, 0, 0.6);
  color: var(--white);
}

/* =============================================
   SECTIONS GENERAL
   ============================================= */
.section-wrap {
  padding: 80px 0;
}

.section-wrap.bg-dark {
  background: var(--black-panel);
}

.section-wrap.bg-darker {
  background: var(--black-deep);
}

.section-wrap.bg-surface {
  background: var(--black-surface);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow-sm);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.section-title .highlight {
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow-sm);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-mid);
  max-width: 600px;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* Decorative separator */
.separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 32px;
}

.separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,0,0,0.5), transparent);
}

.separator-icon {
  color: var(--scarlet-bright);
  font-size: 1.2rem;
  text-shadow: var(--neon-glow-sm);
}

/* =============================================
   CASINO RANKING CARDS
   ============================================= */
.ranking-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(139, 0, 0, 0.12) 0%, transparent 50%),
    var(--black-deep);
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casino-card {
  position: relative;
  background: linear-gradient(135deg, #1e0e0e, #2a1212, #1e0e0e);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(204,0,0,0.06), transparent 60%);
  pointer-events: none;
}

.casino-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,0,0,0.6), transparent);
  border-radius: 16px 16px 0 0;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
  border-color: rgba(204, 0, 0, 0.5);
}

.casino-card.top-pick {
  border-color: rgba(255, 26, 26, 0.5);
  box-shadow: var(--card-shadow), 0 0 30px rgba(204, 0, 0, 0.15);
}

/* Rank Badge */
.rank-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--scarlet-dark), var(--scarlet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  box-shadow: var(--neon-glow-sm);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rank-badge.gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black-deep);
  box-shadow: var(--gold-glow);
}

/* Casino Logo Area */
.casino-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 180px;
  width: 180px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: var(--transition);
  flex-shrink: 0;
}

.casino-card:hover .casino-logo-area {
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 16px rgba(204,0,0,0.2);
  border-color: rgba(204,0,0,0.3);
}

.casino-logo {
  height: 64px;
  max-width: 160px;
  width: 100%;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
  display: block;
}

.casino-card:hover .casino-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

/* Casino Info */
.casino-info {
  flex: 1;
}

.casino-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.casino-bonus {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255,215,0,0.3);
  margin-bottom: 10px;
}

.casino-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(204, 0, 0, 0.12);
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.73rem;
  color: var(--gray-light);
  font-weight: 500;
  transition: var(--transition);
}

.feature-tag:hover {
  border-color: var(--scarlet);
  color: var(--white);
  background: rgba(204, 0, 0, 0.2);
}

/* Rating */
.casino-rating {
  text-align: center;
  min-width: 90px;
  flex-shrink: 0;
}

.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow-sm);
  line-height: 1;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 4px 0;
}

.rating-stars span {
  color: var(--gold);
  font-size: 0.85rem;
  text-shadow: var(--gold-glow);
}

.rating-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-mid);
  font-weight: 600;
}

/* Casino CTA */
.casino-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.casino-disclaimer {
  font-size: 0.65rem;
  color: var(--gray-mid);
  text-align: center;
  max-width: 100px;
}

/* =============================================
   HOW WE REVIEW SECTION
   ============================================= */
.review-criteria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.criteria-card {
  background: linear-gradient(135deg, #1e0e0e, #2a1212);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.criteria-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--scarlet), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}

.criteria-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 0, 0, 0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 20px rgba(204,0,0,0.1);
}

.criteria-card:hover::before {
  transform: scaleX(1);
}

.criteria-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(204,0,0,0.4));
}

.criteria-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.criteria-desc {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* =============================================
   BONUS TYPES SECTION
   ============================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.bonus-card {
  background: linear-gradient(135deg, #200e0e, #2d1515);
  border: 1px solid rgba(204, 0, 0, 0.15);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.bonus-card:hover {
  border-color: rgba(204, 0, 0, 0.4);
  transform: translateX(4px);
  box-shadow: 4px 0 20px rgba(204,0,0,0.15);
}

.bonus-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(204,0,0,0.3));
}

.bonus-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.bonus-info p {
  font-size: 0.78rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* =============================================
   GUIDES / FAQ SECTION
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #1e0e0e, #2a1212);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white-soft);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--scarlet-bright);
}

.faq-toggle {
  color: var(--scarlet-bright);
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
  text-shadow: var(--neon-glow-sm);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
  border-top: 1px solid rgba(204, 0, 0, 0.15);
  padding-top: 14px;
}

/* =============================================
   18+ DISCLAIMER BLOCK
   ============================================= */
.disclaimer-section {
  background: linear-gradient(135deg, #0f0505, #180808);
  border-top: 1px solid rgba(204, 0, 0, 0.3);
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
  padding: 40px 0;
}

.disclaimer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(204, 0, 0, 0.15);
  border: 2px solid var(--scarlet);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 20px;
  box-shadow: var(--neon-glow-sm);
}

.disclaimer-badge .age {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow-sm);
}

.disclaimer-badge .text {
  font-size: 0.8rem;
  color: var(--white-soft);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.disclaimer-text {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 20px;
}

.disclaimer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.disclaimer-links a {
  font-size: 0.8rem;
  color: var(--scarlet-bright);
  text-decoration: underline;
  text-decoration-color: rgba(255, 26, 26, 0.3);
  transition: var(--transition);
}

.disclaimer-links a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(180deg, #0a0505, #050202);
  border-top: 1px solid rgba(204, 0, 0, 0.3);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--scarlet);
  box-shadow: var(--neon-glow-sm);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  font-size: 0.83rem;
  color: var(--gray-mid);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a:hover {
  color: var(--scarlet-bright);
  padding-left: 4px;
}

.footer-links li a::before {
  content: '›';
  color: var(--scarlet);
  opacity: 0;
  transition: var(--transition);
}

.footer-links li a:hover::before {
  opacity: 1;
}

/* Regulators Section */
.footer-regulators {
  border-top: 1px solid rgba(204, 0, 0, 0.2);
  padding: 32px 0;
  margin-bottom: 24px;
}

.footer-reg-title {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

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

.regulator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  min-width: 120px;
}

.regulator-item:hover {
  background: rgba(204, 0, 0, 0.08);
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-2px);
}

.regulator-item img {
  height: 48px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.05);
  transition: var(--transition);
  border-radius: 4px;
}

.regulator-item:hover img {
  filter: grayscale(0) brightness(1.15);
}

/* Логотипы на тёмном/цветном фоне — без изменений */
.regulator-item--dark img {
  filter: brightness(1.1);
  background: transparent;
}

/* Логотип BeGambleAware — белый текст на своём фоне */
.regulator-item--bga img {
  filter: none;
  border-radius: 6px;
  padding: 2px 6px;
}

.regulator-item:hover.regulator-item--dark img,
.regulator-item:hover.regulator-item--bga img {
  filter: brightness(1.1);
}

.regulator-name {
  font-size: 0.65rem;
  color: var(--gray-mid);
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-text {
  font-size: 0.77rem;
  color: var(--gray-mid);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.77rem;
  color: var(--gray-mid);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--scarlet-bright);
}

/* =============================================
   AGE VERIFICATION POPUP
   ============================================= */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.age-popup {
  background: linear-gradient(135deg, #150808 0%, #200e0e 50%, #2a1010 100%);
  border: 1px solid rgba(204, 0, 0, 0.5);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(204, 0, 0, 0.3), var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.age-popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--scarlet-bright), transparent);
  box-shadow: var(--neon-glow-sm);
}

.age-popup-logo {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(204,0,0,0.5));
}

.age-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.age-popup-brand {
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow-sm);
}

.age-popup-subtitle {
  font-size: 0.875rem;
  color: var(--gray-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}

.age-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--scarlet-bright);
  text-shadow: var(--neon-glow);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.age-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}

.age-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.age-btn-yes {
  background: linear-gradient(135deg, var(--scarlet-dark), var(--scarlet));
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(204,0,0,0.4);
  font-family: 'Inter', sans-serif;
}

.age-btn-yes:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--scarlet), var(--scarlet-bright));
}

.age-btn-no {
  background: rgba(255,255,255,0.06);
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.age-btn-no:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.age-popup-disclaimer {
  font-size: 0.72rem;
  color: var(--gray-mid);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: linear-gradient(135deg, #150808, #200e0e);
  border-top: 1px solid rgba(204, 0, 0, 0.4);
  padding: 16px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--gray-light);
  min-width: 200px;
}

.cookie-text a {
  color: var(--scarlet-bright);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--scarlet-dark), var(--scarlet));
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.cookie-btn-accept:hover {
  box-shadow: var(--neon-glow-sm);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.83rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.cookie-btn-decline:hover {
  color: var(--white-soft);
  border-color: rgba(255,255,255,0.3);
}

/* =============================================
   INNER PAGES (Terms, About, etc.)
   ============================================= */
.page-hero {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(139, 0, 0, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #0a0505, #1a0808, #0a0505);
  padding: 80px 0;
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
}

.page-hero-content {
  max-width: 800px;
}

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}

.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin: 40px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(204, 0, 0, 0.2);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white-soft);
  margin: 24px 0 8px;
}

.page-content p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.page-content ul, .page-content ol {
  margin: 14px 0 14px 24px;
}

.page-content li {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 6px;
}

.page-content a {
  color: var(--scarlet-bright);
  text-decoration: underline;
  text-decoration-color: rgba(255,26,26,0.3);
}

.page-content a:hover {
  color: var(--gold);
}

.info-box {
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-left: 3px solid var(--scarlet-bright);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
}

.info-box p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--white-soft);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, #1e0e0e, #2a1212);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 14px;
  padding: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(204, 0, 0, 0.15);
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(204, 0, 0, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(204, 0, 0, 0.2);
}

.contact-details h4 {
  font-size: 0.85rem;
  color: var(--gray-mid);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details p, .contact-details a {
  font-size: 0.9rem;
  color: var(--white-soft);
  text-decoration: none;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--scarlet-bright);
}

.contact-form-card {
  background: linear-gradient(135deg, #1e0e0e, #2a1212);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 14px;
  padding: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-mid);
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white-soft);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--scarlet);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* =============================================
   RESPONSIBLE GAMING PAGE
   ============================================= */
.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.rg-tool-card {
  background: linear-gradient(135deg, #1e0e0e, #2a1212);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.rg-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: rgba(204, 0, 0, 0.4);
}

.rg-tool-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.rg-tool-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.rg-tool-desc {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.help-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.help-resource {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.help-resource:hover {
  border-color: var(--scarlet);
  transform: translateY(-2px);
}

.help-resource img {
  height: 36px;
  object-fit: contain;
  filter: brightness(0.9);
  margin-bottom: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.help-resource .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-soft);
  margin-bottom: 4px;
}

.help-resource .desc {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .casino-card {
    grid-template-columns: auto 1fr auto;
  }

  .casino-logo-area {
    min-width: 150px;
    width: 150px;
  }

  .casino-logo {
    height: 56px;
    max-width: 140px;
  }

  .casino-cta {
    display: none;
  }

  .casino-card-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: -10px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 5, 5, 0.98);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid rgba(204, 0, 0, 0.3);
    border-bottom: 1px solid rgba(204, 0, 0, 0.3);
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .trust-bar-inner {
    gap: 6px;
  }

  .trust-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero-cards-bg {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .casino-card {
    grid-template-columns: auto 1fr;
    padding: 20px;
  }

  .casino-logo-area {
    min-width: 130px;
    width: 130px;
    padding: 12px 14px;
  }

  .casino-logo {
    height: 52px;
    max-width: 130px;
  }

  .casino-rating {
    display: none;
  }

  .casino-card-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(204,0,0,0.15);
  }

  .casino-card-actions .rating-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .age-popup {
    padding: 32px 24px;
  }

  .age-number {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .age-buttons {
    flex-direction: column;
  }

  .regulators-logos {
    gap: 16px;
  }

  .section-wrap {
    padding: 52px 0;
  }
}
