/* ===== SLOTS PAGE STYLES ===== */
:root {
  --space-1: 0.35rem;
  --space-2: 0.6rem;
  --space-3: 0.85rem;
  --space-4: 1.2rem;
  --space-5: 1.5rem;
  --space-6: 1.8rem;
  --space-8: 2.5rem;
  --space-10: 3rem;
  --space-12: 4rem;
  --space-16: 6rem;
}

/* Hero Section */
.slots-hero {
  padding: var(--space-12) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.slots-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.slots-hero .hero-text h1 {
  font-size: var(--font-size-3xl);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .slots-hero .hero-text h1 {
    font-size: var(--font-size-4xl);
  }
}

.slots-hero .hero-subtext {
  font-size: var(--font-size-lg);
  color: var(--muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;

}

.slots-hero .hero-buttons {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .slots-hero .hero-buttons {
    gap: var(--space-6);
    flex-wrap: nowrap;
  }

  .slots-hero .hero-buttons .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
  }

  .slots-hero .hero-buttons .btn-ghost {
    border: 1px solid var(--line);
  }

  .slots-hero .hero-buttons .btn-ghost:hover {
    border-color: var(--brand);
    background: var(--surface);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
}


.slots-hero-content {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .slots-hero-content {
    grid-template-columns: 2fr 1fr;
  }
}

/* Enhanced Badge Styles for Guide Pages */
.hero-badges .badge {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  border-radius: 50px;
  gap: var(--space-2);
}

/* Section Titles */
.slots-section {
  padding: var(--space-16) 0;
}

.slots-section:nth-child(even) {
  background: #ffffff;
}

.slots-section-title {
  text-align: center;
  margin-bottom: var(--space-2);
}

.slots-section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-12);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CASINO SLOT LIST ===== */
.casino-slot-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.casino-slot-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.25s ease;
  position: relative;
}

.casino-slot-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.casino-slot-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 4px 20px rgba(245, 158, 11, 0.12);
}

.casino-slot-badge {
  position: absolute;
  top: -12px;
  left: var(--space-6);
  background: var(--brand);
  color: #ffffff;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.casino-slot-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.casino-slot-logo img {
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.casino-slot-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0 0 var(--space-1) 0;
}

.casino-slot-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.rating-score {
  font-weight: 600;
  font-size: var(--font-size-base);
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: var(--brand);
  font-size: var(--font-size-sm);
}

.casino-slot-details {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .casino-slot-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr auto;
    gap: var(--space-6);
    align-items: center;
  }

  .casino-slot-header {
    margin-bottom: 0;
  }

  .casino-slot-details {
    margin-bottom: 0;
  }
}

.casino-slot-bonus {
  margin-bottom: var(--space-2);
}

.bonus-label {
  font-size: var(--font-size-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.bonus-value {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text);
}

.casino-slot-features {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.casino-slot-features i {
  color: var(--accent);
  margin-right: var(--space-1);
}

.casino-slot-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: stretch;
}

@media (min-width: 768px) {
  .casino-slot-actions {
    min-width: 160px;
  }
}

/* ===== SLOT TYPE GRID ===== */
.slot-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .slot-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .slot-type-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

.slot-type-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-4) var(--space-6);
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.slot-type-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
  transform: translateY(-4px);
}

.slot-type-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--brand-600);
  flex-shrink: 0;
}

.slot-type-card h3 {
  font-size: var(--font-size-base);
  margin: 0;
  font-weight: 600;
}

.slot-type-card p {
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.slot-type-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  margin-top: auto;
  padding-top: var(--space-2);
  transition: gap 0.2s ease;
}

.slot-type-cta:hover {
  color: var(--brand-600);
  gap: var(--space-2);
}

/* ===== POPULAR SLOTS GRID (Dual-Action Cards) ===== */
.popular-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .popular-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .popular-slots-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.popular-slot-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  outline: none;
}

.popular-slot-card:hover,
.popular-slot-card:focus-within {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  border-color: var(--brand);
}

/* Thumbnail */
.popular-slot-thumb-wrap {
  position: relative;
  overflow: hidden;
}

.popular-slot-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.popular-slot-card:hover .popular-slot-thumb {
  transform: scale(1.04);
}

/* Info */
.popular-slot-info {
  padding: var(--space-3) var(--space-4) 0;
  text-align: center;
}

.popular-slot-name {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.popular-slot-provider {
  font-size: var(--font-size-xs);
  color: var(--muted);
}

/* === Dual-Action Buttons === */
.popular-slot-actions {
  padding: var(--space-3) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
}

/* Primary: Play Demo (always visible) */
.btn-slot-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-3);
  background: var(--brand);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-slot-demo:hover {
  background: var(--brand-600);
  transform: scale(1.02);
  color: #ffffff;
}

