/* ========================================
   Panteon Legacy Light - Custom CSS
   Animation, Overrides & Prose Styling
   ======================================== */

/* CSS Custom Properties */
:root {
  --color-primary: #1a365d;
  --color-primary-light: #2c5282;
  --color-secondary: #c9a227;
  --color-secondary-light: #d4af37;
  --color-accent: #e8d5a3;
  --color-bg-light: #faf9f6;
  --color-bg-cream: #f5f1e8;
  --color-bg-warm: #ede8db;
  --color-text-dark: #1a202c;
  --color-text-medium: #4a5568;
  --color-text-light: #718096;
  --color-border: #d4c5a9;
  --color-success: #276749;
  --color-warning: #c05621;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --max-width: 90rem;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overflow-y: auto;
}

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

/* ========================================
   Particle Animation System
   ======================================== */
@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-2em) translateX(0.5em) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-3.5em) translateX(-0.5em) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-2em) translateX(1em) scale(1.05);
    opacity: 0.7;
  }
}

@keyframes particle-drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(1.5em, -2em) rotate(120deg);
  }
  66% {
    transform: translate(-1em, -3em) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 1.25em rgba(201, 162, 39, 0.3);
  }
  50% {
    box-shadow: 0 0 2.5em rgba(201, 162, 39, 0.6);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(1.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-2em);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.particle {
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float 8s ease-in-out infinite;
}

.particle:nth-child(2n) {
  animation: particle-drift 12s linear infinite;
  width: 0.375em;
  height: 0.375em;
}

.particle:nth-child(3n) {
  animation-duration: 10s;
  animation-delay: -3s;
}

.particle:nth-child(4n) {
  animation-duration: 14s;
  animation-delay: -5s;
}

/* ========================================
   Parallax System
   ======================================== */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateZ(-1px) scale(1.5);
  will-change: transform;
}

.parallax-layer {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* ========================================
   Hero Section Styles
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #3d5a80 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2em 1em;
  animation: fade-in-up 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

/* ========================================
   Bonus Badge Styles
   ======================================== */
.bonus-badge {
  background: linear-gradient(145deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  border-radius: 1em;
  padding: 2em 2.5em;
  box-shadow: 
    0 1.5em 3em rgba(0, 0, 0, 0.25),
    inset 0 0.0625em 0 rgba(255, 255, 255, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
  max-width: 28em;
  margin: 0 auto 2em;
}

.bonus-badge-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-badge-amount {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5em;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  gap: 0.5em;
}

.btn-primary {
  background: linear-gradient(145deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  color: var(--color-primary);
  box-shadow: 0 0.25em 1em rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
  transform: translateY(-0.125em);
  box-shadow: 0 0.5em 1.5em rgba(201, 162, 39, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 0.125em solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

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

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

/* ========================================
   Navigation Styles
   ======================================== */
.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 54, 93, 0.97);
  backdrop-filter: blur(0.625em);
  box-shadow: 0 0.125em 1em rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5em;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2em;
}

@media (min-width: 64em) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5em 0;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125em;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  display: none;
}

@media (min-width: 64em) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Mobile Menu */
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 0.3125em;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5em;
  z-index: 1001;
}

@media (min-width: 64em) {
  .burger-btn {
    display: none;
  }
}

.burger-line {
  width: 1.5em;
  height: 0.1875em;
  background: #ffffff;
  border-radius: 0.125em;
  transition: var(--transition-smooth);
}

.burger-btn.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.3125em, 0.3125em);
}

.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.375em, -0.375em);
}

.mobile-menu {
  position: fixed;
  top: 4.5em;
  left: 0;
  right: 0;
  background: var(--color-primary);
  padding: 1.5em;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 0.0625em solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  display: block;
  padding: 1em 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mobile-menu a:hover {
  color: var(--color-secondary);
  padding-left: 0.5em;
}

.mobile-cta {
  margin-top: 1.5em;
  text-align: center;
}

/* ========================================
   Game Cards Section
   ======================================== */
.games-strip {
  padding: 5em 1.5em;
  background: var(--color-bg-cream);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16em, 1fr));
  gap: 1.5em;
  max-width: var(--max-width);
  margin: 0 auto;
}

.game-card {
  background: #ffffff;
  border-radius: 0.75em;
  overflow: hidden;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  animation: fade-in-up 0.6s ease-out backwards;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.15s; }
