/* ============================================
   MEXICOGAMBLING.NET — AZTEC DARK THEME
   Black + Deep Crimson + Gold Metallic
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg: #0a0607;
  --primary: #b91c1c;
  --primary-dark: #8b1515;
  --secondary: #c5a044;
  --accent: #059669;
  --text: #ede4d9;
  --muted: #78716c;
  --surface: #1a1210;
  --surface-light: #251c18;
  --gold-gradient: linear-gradient(135deg, #c5a044, #dfc278, #c5a044);
  --crimson-gradient: linear-gradient(135deg, #b91c1c, #d42f2f, #b91c1c);
  --border-thick: 3px solid #c5a044;
  --border-crimson: 3px solid #b91c1c;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

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

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

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

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

a:hover {
  color: #dfc278;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
  margin-bottom: 1rem;
  font-weight: 400;
  color: #d4cbc0;
}

/* ---- Utility ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-crimson { color: var(--primary); }

/* ---- Aztec Geometric Divider ---- */
.aztec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.aztec-divider::before,
.aztec-divider::after {
  content: '';
  flex: 1;
  height: 3px;
  background: var(--gold-gradient);
}

.aztec-divider .aztec-icon {
  width: 30px;
  height: 30px;
  border: 3px solid var(--secondary);
  transform: rotate(45deg);
  position: relative;
}

.aztec-divider .aztec-icon::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid var(--primary);
  transform: rotate(0deg);
}

/* Step pyramid shape */
.pyramid-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0;
}

.pyramid-divider .step {
  height: 4px;
  background: var(--gold-gradient);
}

.pyramid-divider .step:nth-child(1) { width: 40px; }
.pyramid-divider .step:nth-child(2) { width: 70px; margin-top: 3px; }
.pyramid-divider .step:nth-child(3) { width: 100px; margin-top: 3px; }
.pyramid-divider .step:nth-child(4) { width: 140px; margin-top: 3px; }

/* ---- Aztec Border Pattern (CSS) ---- */
.aztec-border-top {
  position: relative;
}

.aztec-border-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--secondary) 0px,
    var(--secondary) 20px,
    transparent 20px,
    transparent 25px,
    var(--primary) 25px,
    var(--primary) 45px,
    transparent 45px,
    transparent 50px
  );
}

.aztec-border-bottom {
  position: relative;
}

.aztec-border-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px,
    var(--primary) 20px,
    transparent 20px,
    transparent 25px,
    var(--secondary) 25px,
    var(--secondary) 45px,
    transparent 45px,
    transparent 50px
  );
}

/* ---- Aztec Corner Decorations ---- */
.aztec-corners {
  position: relative;
}

.aztec-corners::before,
.aztec-corners::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--secondary);
  border-style: solid;
}

.aztec-corners::before {
  top: -2px;
  left: -2px;
  border-width: 3px 0 0 3px;
}

.aztec-corners::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 3px 3px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.btn-primary {
  background: var(--primary);
  color: #c5a044;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #dfc278;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0a0607;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 68, 0.4);
}

.btn-outline {
  background: transparent;
  border: 3px solid var(--secondary);
  color: var(--secondary);
  clip-path: none;
  padding: 11px 33px;
}

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

/* ---- Header / Navigation ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 6, 7, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--primary);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(185, 28, 28, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo .mexico {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo .gambling {
  color: var(--primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border: 3px solid var(--secondary);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--primary);
  transform: rotate(0deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text);
  position: relative;
  padding: 0.3rem 0;
}

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

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

.nav-menu a:hover {
  color: var(--secondary);
}

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

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--secondary);
  transition: all var(--transition);
}

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

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

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

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(185, 28, 28, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(197, 160, 68, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(5, 150, 105, 0.04) 0%, transparent 50%);
  z-index: 0;
}

/* Aztec geometric background pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(45deg, var(--secondary) 25%, transparent 25%),
    linear-gradient(-45deg, var(--secondary) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--secondary) 75%),
    linear-gradient(-45deg, transparent 75%, var(--secondary) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  z-index: 0;
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: var(--surface);
  border: 2px solid var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.08;
}

.hero-pyramid {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 250px solid var(--secondary);
  position: relative;
}

.hero-pyramid::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -100px;
  width: 200px;
  height: 4px;
  background: var(--primary);
}

.hero-pyramid::after {
  content: '';
  position: absolute;
  top: 140px;
  left: -120px;
  width: 240px;
  height: 4px;
  background: var(--primary);
}

/* ---- Casino Cards ---- */
.casino-card {
  background: var(--surface);
  border: 3px solid var(--surface-light);
  padding: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197, 160, 68, 0.1);
}

.casino-card-rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  padding-right: 15px;
  padding-bottom: 15px;
}

.casino-card-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.casino-card-logo {
  width: 80px;
  height: 80px;
  background: var(--surface-light);
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--secondary);
  letter-spacing: 1px;
  text-align: center;
  padding: 0.5rem;
  flex-shrink: 0;
}

