/* =============================================
   CasinoMinotaur - Greek Mythology Casino Theme
   Colors: Dark Marble + Deep Blue + Bronze + White
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Philosopher:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700;900&display=swap');

/* CSS Variables */
:root {
  --bg: #08080e;
  --primary: #cd7f32;
  --secondary: #1e3a8a;
  --accent: #f8fafc;
  --text: #e5e7f0;
  --muted: #6b7294;
  --surface: #10101a;
  --bronze-light: #e8a849;
  --bronze-dark: #8b5a1b;
  --gold-glow: rgba(205, 127, 50, 0.3);
  --blue-deep: #0f1f5c;
  --marble-white: #f0ece4;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--accent);
  line-height: 1.2;
}

h4, h5, h6 {
  font-family: 'Philosopher', serif;
  color: var(--accent);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--bronze-light);
}

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

/* Greek Key / Meander Pattern Divider */
.meander-divider {
  width: 100%;
  height: 12px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--primary) 0px,
      var(--primary) 10px,
      transparent 10px,
      transparent 14px,
      var(--primary) 14px,
      var(--primary) 24px,
      transparent 24px,
      transparent 28px
    );
  opacity: 0.6;
  margin: 2rem 0;
}

.meander-divider-thin {
  width: 100%;
  height: 4px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--primary) 0px,
      var(--primary) 8px,
      transparent 8px,
      transparent 12px
    );
  opacity: 0.4;
  margin: 1rem 0;
}

/* Column / Pillar Border */
.pillar-border {
  border-left: 4px solid var(--primary);
  border-image: linear-gradient(to bottom, var(--bronze-light), var(--primary), var(--bronze-dark)) 1;
  padding-left: 1.5rem;
}

.pillar-border-box {
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--bronze-light), var(--primary), var(--bronze-dark), var(--primary), var(--bronze-light)) 1;
  padding: 2rem;
}

/* Bronze Gradient Text */
.bronze-text {
  background: linear-gradient(135deg, var(--bronze-light), var(--primary), var(--bronze-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 14, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(205, 127, 50, 0.3);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 14, 0.98);
  box-shadow: 0 4px 30px rgba(205, 127, 50, 0.15);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--bronze-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.logo span {
  -webkit-text-fill-color: var(--accent);
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: 'Philosopher', serif;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--bronze-light));
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   CTA BUTTON
   ============================================= */
.cta-button, .btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--bronze-light), var(--primary), var(--bronze-dark));
  color: #0a0a0a !important;
  font-family: 'Philosopher', serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  -webkit-text-fill-color: #0a0a0a;
}

.cta-button:hover, .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a;
}

.cta-button::before, .btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before, .btn-cta:hover::before {
  left: 100%;
}

.cta-button-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(205, 127, 50, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 100px,
      rgba(205, 127, 50, 0.03) 100px,
      rgba(205, 127, 50, 0.03) 101px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(205, 127, 50, 0.03) 100px,
      rgba(205, 127, 50, 0.03) 101px
    );
  pointer-events: none;
}

/* Decorative columns */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--primary) 0px, var(--primary) 20px,
      transparent 20px, transparent 24px,
      var(--primary) 24px, var(--primary) 44px,
      var(--primary) 44px, var(--primary) 48px,
      transparent 48px, transparent 52px
    );
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Philosopher', serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(205, 127, 50, 0.3);
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(205, 127, 50, 0.2);
}

.hero-subtitle {
  font-family: 'Philosopher', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating decorative elements */
.hero-decoration {
  position: absolute;
  opacity: 0.06;
  font-size: 15rem;
  font-family: 'Cinzel Decorative', serif;
  color: var(--primary);
  pointer-events: none;
}

.hero-decoration.left {
  left: -3rem;
  top: 20%;
}

.hero-decoration.right {
  right: -3rem;
  bottom: 20%;
}

/* =============================================
   SECTION STYLING
   ============================================= */
.section {
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

.section-label {
  font-family: 'Philosopher', serif;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

/* Full-width background sections */
.section-full {
  padding: 5rem 2rem;
  background: var(--surface);
  position: relative;
}

.section-full::before,
.section-full::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 12px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--primary) 0px, var(--primary) 10px,
      transparent 10px, transparent 14px,
      var(--primary) 14px, var(--primary) 24px,
      transparent 24px, transparent 28px
    );
  opacity: 0.3;
}

.section-full::before { top: 0; }
.section-full::after { bottom: 0; }

.section-full .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* =============================================
   CASINO RANKING CARDS
   ============================================= */
.casino-rankings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.casino-card {
  background: var(--surface);
  border: 1px solid rgba(205, 127, 50, 0.15);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.03), transparent);
  pointer-events: none;
}

.casino-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(205, 127, 50, 0.1);
}