.game-card:nth-child(3) { animation-delay: 0.2s; }
.game-card:nth-child(4) { animation-delay: 0.25s; }
.game-card:nth-child(5) { animation-delay: 0.3s; }
.game-card:nth-child(6) { animation-delay: 0.35s; }

.game-card:hover {
  transform: translateY(-0.5em);
  box-shadow: 0 1em 2em rgba(0, 0, 0, 0.15);
}

.game-card-image {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.game-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-content {
  padding: 1.25em;
  text-align: center;
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75em;
}

/* ========================================
   Steps Section
   ======================================== */
.steps-section {
  padding: 5em 1.5em;
  background: var(--color-bg-light);
}

.steps-container {
  max-width: 60em;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16em, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.step-card {
  text-align: center;
  padding: 2em;
  background: #ffffff;
  border-radius: 1em;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.06);
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-0.25em);
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5em;
  height: 2.5em;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 0.25em 0.75em rgba(201, 162, 39, 0.4);
}

.step-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1em;
  margin-top: 0.5em;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5em;
}

.step-desc {
  color: var(--color-text-medium);
  line-height: 1.6;
}

/* ========================================
   Payments Table Section
   ======================================== */
.payments-section {
  padding: 5em 1.5em;
  background: var(--color-bg-cream);
}

.payments-container {
  max-width: 60em;
  margin: 0 auto;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2em 0;
  border-radius: 0.75em;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.08);
}

.payments-table {
  width: 100%;
  min-width: 36em;
  border-collapse: collapse;
  background: #ffffff;
}

.payments-table th,
.payments-table td {
  padding: 1em 1.25em;
  text-align: left;
  border-bottom: 0.0625em solid var(--color-border);
}

.payments-table th {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.payments-table tr:hover td {
  background: var(--color-bg-light);
}

.payments-table td {
  color: var(--color-text-dark);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.75em;
}

.payment-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* ========================================
   Review Blocks Section
   ======================================== */
.review-section {
  padding: 5em 1.5em;
  background: var(--color-bg-light);
}

.review-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.review-block {
  background: #ffffff;
  border-radius: 1em;
  padding: 2em;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.06);
  border-left: 0.25em solid var(--color-secondary);
}

.review-block-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.review-block-title i {
  color: var(--color-secondary);
}

.review-block-content {
  color: var(--color-text-medium);
  line-height: 1.7;
}

.review-block-content ul {
  margin: 1em 0;
  padding-left: 1.25em;
}

.review-block-content li {
  margin-bottom: 0.5em;
}

.providers-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  margin-top: 1em;
}

.provider-tag {
  background: var(--color-bg-cream);
  color: var(--color-primary);
  padding: 0.5em 1em;
  border-radius: 2em;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.provider-tag:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* ========================================
   Promos Section
   ======================================== */
.promos-section {
  padding: 5em 1.5em;
  background: var(--color-bg-cream);
}

.promos-container {
  max-width: 72em;
  margin: 0 auto;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.promo-card {
  background: #ffffff;
  border-radius: 1em;
  padding: 2em;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition-smooth);
  border-top: 0.25em solid var(--color-secondary);
}

.promo-card:hover {
  transform: translateY(-0.375em);
  box-shadow: 0 0.75em 2em rgba(0, 0, 0, 0.12);
}

.promo-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1em;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75em;
}

.promo-desc {
  color: var(--color-text-medium);
  margin-bottom: 1.5em;
  line-height: 1.6;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
  padding: 5em 1.5em;
  background: var(--color-bg-light);
}

.faq-container {
  max-width: 50em;
  margin: 0 auto;
}

.faq-list {
  margin-top: 3em;
}

.faq-item {
  background: #ffffff;
  border-radius: 0.75em;
  margin-bottom: 1em;
  box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25em 1.5em;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: var(--color-bg-cream);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--color-secondary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 20em;
}

.faq-answer-content {
  padding: 0 1.5em 1.5em;
  color: var(--color-text-medium);
  line-height: 1.7;
}

/* ========================================
   Footer Styles
   ======================================== */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 4em 1.5em 2em;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14em, 1fr));
  gap: 3em;
  padding-bottom: 3em;
  border-bottom: 0.0625em solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1em;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.footer-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25em;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.9375rem;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5em 1em;
  border-radius: 0.375em;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.age-badge {
  background: var(--color-warning);
  color: #ffffff;
  font-weight: 700;
  padding: 0.375em 0.75em;
  border-radius: 0.25em;
  font-size: 0.9375rem;
}

