/* ==========================================================================
   OLV Church Fresno - Best Online Casinos California
   Color Scheme: Golden/Amber California theme on white background
   Mobile-first responsive design
   ========================================================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #D4A03C;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #b8892e;
}

/* --- Layout Container --- */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Header --- */
.site-header {
  background-color: #1a1a2e;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-name {
  color: #D4A03C;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.site-name:hover {
  color: #e8b64a;
}

.site-nav a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.site-nav a:hover {
  background-color: rgba(212, 160, 60, 0.2);
  color: #e8b64a;
}

/* --- Hero / H1 Section --- */
.hero-section {
  padding: 18px 0 10px;
  text-align: center;
}

.hero-section h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hero-sub {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Author Byline --- */
.author-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.author-byline img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D4A03C;
}

.author-byline .author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
}

.date-stamp {
  font-size: 0.8rem;
  color: #666;
}

/* --- Intro Text --- */
.intro-text {
  margin-bottom: 28px;
}

.intro-text p {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
}

/* --- Section Headings (H2) --- */
h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 40px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid #D4A03C;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 28px;
  margin-bottom: 12px;
}

/* First H2 right after hero needs less top margin */
.hero-section + h2 {
  margin-top: 8px;
}

/* --- Toplist Section --- */
.toplist-section {
  margin-bottom: 40px;
}

/* --- Individual Casino Card --- */
.casino-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #D4A03C;
  border-radius: 6px;
  margin-bottom: 14px;
  padding: 16px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.casino-card:hover {
  box-shadow: 0 4px 16px rgba(212, 160, 60, 0.18);
  transform: translateY(-1px);
}

/* Highlight the #1 pick */
.casino-card.top-pick {
  border-left-width: 5px;
  border-left-color: #D4A03C;
  background: linear-gradient(135deg, #fffdf5 0%, #ffffff 40%);
  box-shadow: 0 2px 12px rgba(212, 160, 60, 0.12);
}

.casino-card.top-pick .card-rank {
  background: linear-gradient(135deg, #D4A03C, #e8b64a);
  color: #1a1a2e;
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
}

.casino-card.top-pick .card-bonus {
  background: linear-gradient(135deg, #D4A03C 0%, #b8892e 100%);
  border-color: #e8b64a;
  box-shadow: 0 6px 20px rgba(212, 160, 60, 0.4);
}

.casino-card.top-pick .card-bonus .bonus-label {
  color: rgba(255, 255, 255, 0.85);
}

.casino-card.top-pick .card-bonus .bonus-value {
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Card Layout - Mobile first: stacked */
.card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Rank number */
.card-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: #1a1a2e;
  color: #D4A03C;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Top row: rank + logo + name */
.card-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Casino logo in toplist cards */
.card-logo {
  width: 80px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.card-casino-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
}

/* Bonus info - MASSIVE and eye-catching */
.card-bonus {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border: 2px solid #D4A03C;
  border-radius: 8px;
  padding: 14px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 160, 60, 0.25);
}

.card-bonus::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 160, 60, 0.08), transparent 30%);
  animation: bonusSpin 6s linear infinite;
}

@keyframes bonusSpin {
  to { transform: rotate(360deg); }
}

.card-bonus .bonus-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D4A03C;
  margin-bottom: 4px;
  position: relative;
}

.card-bonus .bonus-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  position: relative;
  text-shadow: 0 0 20px rgba(212, 160, 60, 0.4);
}

/* Star rating */
.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-rating .rating-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
}

.card-rating .stars {
  display: flex;
  gap: 1px;
}

.card-rating .stars .star {
  color: #D4A03C;
  font-size: 0.9rem;
}

.card-rating .stars .star.empty {
  color: #ddd;
}

/* CTA Button */
.card-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #22c55e;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.card-cta:hover {
  background-color: #16a34a;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Bottom row: rating + CTA side by side on mobile */
.card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-bottom-row .card-cta {
  width: auto;
  flex-shrink: 0;
}