/* Laurel Wreath Rank Badge */
.rank-badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.rank-badge::before,
.rank-badge::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 60px;
  border: 3px solid var(--primary);
  border-right: none;
  border-radius: 50px 0 0 50px;
  top: 50%;
  transform: translateY(-50%);
}

.rank-badge::before {
  left: 0;
}

.rank-badge::after {
  right: 0;
  border: 3px solid var(--primary);
  border-left: none;
  border-radius: 0 50px 50px 0;
}

.rank-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--bronze-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}

.casino-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.casino-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  color: var(--accent);
}

.casino-bonus {
  font-family: 'Philosopher', serif;
  font-size: 1.1rem;
  color: var(--primary);
}

.casino-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.casino-feature-tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(107, 114, 148, 0.3);
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.casino-rating .stars {
  color: var(--primary);
  letter-spacing: 2px;
}

.casino-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(205, 127, 50, 0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze-light), var(--primary));
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(205, 127, 50, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(30, 58, 138, 0.1));
  border: 1px solid rgba(205, 127, 50, 0.2);
  border-radius: 50%;
  color: var(--primary);
}

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

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

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

.article-card {
  background: var(--surface);
  border: 1px solid rgba(205, 127, 50, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}

.article-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(205, 127, 50, 0.1);
}

.article-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.article-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bronze-light), var(--primary), var(--bronze-dark));
}

.article-card-image-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3rem;
  color: rgba(205, 127, 50, 0.15);
  font-weight: 900;
}

.article-card-body {
  padding: 1.5rem;
}

.article-card-category {
  font-family: 'Philosopher', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: block;
}

.article-card-body h3 {
  font-family: 'Philosopher', serif;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.article-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.article-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(205, 127, 50, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.article-card-footer a {
  font-family: 'Philosopher', serif;
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.faq-item {
  border: 1px solid rgba(205, 127, 50, 0.15);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(205, 127, 50, 0.4);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--accent);
  font-family: 'Philosopher', serif;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}

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

.faq-question .faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--surface);
  border-top: 2px solid rgba(205, 127, 50, 0.2);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--primary) 0px, var(--primary) 10px,
      transparent 10px, transparent 14px,
      var(--primary) 14px, var(--primary) 24px,
      transparent 24px, transparent 28px
    );
  opacity: 0.3;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Philosopher', serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(205, 127, 50, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: var(--muted);
  max-width: 800px;
  line-height: 1.6;
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(205, 127, 50, 0.05);
}

/* =============================================
   ARTICLE PAGE STYLES
   ============================================= */
.article-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(30, 58, 138, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(205, 127, 50, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
}

.article-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--primary) 0px, var(--primary) 10px,
      transparent 10px, transparent 14px,
      var(--primary) 14px, var(--primary) 24px,
      transparent 24px, transparent 28px
    );
  opacity: 0.4;
}

.article-meta {
  font-family: 'Philosopher', serif;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(205, 127, 50, 0.2);
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.article-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--text);
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  background: rgba(205, 127, 50, 0.05);
  font-family: 'Philosopher', serif;
  font-style: italic;
  color: var(--accent);
}

.article-content .info-box {
  background: var(--surface);
  border: 1px solid rgba(205, 127, 50, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

.article-content .info-box h4 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.08), rgba(30, 58, 138, 0.08));
  border: 2px solid rgba(205, 127, 50, 0.3);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.article-cta-box h3 {
  color: var(--accent);
  margin-bottom: 0.8rem;
}

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

/* Table styling */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.article-content th {
  background: rgba(205, 127, 50, 0.15);
  color: var(--primary);
  font-family: 'Philosopher', serif;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--primary);
}

.article-content td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(205, 127, 50, 0.1);
  color: var(--text);
}

.article-content tr:hover td {
  background: rgba(205, 127, 50, 0.03);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .rank-badge {
    margin: 0 auto;
  }

  .casino-card-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease;
    border-left: 2px solid rgba(205, 127, 50, 0.2);
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    min-height: 90vh;
    padding-top: 6rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-decoration {
    display: none;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .section-full {
    padding: 3rem 1.5rem;
  }

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

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

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

  .article-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .article-content {
    padding: 2rem 1.5rem;
  }
}

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

  .hero-badge {
    font-size: 0.75rem;
  }

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

  .casino-name {
    font-size: 1.1rem;
  }

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

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  border-top: 2px solid rgba(205, 127, 50, 0.3);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.cookie-banner .cta-button {
  padding: 8px 24px;
  font-size: 0.8rem;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Age verification overlay */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 14, 0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.age-gate-box {
  background: var(--surface);
  border: 2px solid rgba(205, 127, 50, 0.3);
  padding: 3rem;
  max-width: 500px;
  text-align: center;
}

.age-gate-box h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.age-gate-box p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.age-gate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-gate-actions .btn-no {
  padding: 14px 36px;
  background: transparent;
  border: 2px solid var(--muted);
  color: var(--muted);
  font-family: 'Philosopher', serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-gate-actions .btn-no:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}