.casino-card-info h3 {
  margin-bottom: 0.3rem;
}

.casino-card-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 0.5rem;
}

.star {
  color: var(--secondary);
  font-size: 1rem;
}

.star.empty {
  color: var(--muted);
}

.casino-card-bonus {
  padding: 1rem 2rem;
  background: var(--surface-light);
  border-top: 1px solid rgba(197, 160, 68, 0.15);
  border-bottom: 1px solid rgba(197, 160, 68, 0.15);
}

.bonus-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

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

.casino-card-features {
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  padding: 4px 12px;
  background: rgba(197, 160, 68, 0.08);
  border: 1px solid rgba(197, 160, 68, 0.2);
  font-size: 0.8rem;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.casino-card-footer {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.casino-card-footer .btn {
  flex-shrink: 0;
}

.tc-link {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ---- Ranking List (Article style) ---- */
.ranking-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(197, 160, 68, 0.1);
}

.ranking-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
  min-width: 60px;
  position: relative;
}

.ranking-number::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.ranking-content {
  flex: 1;
}

.ranking-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.ranking-content p {
  margin-bottom: 1rem;
}

.ranking-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.ranking-meta-item {
  font-size: 0.85rem;
}

.ranking-meta-item .label {
  color: var(--muted);
}

.ranking-meta-item .value {
  color: var(--secondary);
  font-weight: 600;
}

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

.feature-card {
  background: var(--surface);
  border: 3px solid var(--surface-light);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.feature-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--secondary);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-icon span {
  transform: rotate(-45deg);
  font-size: 1.8rem;
  color: var(--secondary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

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

/* ---- Articles / Blog Grid ---- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--surface);
  border: 3px solid var(--surface-light);
  overflow: hidden;
  transition: all var(--transition);
}

.article-card:hover {
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.article-card-image {
  height: 200px;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary);
}

.article-card-image .placeholder-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(45deg, var(--secondary) 25%, transparent 25%),
    linear-gradient(-45deg, var(--secondary) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--secondary) 75%),
    linear-gradient(-45deg, transparent 75%, var(--secondary) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.article-card-image .image-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--secondary);
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

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

.article-card-category {
  display: inline-block;
  padding: 3px 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  background: var(--primary);
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.article-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

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

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

.article-card-body .read-more {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--secondary);
}

/* ---- Article Page ---- */
.article-hero {
  padding: 8rem 0 3rem;
  background: var(--surface);
  border-bottom: 3px solid var(--primary);
  position: relative;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(45deg, var(--secondary) 25%, transparent 25%),
    linear-gradient(-45deg, var(--secondary) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--secondary) 75%),
    linear-gradient(-45deg, transparent 75%, var(--secondary) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

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

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

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

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

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

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

.article-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary);
  position: relative;
}

.article-body h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: #d4cbc0;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.article-body table th {
  background: var(--primary);
  color: var(--secondary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--primary-dark);
}

.article-body table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--surface-light);
  color: #d4cbc0;
}

.article-body table tr:nth-child(even) {
  background: var(--surface);
}

.article-body table tr:hover {
  background: var(--surface-light);
}

/* Info box */
.info-box {
  background: var(--surface);
  border: 3px solid var(--secondary);
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
}

.info-box.warning {
  border-color: var(--primary);
}

.info-box.tip {
  border-color: var(--accent);
}

.info-box-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.info-box.warning .info-box-title {
  color: var(--primary);
}

.info-box.tip .info-box-title {
  color: var(--accent);
}

/* CTA Box in article */
.cta-box {
  background: var(--surface);
  border: 3px solid var(--primary);
  padding: 2.5rem;
  text-align: center;
  margin: 2.5rem 0;
  position: relative;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  height: 6px;
  background: var(--gold-gradient);
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

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

/* FAQ */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  border: 2px solid var(--surface-light);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--secondary);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--text);
  border: none;
  width: 100%;
  text-align: left;
}

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

.faq-toggle {
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(225deg);
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: #d4cbc0;
}

/* ---- Responsible Gambling Notice ---- */
.responsible-gambling {
  background: var(--surface);
  border: 3px solid var(--primary);
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.responsible-gambling h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.responsible-gambling p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.responsible-gambling a {
  color: var(--accent);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  padding: 4rem 0 0;
  position: relative;
}

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

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

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

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

.footer-col h4 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--secondary);
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(197, 160, 68, 0.1);
  padding: 1.5rem 0;
  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: 0;
}

.footer-18 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
}

.footer-18 .badge-18 {
  width: 32px;
  height: 32px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

/* ---- 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);
}

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

  .hero-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 3px solid var(--primary);
    transition: right var(--transition);
    z-index: 999;
  }

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

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

  .hero {
    min-height: auto;
    padding: 7rem 0 4rem;
  }

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

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

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

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

  .ranking-item {
    flex-direction: column;
    gap: 1rem;
  }

  .ranking-number {
    font-size: 3rem;
  }

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

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

  .section-padding {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

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