/* --- Desktop Card Layout (601px+) --- */
@media (min-width: 601px) {
  .card-inner {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .card-top-row {
    flex: 0 0 auto;
    min-width: 160px;
  }

  .card-bonus {
    flex: 1 1 0;
    min-width: 0;
  }

  .card-bottom-row {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .card-bottom-row .card-cta {
    width: auto;
    padding: 10px 24px;
  }
}

/* --- Runners Up Section --- */
.runners-up-list {
  list-style: none;
  padding: 0;
}

.runners-up-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #999;
  border-radius: 4px;
  margin-bottom: 8px;
  background: #fafafa;
}

.runners-up-list .ru-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.runners-up-list .ru-rank {
  font-size: 0.85rem;
  font-weight: 700;
  color: #666;
  min-width: 28px;
}

.runners-up-list .ru-name {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.95rem;
}

.runners-up-list .card-cta {
  font-size: 0.8rem;
  padding: 8px 14px;
  width: auto;
}

/* --- Content Sections --- */
.content-section {
  margin-bottom: 32px;
}

.content-section p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: #333;
}

.content-section ul,
.content-section ol {
  margin-bottom: 14px;
  padding-left: 24px;
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #333;
}

/* --- Casino Review Cards (Individual Reviews) --- */
.review-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 28px;
}

.review-card h3 {
  margin-top: 0;
  color: #1a1a2e;
  border-left: 4px solid #D4A03C;
  padding-left: 12px;
}

/* Casino logo in review cards */
.review-logo {
  width: 120px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Casino logo in runners-up */
.ru-logo {
  width: 60px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.85rem;
}

.review-meta span {
  color: #555;
}

.review-meta strong {
  color: #1a1a2e;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

@media (min-width: 500px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-list, .cons-list {
  padding: 12px;
  border-radius: 6px;
}

.pros-list {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.cons-list {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pros-list h4, .cons-list h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.pros-list h4 {
  color: #166534;
}

.cons-list h4 {
  color: #991b1b;
}

.pros-list ul, .cons-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li, .cons-list li {
  font-size: 0.9rem;
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
  color: #333;
}

.pros-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.cons-list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.review-card .review-text p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

.review-card .sub-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.review-card .sub-ratings span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a2e;
}

.review-card .sub-ratings .rating-val {
  color: #D4A03C;
}

.review-card .review-cta {
  display: inline-block;
  margin-top: 10px;
  background-color: #22c55e;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.25);
}

.review-card .review-cta:hover {
  background-color: #16a34a;
  color: #fff;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

@media (min-width: 601px) {
  .comparison-table {
    display: table;
  }
}

.comparison-table thead {
  background: #1a1a2e;
  color: #D4A03C;
}

.comparison-table th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.comparison-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.comparison-table tbody tr:hover {
  background: #fffbeb;
}

/* --- Bonuses at a Glance Table --- */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.88rem;
}

.bonus-table thead {
  background: #1a1a2e;
  color: #D4A03C;
}

.bonus-table th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
}

.bonus-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
}

.bonus-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* --- How To Sign Up Steps --- */
.signup-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.signup-steps li {
  counter-increment: step-counter;
  position: relative;
  padding: 14px 14px 14px 56px;
  margin-bottom: 12px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  line-height: 1.65;
  color: #333;
}

.signup-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  background: #D4A03C;
  color: #1a1a2e;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* --- Tips List --- */
.tips-list {
  list-style: none;
  padding: 0;
}

.tips-list li {
  padding: 12px 14px;
  margin-bottom: 10px;
  border-left: 3px solid #D4A03C;
  background: #fffdf5;
  border-radius: 0 6px 6px 0;
  line-height: 1.65;
  color: #333;
}

/* --- FAQ Section --- */
.faq-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a2e;
  cursor: pointer;
  background: #fafafa;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}

.faq-item summary:hover {
  background: #fffbeb;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 700;
  color: #D4A03C;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item .faq-answer {
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  border-top: 1px solid #e0e0e0;
}

/* Remove default marker on summary in WebKit */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* --- Author Bio Box --- */
.author-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  margin: 40px 0;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}

@media (min-width: 500px) {
  .author-box {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #D4A03C;
  flex-shrink: 0;
  margin-bottom: 12px;
}

@media (min-width: 500px) {
  .author-box img {
    margin-bottom: 0;
  }
}

.author-box .author-info h3 {
  margin-top: 0;
  margin-bottom: 2px;
  font-size: 1.1rem;
  color: #1a1a2e;
}

.author-box .author-info .author-subtitle {
  font-size: 0.8rem;
  color: #D4A03C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.author-box .author-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

/* --- Responsible Gambling --- */
.responsible-gambling {
  text-align: center;
  padding: 24px 16px;
  margin: 32px 0;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.responsible-gambling p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 6px;
  line-height: 1.6;
}

.responsible-gambling .age-badge {
  display: inline-block;
  background: #1a1a2e;
  color: #D4A03C;
  font-weight: 800;
  font-size: 0.9rem;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 10px;
}

.responsible-gambling a {
  color: #D4A03C;
  text-decoration: underline;
}

/* --- Footer --- */
.site-footer {
  background: #1a1a2e;
  color: #aaa;
  text-align: center;
  padding: 24px 16px;
  font-size: 0.82rem;
  line-height: 1.8;
}

.site-footer a {
  color: #D4A03C;
  text-decoration: none;
}

.site-footer a:hover {
  color: #e8b64a;
  text-decoration: underline;
}

.site-footer .footer-links {
  margin-top: 8px;
}

.site-footer .footer-links a {
  margin: 0 8px;
}

.site-footer .footer-age {
  display: inline-block;
  background: #D4A03C;
  color: #1a1a2e;
  font-weight: 800;
  font-size: 0.75rem;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  margin-top: 10px;
}

/* --- Payment Methods Grid --- */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 500px) {
  .payment-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-item {
  padding: 14px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
}

.payment-item h4 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 6px;
  font-weight: 700;
}

.payment-item p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Games Grid --- */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 500px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.game-item {
  padding: 14px;
  background: #fffdf5;
  border: 1px solid #e8b64a;
  border-radius: 6px;
}

.game-item h4 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 6px;
  font-weight: 700;
}

.game-item p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Why Use Section --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-item {
  padding: 16px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #D4A03C;
  border-radius: 0 6px 6px 0;
}

.why-item h4 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 6px;
  font-weight: 700;
}

