/* ============================================
   GoldenCaBet — Brazilian Luxury Casino Theme
   Deep Black + Pure Gold + Emerald
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --bg: #060604;
  --primary: #d4a017;
  --secondary: #047857;
  --accent: #fbbf24;
  --text: #f5f0e0;
  --muted: #8a8060;
  --surface: #12100a;
  --gold-gradient: linear-gradient(135deg, #d4a017, #fbbf24, #d4a017);
  --gold-gradient-text: linear-gradient(135deg, #d4a017 0%, #fbbf24 50%, #d4a017 100%);
  --emerald-glow: 0 0 20px rgba(4, 120, 87, 0.4);
  --gold-glow: 0 0 20px rgba(212, 160, 23, 0.3);
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
  opacity: 0.9;
}

/* --- Gold Text Gradient --- */
.gold-text {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emerald-text {
  color: var(--secondary);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

/* --- Gold Divider --- */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 40px 0;
}

/* ==================
   NAVIGATION
   ================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 6, 4, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 6, 4, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(212, 160, 23, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 70px;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.navbar-brand span {
  -webkit-text-fill-color: var(--secondary);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--secondary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold-gradient);
  color: var(--bg) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all var(--transition);
  -webkit-text-fill-color: var(--bg) !important;
}

.nav-cta:hover {
  box-shadow: 0 0 25px rgba(212, 160, 23, 0.5), var(--emerald-glow);
  transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================
   HERO SECTION
   ================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(4, 120, 87, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(212, 160, 23, 0.05) 0%, transparent 40%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 500;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
}

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

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Floating gold particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1.5s; }
.particle:nth-child(3) { left: 35%; animation-delay: 3s; }
.particle:nth-child(4) { left: 50%; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 65%; animation-delay: 2s; }
.particle:nth-child(6) { left: 75%; animation-delay: 4s; }
.particle:nth-child(7) { left: 85%; animation-delay: 1s; }
.particle:nth-child(8) { left: 90%; animation-delay: 3.5s; }

@keyframes float-particle {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

/* ==================
   BUTTONS
   ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-gold:hover {
  color: var(--bg);
  box-shadow: 0 6px 25px rgba(212, 160, 23, 0.5), var(--emerald-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(212, 160, 23, 0.1);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--secondary);
  color: var(--text);
}

.btn-emerald:hover {
  background: #059669;
  box-shadow: var(--emerald-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

/* ==================
   CASINO CARDS
   ================== */
.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.casino-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.1);
  transition: all var(--transition);
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.casino-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 120, 87, 0.3);
  box-shadow: var(--emerald-glow), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.casino-card-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 30px;
}

.casino-rank {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-rank .rank-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casino-rank.rank-1::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid var(--primary);
}

.casino-rank.rank-1::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.casino-info {
  flex: 1;
}

.casino-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.casino-bonus {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.casino-feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--muted);
}

.casino-feature .check {
  color: var(--secondary);
  font-weight: 700;
}

.casino-rating {
  text-align: center;
}

.casino-rating .stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 5px;
}

.casino-rating .star {
  width: 18px;
  height: 18px;
  background: var(--gold-gradient);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.casino-rating .star.half {
  background: linear-gradient(90deg, var(--primary) 50%, rgba(212, 160, 23, 0.2) 50%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.casino-rating .score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.casino-rating .score-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.casino-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(251, 191, 36, 0.1));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.vip-badge .crown {
  display: inline-block;
  width: 12px;
  height: 8px;
  position: relative;
}

.vip-badge .crown::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 3px;
  background: var(--primary);
  border-radius: 1px;
}

.vip-badge .crown::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid var(--primary);
}

/* ==================
   FEATURES / WHY US
   ================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(212, 160, 23, 0.08);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.feature-card:hover {
  border-color: rgba(4, 120, 87, 0.2);
  box-shadow: var(--emerald-glow);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 50%;
  font-size: 1.8rem;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ==================
   PIX SECTION
   ================== */
.pix-section {
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.08), rgba(212, 160, 23, 0.05));
  border-top: 1px solid rgba(4, 120, 87, 0.2);
  border-bottom: 1px solid rgba(4, 120, 87, 0.2);
}

.pix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pix-content h2 {
  margin-bottom: 20px;
}

.pix-content p {
  color: var(--muted);
  margin-bottom: 25px;
}

