/* ============================================
   CASINO ANUBIS — Egyptian Pharaoh Theme
   Deep Black + Gold + Turquoise
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --bg: #0a0804;
  --primary: #d4a853;
  --secondary: #0891b2;
  --accent: #dc2626;
  --text: #f0e8d8;
  --muted: #8a7e6a;
  --surface: #151008;
  --gold-light: #f0d78c;
  --gold-dark: #a07c2e;
  --gradient-gold: linear-gradient(135deg, #a07c2e, #d4a853, #f0d78c, #d4a853, #a07c2e);
  --gradient-gold-btn: linear-gradient(135deg, #d4a853, #f0d78c, #d4a853);
  --gradient-dark: linear-gradient(180deg, #0a0804 0%, #151008 100%);
  --font-heading: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --border-radius: 4px;
  --shadow-gold: 0 0 20px rgba(212, 168, 83, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* --- Reset --- */
*, *::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;
}

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

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

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

ul, ol {
  padding-left: 1.5em;
}

/* --- Hieroglyphic Border Pattern (CSS geometric) --- */
.hiero-border-top,
.hiero-border-bottom {
  height: 4px;
  background: var(--gradient-gold);
  position: relative;
}

.hiero-border-top::after,
.hiero-border-bottom::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px,
    var(--primary) 8px,
    transparent 8px,
    transparent 16px
  );
}

.hiero-border-bottom::after {
  top: auto;
  bottom: 4px;
}

/* --- Decorative Pyramid Divider --- */
.pyramid-divider {
  text-align: center;
  margin: 3rem auto;
  position: relative;
}

.pyramid-divider::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 18px solid var(--primary);
  opacity: 0.6;
}

.pyramid-divider::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: -1;
}

/* --- Scarab Rank Badge --- */
.scarab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--gradient-gold);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  flex-shrink: 0;
}

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

h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

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

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

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 8, 4, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(212, 168, 83, 0.1);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span {
  -webkit-text-fill-color: var(--secondary);
  color: var(--secondary);
}

/* --- Navigation --- */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}

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

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

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

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

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(8, 145, 178, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(212, 168, 83, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Pyramid background shape */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-bottom: 120px solid var(--surface);
  opacity: 0.5;
}

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

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.2rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 6px 20px;
  margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  background: var(--gradient-gold-btn);
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 168, 83, 0.3);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* --- Casino Card / Rankings --- */
.casino-rankings {
  padding: 80px 0;
  background: var(--surface);
}

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

.section-header h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

.casino-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(21, 16, 8, 0.9), rgba(21, 16, 8, 0.6));
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.casino-card:hover {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.casino-card:hover::before {
  opacity: 1;
}

.casino-card.featured {
  border-color: rgba(212, 168, 83, 0.4);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.05), rgba(21, 16, 8, 0.9));
}

.casino-info {
  flex: 1;
}

.casino-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.casino-bonus {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
  padding: 0;
}

.casino-features li {
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(212, 168, 83, 0.08);
  padding: 3px 10px;
  border-radius: 2px;
  border: 1px solid rgba(212, 168, 83, 0.1);
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--primary);
}

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

.casino-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* --- Features / Why Us Section --- */
.features-section {
  padding: 80px 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-gold);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

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

/* --- Articles / Blog Section --- */
.articles-section {
  padding: 80px 0;
  background: var(--surface);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article-card {
  background: var(--bg);
  border: 1px solid rgba(212, 168, 83, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}

.article-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.article-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--surface), rgba(212, 168, 83, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.article-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--bg));
}

.article-thumb-icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
}

.article-body {
  padding: 1.5rem;
}

.article-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.article-body h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.article-body h3 a {
  color: var(--primary);
}

.article-body h3 a:hover {
  color: var(--gold-light);
}

.article-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.read-more {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  color: var(--gold-light);
}

.read-more::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.read-more:hover::after {
  width: 35px;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
}

.faq-item {
  border: 1px solid rgba(212, 168, 83, 0.1);
  margin-bottom: 1rem;
  background: var(--surface);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  list-style: none;
}

.faq-question:hover {
  background: rgba(212, 168, 83, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.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.2rem;
}

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

/* --- Footer --- */
.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--primary);
  padding: 60px 0 30px;
}

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

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

.footer-col p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

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

.footer-disclaimer {
  max-width: 800px;
  margin: 1rem auto 0;
  font-size: 0.75rem !important;
  color: rgba(138, 126, 106, 0.7) !important;
  line-height: 1.6 !important;
}

/* --- Article Page Layout --- */
.article-page {
  padding-top: 100px;
}

.article-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.article-hero .hero-badge {
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: 2.4rem;
  max-width: 800px;
  margin: 0 auto 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 20px 4rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.article-content h3 {
  margin-top: 2rem;
}

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

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

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

.article-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(212, 168, 83, 0.03);
  font-style: italic;
  color: var(--muted);
}

/* Article inline CTA */
.inline-cta {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(8, 145, 178, 0.05));
  border: 1px solid rgba(212, 168, 83, 0.2);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.inline-cta h3 {
  margin-bottom: 0.6rem;
}

.inline-cta p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Table of contents */
.toc {
  background: var(--surface);
  border: 1px solid rgba(212, 168, 83, 0.15);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

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

.toc ol {
  padding-left: 1.2rem;
}

.toc li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

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

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.comparison-table thead {
  background: rgba(212, 168, 83, 0.1);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--primary);
}

.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  color: var(--text);
}

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

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

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

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

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

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

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

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

/* --- 18+ Notice Banner --- */
.age-notice {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 0.8rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 { font-size: 2.2rem; }
  .hero-content h1 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface);
    border-left: 2px solid var(--primary);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 999;
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .hero {
    min-height: 70vh;
    padding: 100px 20px 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }

  .casino-card {
    flex-direction: column;
    text-align: center;
  }

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

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

  .casino-cta {
    flex-direction: row;
    width: 100%;
  }

  .casino-cta .btn {
    flex: 1;
  }

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

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

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

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

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}

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

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

  .scarab-badge {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

/* --- Back to top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 900;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* --- Overlay for mobile menu --- */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --- Bonus Highlight Box --- */
.bonus-box {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(21, 16, 8, 0.9));
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.bonus-box h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.bonus-box p {
  color: var(--text);
  margin-bottom: 0.5rem;
}

/* --- Pros/Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.pros, .cons {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(212, 168, 83, 0.1);
}

.pros h4 {
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.cons h4 {
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li::before {
  content: '+ ';
  color: var(--secondary);
  font-weight: 700;
}

.cons li::before {
  content: '- ';
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}