.footer-bottom {
  padding-top: 2em;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--color-secondary);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 1em;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5em;
}

.section-subtitle {
  color: var(--color-text-medium);
  font-size: 1.125rem;
  max-width: 40em;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   Disclaimer Styles
   ======================================== */
.disclaimer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5em;
  padding: 1em;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-dark {
  color: var(--color-text-light);
  background: var(--color-bg-warm);
}

/* ========================================
   Prose Styling for Markdown Content
   ======================================== */
.prose {
  color: var(--color-text-dark);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 65em;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  padding-bottom: 0.5em;
  border-bottom: 0.125em solid var(--color-border);
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.prose h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.prose p {
  margin-bottom: 1.5em;
  color: var(--color-text-medium);
}

.prose a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-underline-offset: 0.1875em;
  transition: var(--transition-smooth);
}

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

.prose strong {
  font-weight: 600;
  color: var(--color-text-dark);
}

.prose em {
  font-style: italic;
}

.prose ul,
.prose ol {
  margin: 1.5em 0;
  padding-left: 1.5em;
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-bottom: 0.75em;
  color: var(--color-text-medium);
  padding-left: 0.5em;
}

.prose li::marker {
  color: var(--color-secondary);
}

.prose blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  background: var(--color-bg-cream);
  border-left: 0.25em solid var(--color-secondary);
  border-radius: 0 0.5em 0.5em 0;
  font-style: italic;
  color: var(--color-text-medium);
}

.prose blockquote p {
  margin-bottom: 0;
}

.prose .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2em 0;
  border-radius: 0.5em;
  box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.08);
}

.prose table {
  width: 100%;
  min-width: 30em;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 0.9375rem;
}

.prose th,
.prose td {
  padding: 0.875em 1.25em;
  text-align: left;
  border-bottom: 0.0625em solid var(--color-border);
}

.prose th {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.prose tr:last-child td {
  border-bottom: none;
}

.prose tr:hover td {
  background: var(--color-bg-light);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75em;
  margin: 2em 0;
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.12);
}

.prose hr {
  border: none;
  border-top: 0.0625em solid var(--color-border);
  margin: 3em 0;
}

.prose code {
  background: var(--color-bg-cream);
  padding: 0.125em 0.375em;
  border-radius: 0.25em;
  font-size: 0.875em;
  color: var(--color-primary);
}

.prose pre {
  background: var(--color-primary);
  color: #ffffff;
  padding: 1.5em;
  border-radius: 0.5em;
  overflow-x: auto;
  margin: 2em 0;
}

.prose pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

/* ========================================
   Single Page Layout
   ======================================== */
.single-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 8em 1.5em 4em;
  text-align: center;
}

.single-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5em;
}

.single-content {
  padding: 4em 1.5em;
  background: var(--color-bg-light);
}

.single-content-inner {
  max-width: 50em;
  margin: 0 auto;
  background: #ffffff;
  padding: 3em;
  border-radius: 1em;
  box-shadow: 0 0.25em 1.5em rgba(0, 0, 0, 0.08);
}

@media (max-width: 48em) {
  .single-content-inner {
    padding: 1.5em;
  }
}

/* ========================================
   SVG Pattern Background
   ======================================== */
.pattern-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5em; }
.mt-2 { margin-top: 1em; }
.mt-3 { margin-top: 1.5em; }
.mt-4 { margin-top: 2em; }

.mb-1 { margin-bottom: 0.5em; }
.mb-2 { margin-bottom: 1em; }
.mb-3 { margin-bottom: 1.5em; }
.mb-4 { margin-bottom: 2em; }

.visually-hidden {
  position: absolute;
  width: 0.0625em;
  height: 0.0625em;
  padding: 0;
  margin: -0.0625em;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 48em) {
  .hero-section {
    min-height: auto;
    padding: 8em 1em 4em;
  }
  
  .bonus-badge {
    padding: 1.5em;
    margin: 0 1em 1.5em;
  }
  
  .steps-grid,
  .review-grid,
  .promos-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
  }
  
  .prose h2 {
    font-size: 1.5rem;
  }
  
  .prose h3 {
    font-size: 1.25rem;
  }
}

/* Print Styles */
@media print {
  .nav-sticky,
  .mobile-menu,
  .btn,
  .footer {
    display: none;
  }
  
  .prose {
    max-width: 100%;
  }
}