.pix-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.pix-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pix-feature-item .pix-check {
  width: 24px;
  height: 24px;
  background: rgba(4, 120, 87, 0.2);
  border: 1px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pix-feature-item .pix-check::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

.pix-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pix-card-display {
  position: relative;
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, var(--surface), #1a1710);
  border: 2px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pix-card-display .pix-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.pix-card-display .pix-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
}

.pix-card-display .pix-status {
  padding: 5px 15px;
  background: rgba(4, 120, 87, 0.2);
  border: 1px solid var(--secondary);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ==================
   ARTICLES / BLOG
   ================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.article-card {
  background: var(--surface);
  border: 1px solid rgba(212, 160, 23, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.article-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--gold-gradient);
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 120, 87, 0.2);
  box-shadow: var(--emerald-glow);
}

.article-card-body {
  padding: 25px 30px 30px;
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(4, 120, 87, 0.15);
  border: 1px solid rgba(4, 120, 87, 0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.article-card:hover h3 {
  color: var(--primary);
}

.article-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(212, 160, 23, 0.08);
}

.article-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.article-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-read-more .arrow {
  transition: transform var(--transition);
}

.article-card:hover .article-read-more .arrow {
  transform: translateX(4px);
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(212, 160, 23, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(212, 160, 23, 0.2);
}

.faq-item.active {
  border-color: rgba(4, 120, 87, 0.3);
  box-shadow: var(--emerald-glow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  gap: 15px;
  transition: color var(--transition);
}

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

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--primary);
  transition: transform var(--transition);
}

.faq-toggle::before {
  top: 50%;
  left: 4px;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  top: 4px;
  left: 50%;
  width: 2px;
  height: 16px;
  transform: translateX(-50%);
}

.faq-item.active .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
}

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

.faq-answer-inner {
  padding: 0 25px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ==================
   CTA SECTION
   ================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(212, 160, 23, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(4, 120, 87, 0.08) 0%, transparent 40%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 30px;
}

/* ==================
   FOOTER
   ================== */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(212, 160, 23, 0.1);
  padding: 60px 0 0;
}

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

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 160, 23, 0.08);
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.responsible-gaming {
  background: rgba(212, 160, 23, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius);
  padding: 20px 25px;
  margin-top: 20px;
}

.responsible-gaming h4 {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.responsible-gaming p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* ==================
   ARTICLE PAGE STYLES
   ================== */
.article-page {
  padding-top: 90px;
}

.article-hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
}

.article-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .separator {
  color: rgba(212, 160, 23, 0.3);
}

.breadcrumb .current {
  color: var(--primary);
}

.article-hero h1 {
  max-width: 700px;
  margin: 0 auto 15px;
}

.article-hero .article-meta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.article-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary);
}

.article-content p {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.85;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.article-content ul {
  list-style: none;
  padding-left: 0;
}

.article-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text);
  opacity: 0.9;
}

.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold-gradient);
  border-radius: 50%;
}

.article-content ol {
  list-style: decimal;
  padding-left: 25px;
}

.article-content ol li {
  margin-bottom: 10px;
  color: var(--text);
  opacity: 0.9;
}

.article-content ol li::marker {
  color: var(--primary);
  font-weight: 700;
}

.article-content strong {
  color: var(--primary);
  font-weight: 600;
}

.article-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 20px 25px;
  margin: 25px 0;
  background: rgba(212, 160, 23, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted);
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(4, 120, 87, 0.05));
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  margin: 40px 0;
}

.article-cta-box h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.article-cta-box p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* Table of Contents */
.toc {
  background: var(--surface);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-lg);
  padding: 25px 30px;
  margin-bottom: 40px;
}

.toc h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.toc ol {
  list-style: decimal;
  padding-left: 20px;
}

.toc ol li {
  margin-bottom: 8px;
}

.toc ol li a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.toc ol li a:hover {
  color: var(--primary);
}

/* Info Box */
.info-box {
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: var(--radius);
  padding: 20px 25px;
  margin: 25px 0;
}

.info-box h4 {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

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

  .pix-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .pix-features {
    align-items: center;
  }

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

  .casino-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(6, 6, 4, 0.98);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .casino-card-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .casino-rank {
    margin: 0 auto;
  }

  .casino-features {
    justify-content: center;
  }

  .casino-rating {
    margin: 10px 0;
  }

  .casino-cta {
    grid-column: auto;
  }

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

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

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

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

  .section {
    padding: 60px 0;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .casino-card-inner {
    padding: 20px;
  }

  .article-content {
    padding: 30px 15px 60px;
  }
}

/* ==================
   COMPARISON TABLE
   ================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.15);
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.08));
}

.comparison-table th {
  padding: 15px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(212, 160, 23, 0.2);
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid rgba(212, 160, 23, 0.06);
}

.comparison-table tbody tr:hover {
  background: rgba(212, 160, 23, 0.03);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive table */
@media (max-width: 768px) {
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 25px -15px;
    padding: 0 15px;
  }

  .comparison-table {
    min-width: 600px;
  }
}

/* ==================
   COOKIE / DISCLAIMER
   ================== */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 16, 10, 0.98);
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

.disclaimer-bar.show {
  display: block;
}

.disclaimer-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.disclaimer-bar p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.disclaimer-bar .btn {
  flex-shrink: 0;
}

/* Age verification gate placeholder */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 4, 0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  max-width: 450px;
  padding: 40px;
}

.age-gate-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.age-gate-content p {
  color: var(--muted);
  margin-bottom: 30px;
}

.age-gate-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