.why-item p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Ranking Section --- */
.ranking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 500px) {
  .ranking-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ranking-item {
  padding: 14px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
}

.ranking-item h4 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 6px;
  font-weight: 700;
}

.ranking-item p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Sticky Mobile CTA --- */
.mobile-sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #1a1a2e;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-cta a {
  display: block;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-sticky-cta a:hover {
  background: #16a34a;
  color: #fff;
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* Add padding at bottom on mobile so sticky CTA doesn't cover footer */
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 80px;
  }
}

/* --- Responsive H1 --- */
@media (min-width: 601px) {
  .hero-section h1 {
    font-size: 2.1rem;
  }
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 2.3rem;
  }

  .container {
    padding: 0 24px;
  }
}

/* --- Inline Review CTA within toplist text --- */
.inline-cta {
  color: #22c55e;
  font-weight: 700;
  text-decoration: underline;
}

.inline-cta:hover {
  color: #16a34a;
}

/* --- Why Ignition Section --- */
.why-ignition-list {
  list-style: none;
  padding: 0;
}

.why-ignition-list li {
  padding: 14px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fffdf5, #fff);
  border: 1px solid #e8b64a;
  border-radius: 6px;
  line-height: 1.65;
  color: #333;
}

.why-ignition-list li strong {
  display: block;
  color: #1a1a2e;
  margin-bottom: 4px;
  font-size: 1rem;
}

/* --- Exit Intent Popup --- */
.exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.exit-popup-overlay.active {
  display: flex;
}

.exit-popup {
  background: #ffffff;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.exit-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.exit-popup-close:hover {
  color: #333;
}

.exit-popup .popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4A03C, #e8b64a);
  color: #1a1a2e;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.exit-popup h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.exit-popup p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}

.exit-popup .popup-bonus {
  font-size: 1.6rem;
  font-weight: 800;
  color: #D4A03C;
  margin-bottom: 18px;
}

.exit-popup .popup-cta {
  display: block;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
}

.exit-popup .popup-cta:hover {
  background: #16a34a;
  color: #fff;
}

.exit-popup .popup-dismiss {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}

.exit-popup .popup-dismiss:hover {
  color: #666;
}