/* Secondary: Play for Real Money (affiliate) */
.btn-slot-real {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-slot-real:hover {
  background: rgba(245, 158, 11, 0.08);
  color: var(--brand-600);
  border-color: var(--brand-600);
}

/* Desktop: hide affiliate button until hover/focus */
@media (min-width: 768px) {
  .btn-slot-real {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    border-width: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, max-height 0.25s ease, padding 0.25s ease, border-width 0.25s ease;
  }

  .popular-slot-card:hover .btn-slot-real,
  .popular-slot-card:focus-within .btn-slot-real {
    opacity: 1;
    max-height: 50px;
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
    border-width: 1px;
  }
}

/* Mobile: both buttons always visible */
@media (max-width: 767px) {
  .btn-slot-real {
    opacity: 1;
    max-height: none;
  }
}

/* ===== INFO BLOCKS (RTP & Volatility) ===== */
.info-blocks {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .info-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

.info-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-600));
}

.info-block-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-600);
  margin-bottom: var(--space-4);
}

.info-block h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.info-block p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* RTP Examples */
.rtp-examples {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.rtp-tier {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius);
  font-size: var(--font-size-sm);
}

.rtp-label {
  color: var(--muted);
  font-weight: 500;
}

.rtp-value {
  font-weight: 700;
}

.rtp-value.good {
  color: #16a34a;
}

.rtp-value.avg {
  color: var(--brand-600);
}

.rtp-value.low {
  color: #dc2626;
}

/* Volatility Table */
.volatility-table {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.vol-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius);
  font-size: var(--font-size-sm);
}

.vol-type {
  font-weight: 600;
  min-width: 90px;
  flex-shrink: 0;
}

.vol-desc {
  color: var(--muted);
}

/* ===== HOW SLOTS WORK GRID ===== */
.how-slots-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .how-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-slot-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}

.how-slot-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
}

.how-slot-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.how-slot-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== SLOT REVIEWS ===== */
.slot-review {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-8);
  align-items: start;
  padding: var(--space-8);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-8);
}

@media (max-width: 1023px) {
  .slot-review {
    grid-template-columns: 1fr;
  }
}

.slot-review-name {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.slot-review-provider {
  color: var(--muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Specs Grid */
.slot-review-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (max-width: 600px) {
  .slot-review-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.spec-value {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text);
}

.spec-value.spec-high {
  color: #e74c3c;
}

.spec-value.spec-medium {
  color: #f39c12;
}

.spec-value.spec-low {
  color: #27ae60;
}

/* Review Body */
.slot-review-body p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.slot-review-body p:last-child {
  margin-bottom: 0;
}

.slot-review-body strong {
  color: var(--text);
  font-weight: 600;
}

/* Features List */
.slot-review-features {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.slot-review-features h4 {
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.slot-review-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.slot-review-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.slot-review-features li i {
  color: var(--brand);
  font-size: var(--font-size-base);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Verdict Box */
.slot-review-verdict {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--text);
}

.slot-review-verdict>i {
  color: var(--brand);
  font-size: var(--font-size-xl);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar Card */
.slot-review-sidebar {
  position: sticky;
  top: 80px;
}

.slot-review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
}

.slot-review-thumb-wrap {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  padding: var(--space-4);
}

.slot-review-thumb {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.slot-review-card-actions {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.slot-review-card-actions .btn {
  width: 100%;
  justify-content: center;
}

.slot-review-card-footer {
  padding: var(--space-2) var(--space-4);
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ===== CTA BANNER ===== */
.slots-cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.slots-cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  text-align: center;
  flex-wrap: wrap;
}

.cta-banner-visual {
  flex-shrink: 0;
}

.cta-mascot {
  width: 140px;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .cta-mascot {
    width: 100px;
  }
}

.cta-banner-text h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .cta-banner-text h2 {
    font-size: var(--font-size-4xl);
  }
}

.cta-banner-text p {
  color: var(--muted);
  font-size: var(--font-size-lg);
  max-width: 500px;
  margin: 0 auto var(--space-6);
}

.cta-banner-actions .btn-large {
  padding: var(--space-4) var(--space-10);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: var(--space-4);
  transition: color 0.2s ease;
}

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

.faq-question i {
  font-size: var(--font-size-sm);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer-inner a {
  font-weight: 600;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: var(--space-4) 0;
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--brand);
}

.breadcrumbs .separator {
  margin: 0 var(--space-2);
}

/* ===== RESPONSIBLE GAMBLING ===== */
.slots-responsible {
  text-align: center;
  padding: var(--space-8) 0;
  color: var(--muted);
  font-size: var(--font-size-sm);
  border-top: 1px solid var(--line);
  margin-top: var(--space-8);
}

.slots-responsible i {
  color: var(--accent);
  margin-right: var(--space-2);
}

/* ===== GLOBAL BTN-LARGE ===== */
.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* ===== SLOT DEMO MODAL ===== */
.slot-demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.slot-demo-overlay[hidden] {
  display: none;
}

.slot-demo-container {
  background: #1a1a2e;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slot-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.slot-demo-title {
  color: #ffffff;
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.slot-demo-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.slot-demo-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.slot-demo-body {
  flex: 1;
  min-height: 0;
  position: relative;
  background: #000;
}

.slot-demo-iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

@media (max-width: 767px) {
  .slot-demo-iframe {
    height: 60vh;
  }

  .slot-demo-container {
    max-height: 95vh;
    border-radius: var(--radius-lg);
  }

  .slot-demo-header {
    padding: var(--space-3) var(--space-4);
  }

  .slot-demo-title {
    font-size: var(--font-size-base);
  }
}

/* ===== EXPANDED AESTHETICS ===== */

/* Symbol Grid Expanded */
.symbol-grid-expanded {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .symbol-grid-expanded {
    grid-template-columns: repeat(2, 1fr);
  }
}

.symbol-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 640px) {
  .symbol-card {
    flex-direction: row;
  }
}

.symbol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--brand);
}

.symbol-icon {
  width: 60px;
  height: 60px;
  background: white;
  color: var(--brand);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.symbol-content h3 {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-xl);
  color: var(--text);
}

.symbol-types {
  margin-top: var(--space-2);
  padding-left: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--muted);
  list-style-type: none;
  /* Removing default bullets for custom look if needed, or keeping standard */
}

/* Timeline Steps */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  position: relative;
  padding-left: var(--space-4);
}

/* Vertical Line */


.timeline-item {
  display: flex;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  flex-shrink: 0;
  border: 4px solid var(--bg);
  /* Gap effect against line */
}

.step-content {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  flex-grow: 1;
}

.step-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
  color: var(--brand-600);
}

/* TOC Styling */
.toc-container {
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.toc-container ol {
  padding-left: var(--space-4);
}

.toc-container li {
  margin-bottom: var(--space-2);
}

.toc-container a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.toc-container a:hover {
  text-decoration: underline;
  color: var(--brand);
}

/* Glossary Table Styles */
.glossary-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.glossary-table th {
  background-color: var(--surface);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  letter-spacing: 0.05em;
  padding: var(--space-4);
  border-bottom: 2px solid var(--line);
}

.glossary-table td {
  padding: var(--space-4);
  vertical-align: top;
  font-size: var(--font-size-base);
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.glossary-table td:first-child {
  font-weight: 600;
  color: var(--brand-600);
  width: 30%;
}


.slot-demo-footer {
  padding: var(--space-3) var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.slot-demo-notice {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
}

.slot-demo-notice i {
  margin-right: var(--space-1);
}

/* ===== NEW CONCEPTS GRID (RTP/Volatility) ===== */
.concepts-grid {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

@media (min-width: 768px) {
  .concepts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .concepts-grid:has(.concept-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.concept-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.concept-header {
  padding: var(--space-6);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.concept-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.concept-header h3 {
  margin: 0;
  font-size: var(--font-size-lg);
}

.concept-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.concept-desc {
  color: var(--muted);
  margin-bottom: var(--space-6);
}

/* RTP Visuals */
.rtp-bar-container {
  height: 12px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--space-2);
}

.rtp-bar {
  height: 100%;
  background: linear-gradient(90deg, #ef4444 0%, #eab308 50%, #22c55e 100%);
  border-radius: 10px;
}

.rtp-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: var(--muted);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

/* Volatility Visuals */
.volatility-scale {
  display: flex;
  gap: 4px;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.scale-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.scale-bar {
  width: 100%;
  height: 8px;
  background: var(--surface);
  border-radius: 4px;
}

.scale-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--muted);
}

.scale-item.low .scale-bar {
  background: #22c55e;
}

.scale-item.medium .scale-bar {
  background: #eab308;
  opacity: 0.3;
}

.scale-item.high .scale-bar {
  background: #ef4444;
  opacity: 0.3;
}

.concept-list {
  margin-top: auto;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
}

.concept-list li {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  display: flex;
  gap: var(--space-2);
}


/* ===== STEPS GRID (Process Cards) ===== */
.steps-grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  transition: transform 0.2s;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
}

.step-badge {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: white;
  font-weight: bold;
  font-size: var(--font-size-lg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.step-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.step-card p {
  font-size: var(--font-size-sm);
  color: var(--muted);
  line-height: 1.6;
}

/* ===== STRATEGY GRID ===== */
.strategy-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .strategy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strategy-card {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.strategy-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--brand-600);
}

.strategy-header i {
  font-size: 1.5rem;
}

.strategy-header h3 {
  font-size: var(--font-size-lg);
  margin: 0;
  color: var(--text);
}

/* Utility for columns */
.three-col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .info-blocks.three-col {
    grid-template-columns: 1fr;
  }
}

/* ===== MASCOT STANDARDIZATION ===== */
.hero-mascot {
  width: 280px !important;
  /* Force override of attributes */
  height: auto !important;
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@media (min-width: 768px) {
  .hero-mascot {
    width: 400px !important;
  }
}

/* ===== INTERNAL LINK HUB ===== */
.slots-guides-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .slots-guides-hub {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guide-link-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.guide-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.guide-link-card:hover {
  border-color: #fbbf24;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.guide-link-card:hover::before {
  transform: scaleX(1);
}

.guide-link-card .guide-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.guide-link-card .guide-icon.icon-slots {
  background: #e0e7ff;
  color: #4338ca;
}

.guide-link-card .guide-icon.icon-types {
  background: #fef3c7;
  color: #b45309;
}

.guide-link-card .guide-icon.icon-howto {
  background: #d1fae5;
  color: #047857;
}

.guide-link-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
  color: var(--heading);
}

.guide-link-card p {
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin-bottom: var(--space-4);
  flex: 1;
}

.guide-link-card .guide-cta {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guide-link-card:hover .guide-cta {
  gap: 10px;
}

.guide-link-card .guide-cta i {
  transition: transform 0.2s ease;
}

.guide-link-card:hover .guide-cta i {
  transform: translateX(3px);
}

/* ===== TYPES PAGE: COMPARISON TABLE ===== */
.comparison-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.comparison-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.comparison-table-wrap thead tr {
  background: linear-gradient(135deg, #1e293b, #334155) !important;
}

.comparison-table-wrap thead th {
  color: white !important;
  font-weight: 600;
  padding: var(--space-4) var(--space-5);
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  letter-spacing: 0.05em;
}

.comparison-table-wrap tbody tr {
  transition: background 0.15s ease;
}

.comparison-table-wrap tbody tr:hover {
  background: #fef9ee;
}

.comparison-table-wrap tbody td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--line);
  font-size: var(--font-size-sm);
}

.comparison-table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table-wrap .type-name {
  font-weight: 700;
  color: var(--brand-600);
}

/* ===== TYPES PAGE: RISK CHART ===== */
.risk-chart-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.risk-bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.risk-bar-label {
  width: 110px;
  font-weight: 700;
  font-size: var(--font-size-sm);
  flex-shrink: 0;
}

.risk-bar-track {
  flex: 1;
  background: #e2e8f0;
  border-radius: 12px;
  height: 28px;
  position: relative;
  overflow: hidden;
}

.risk-bar-fill {
  height: 100%;
  border-radius: 12px;
  transition: width 1s ease;
  position: relative;
}

.risk-bar-fill.fill-classic {
  width: 20%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.risk-bar-fill.fill-video {
  width: 45%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.risk-bar-fill.fill-megaways {
  width: 75%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.risk-bar-fill.fill-jackpot {
  width: 100%;
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.risk-bar-max {
  font-size: 11px;
  color: var(--muted);
  margin-left: var(--space-2);
  white-space: nowrap;
  min-width: 120px;
  font-weight: 500;
}

/* ===== TYPES PAGE: MYTH CARDS ===== */
.myth-facts-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.myth-fact-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--line);
}

.myth-fact-card .myth-part {
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-bottom: 2px solid #fca5a5;
}

.myth-fact-card .myth-part h4 {
  color: #dc2626;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.myth-fact-card .myth-part p {
  font-style: italic;
  color: #1e293b;
  margin: 0;
  font-size: var(--font-size-sm);
}

.myth-fact-card .fact-part {
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.myth-fact-card .fact-part h4 {
  color: #16a34a;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.myth-fact-card .fact-part p {
  color: #1e293b;
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* ===== TYPES PAGE: TIMELINE ===== */
.timeline-enhanced {
  position: relative;
  padding-left: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-enhanced::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #fbbf24, #d97706);
  border-radius: 3px;
}

.timeline-enhanced .timeline-entry {
  position: relative;
  padding: var(--space-5) var(--space-6);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  transition: all 0.25s ease;
}

.timeline-enhanced .timeline-entry:hover {
  border-color: #fbbf24;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.timeline-enhanced .timeline-entry::before {
  content: attr(data-step);
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  z-index: 1;
}

.timeline-enhanced .timeline-entry h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-2);
  color: var(--heading);
}

.timeline-enhanced .timeline-entry p {
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== TYPES PAGE: SECTION HEADER ENHANCEMENT ===== */
.types-section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.types-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: var(--space-2);
}

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