/* Valentine Storm - Site Styles
 * Color palette: Pink #E91E8C, Magenta #AD1457, Gold #FFD700, Red #C62828
 * Mobile-first, responsive
 */

:root {
  --primary: #E91E8C;
  --primary-dark: #AD1457;
  --primary-light: #F48FB1;
  --accent-gold: #FFD700;
  --accent-red: #C62828;
  --accent-purple: #7B1FA2;
  --bg-gradient: linear-gradient(135deg, #1a0a12 0%, #2d1320 50%, #1a0a12 100%);
  --bg-card: rgba(173, 20, 87, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.65);
  --border-color: rgba(233, 30, 140, 0.4);
  --shadow: 0 4px 20px rgba(233, 30, 140, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Prevent wide content from shifting layout */
body > main {
  width: 100%;
  min-width: 0;
}

/* Skip link - accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* Header - scrolls with page (no sticky) */
.site-header {
  z-index: 1000;
  background: rgba(26, 10, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
}

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

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo:hover { color: var(--primary-light); }
.logo:hover img { opacity: 0.95; }

/* Desktop nav - hidden on mobile */
.main-nav {
  display: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--primary-light); }

/* PLAY NOW button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(233, 30, 140, 0.4);
}

/* Burger menu - mobile */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  aria-label: "Open menu";
}
.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s;
}
.burger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 10, 18, 0.98);
  z-index: 999;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu li { margin-bottom: 1rem; }
.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  display: block;
  padding: 0.5rem 0;
}
.mobile-menu a:hover { color: var(--primary-light); }
.mobile-menu .cta-button {
  margin-top: 1.5rem;
  justify-content: center;
}

/* Sticky bottom CTA - mobile only */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 0.75rem 1rem;
  z-index: 998;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.sticky-cta-bar.is-hidden { transform: translateY(100%); }
.sticky-cta-bar .cta-text {
  font-weight: 600;
  font-size: 0.95rem;
}
.sticky-cta-bar .cta-button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Main content */
main {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  box-sizing: border-box;
}

/* Hero */
.hero {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
}
.hero-content h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-stats .stat {
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-secondary {
  background: transparent !important;
  border: 2px solid var(--primary) !important;
}
.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  object-fit: contain;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Sections */
section {
  margin: 3rem 0;
}
section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}
section p { margin-bottom: 1rem; }
article > p { margin-bottom: 1rem; }

/* Content links - bold style with dotted underline */
main a:not(.cta-button):not(.nav-link):not(.nav-card) { 
  color: var(--text-primary); 
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted var(--text-muted);
  transition: border-color 0.2s;
}
main a:not(.cta-button):not(.nav-link):not(.nav-card):hover { 
  border-bottom-color: var(--primary-light);
  border-bottom-style: solid;
}

/* FAQ */
.faq-list { margin-top: 1rem; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1rem;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: none;
}
.faq-item.is-open .faq-answer { display: block; }

/* TOC */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.toc h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.toc ol { padding-left: 1.5rem; }
.toc li { margin-bottom: 0.5rem; }

/* Spec table */
.spec-table-wrap { overflow-x: auto; margin: 1rem 0; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.spec-table th, .spec-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  text-align: left;
}
.spec-table th { background: var(--bg-card); color: var(--primary-light); }
.spec-table tr:nth-child(even) { background: rgba(0,0,0,0.2); }

/* Strategy chart */
.strategy-chart-wrap {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow-x: auto;
}
.strategy-chart {
  display: block;
  max-width: 100%;
  height: auto;
}
.strategy-chart-caption {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.strategy-chart-note {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(233,30,140,0.08);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Strategy page figures */
.strategy-fig {
  margin: 1.5rem auto;
  max-width: 600px;
  text-align: center;
}
.strategy-fig img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.strategy-fig figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Feature list */
.feature-list { list-style: none; }
.feature-list li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
.feature-list li strong { color: var(--primary-light); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; border-radius: 8px; border: 1px solid var(--border-color); }
.gallery-grid figcaption {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { 
  color: var(--text-muted); 
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--text-primary);
}

/* Error page */
.error-page { text-align: center; padding: 3rem 1rem; }
.error-page h1 { margin-bottom: 1rem; }
.error-page p { margin-bottom: 1rem; }

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-color);
  padding: 3rem 1rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s;
}
.footer-column a:hover { 
  color: var(--text-primary);
  border-bottom-color: var(--text-muted);
}

.footer-about p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 280px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.trust-badges img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

/* Disclaimer */
.footer-disclaimer {
  background: rgba(198, 40, 40, 0.2);
  border: 1px solid rgba(198, 40, 40, 0.4);
  border-radius: 8px;
  padding: 1rem;
  margin: 2rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Desktop */
@media (min-width: 768px) {
  .burger-btn { display: none; }
  .main-nav { display: block; }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 480px) {
  .sticky-cta-bar { display: flex; }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content h1 { font-size: 2.25rem; }
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.step-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-light); }
.step p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

.section-cta { margin-top: 1.5rem; text-align: center; }
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  border-radius: 8px;
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Casino evaluation */
.casino-evaluation {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.casino-evaluation h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-light); }
.casino-evaluation p { margin: 0; font-size: 0.95rem; }
.casino-cta { margin: 1.5rem 0; text-align: center; }
.affiliate-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }

/* Calculator */
.calculator-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 500px;
}
.calculator-inputs { display: flex; flex-direction: column; gap: 1rem; }
.input-group { display: flex; flex-direction: column; gap: 0.5rem; }
.input-group label { font-weight: 600; font-size: 0.95rem; }
.input-group input {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(0,0,0,0.3);
  color: var(--text-primary);
  font-size: 1rem;
}
.input-group input:focus {
  outline: none;
  border-color: var(--primary);
}
.calculator-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}
.result-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 1rem;
}
.result-label { color: var(--text-secondary); }
.result-value { font-weight: 700; color: var(--accent-gold); }
.result-warning .result-value { color: var(--text-muted); font-size: 0.95rem; }
.calculator-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(198, 40, 40, 0.15);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Comparison table */
.comparison-table-wrap { overflow-x: auto; margin: 1rem 0; }
.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th, .comparison-table td {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  text-align: center;
}
.comparison-table th { background: var(--bg-card); color: var(--text-secondary); }
.comparison-table th.highlight, .comparison-table td.highlight {
  background: rgba(233, 30, 140, 0.15);
  font-weight: 600;
  color: var(--primary-light);
}
.comparison-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Warning box */
.warning-box {
  background: rgba(198, 40, 40, 0.2);
  border: 1px solid rgba(198, 40, 40, 0.5);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Strategy preview */
.strategy-preview { display: grid; gap: 1.5rem; margin: 1rem 0; }
@media (min-width: 640px) {
  .strategy-preview { grid-template-columns: 1fr 1fr; }
}
.strategy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}
.strategy-card h3 { font-size: 1.1rem; color: var(--primary-light); margin-bottom: 0.75rem; }
.strategy-card p { margin-bottom: 0.5rem; font-size: 0.95rem; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}
.testimonial-info strong { display: block; font-size: 1rem; }
.testimonial-info span { font-size: 0.85rem; color: var(--text-muted); }
.testimonial .rating { color: var(--accent-gold); margin-top: 0.25rem; }
.testimonial blockquote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.testimonials-disclaimer { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }

/* Share feedback */
.testimonials-feedback {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}
.testimonials-feedback h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--primary-light); }
.feedback-instructions { margin-top: 1.5rem; }
.feedback-instructions h4 { font-size: 1rem; margin-bottom: 1rem; }
.feedback-instructions ol { padding-left: 1.25rem; }
.feedback-instructions li { margin-bottom: 1rem; font-size: 0.95rem; }
.feedback-note {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
}
.feedback-note p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
.feedback-cta { margin-top: 1.5rem; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 10, 18, 0.98);
  padding: 1rem 1.5rem;
  z-index: 10000;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 250px; }
.cookie-text p { margin: 0; font-size: 0.9rem; line-height: 1.5; }
.cookie-text a { color: var(--primary-light); }
.cookie-buttons { display: flex; gap: 0.75rem; }
.btn-secondary {
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}
@media (max-width: 640px) {
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-buttons button { width: 100%; }
}

/* Author Profile */
.author-profile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}
.author-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}
.author-details h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--primary-light);
}
.author-title {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}
.author-location {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.author-bio p { margin-bottom: 1rem; }
.author-bio h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--primary-light);
}
.author-bio ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.author-bio li { margin-bottom: 0.5rem; }
.author-contact {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
@media (max-width: 480px) {
  .author-header { flex-direction: column; align-items: center; text-align: center; }
  .author-photo { width: 100px; height: 100px; }
}

/* Demo Modal */
.demo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.demo-modal--visible { opacity: 1; }
.demo-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.demo-modal-content {
  position: relative;
  width: 95%;
  max-width: 1200px;
  height: 90vh;
  max-height: 800px;
  background: var(--bg-card);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.demo-modal--visible .demo-modal-content { transform: scale(1); }
.demo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}
.demo-modal-header h2 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--primary-light);
}
.demo-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.demo-modal-close:hover { color: var(--primary); }
.demo-modal-body {
  flex: 1;
  position: relative;
  background: #000;
}
.demo-modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-modal-footer {
  padding: 0.75rem 1.5rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  text-align: center;
}
.demo-modal-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.demo-modal-footer a { color: var(--primary-light); }
@media (max-width: 768px) {
  .demo-modal-content { width: 100%; height: 100vh; max-height: none; border-radius: 0; }
  .demo-modal-header h2 { font-size: 1rem; }
}

/* Demo Game Embedded Container */
.demo-game-section { margin: 2rem 0; }
.demo-open-hint {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.demo-play-new-window {
  margin-top: 1rem;
  margin-bottom: 0;
}
.demo-play-new-window .cta-button {
  display: inline-flex;
}
.demo-game-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.demo-game-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-disclaimer {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 193, 7, 0.1);
  border-left: 3px solid var(--accent-gold);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.demo-cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* ===== NEW SECTIONS FROM ICEFISHINGLIVE TEMPLATE ===== */

/* Key Facts Table */
.key-facts { margin: 3rem 0; }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.facts-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}
.facts-table {
  width: 100%;
  border-collapse: collapse;
}
.facts-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}
.facts-table tr:last-child td { border-bottom: none; }
.facts-table td:first-child {
  width: 50px;
  font-size: 1.5rem;
  text-align: center;
}
.facts-table td:nth-child(2) {
  color: var(--text-muted);
  font-weight: 500;
}
.facts-table td:nth-child(3) {
  color: var(--text-primary);
}
.facts-table strong { color: var(--primary-light); }

/* Quick Navigation Cards */
.quick-nav { margin: 3rem 0; }
.nav-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.nav-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(173, 20, 87, 0.2);
}
.nav-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.nav-card h3 {
  color: var(--primary-light);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.nav-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.nav-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Casino Cards Grid */
.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.casino-card {
  background: rgba(45, 19, 32, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.casino-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.15);
}
.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}
.casino-logo {
  max-height: 40px;
  width: auto;
  filter: brightness(1.05);
}
.casino-rating {
  text-align: right;
}
.rating-stars {
  display: block;
  color: var(--accent-gold);
  font-size: 1rem;
}
.rating-value {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.casino-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.casino-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.casino-bonus {
  background: rgba(173, 20, 87, 0.25);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(233, 30, 140, 0.25);
}
.bonus-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.bonus-value {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 1.1rem;
}
.casino-cta-btn {
  width: 100%;
  text-align: center;
}
.casino-tip {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(173, 20, 87, 0.1) 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  margin: 3rem 0;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.stat-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Verdict Section */
.verdict-section { margin: 3rem 0; }
.verdict-intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.verdict-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}
.verdict-summary {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.verdict-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.verdict-pros, .verdict-cons {
  background: var(--bg-surface);
  border-radius: 8px;
  padding: 1.5rem;
}
.verdict-pros h3 { color: #4caf50; }
.verdict-cons h3 { color: #ff9800; }
.verdict-pros ul, .verdict-cons ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.verdict-pros li, .verdict-cons li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  line-height: 1.5;
}
.verdict-pros li:last-child, .verdict-cons li:last-child { border-bottom: none; }
.verdict-final {
  background: linear-gradient(135deg, rgba(173, 20, 87, 0.15) 0%, rgba(173, 20, 87, 0.05) 100%);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.verdict-final h3 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}
.verdict-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.rating-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}
.verdict-rating .rating-stars {
  font-size: 1.5rem;
  color: var(--accent-gold);
}
.verdict-final p {
  margin: 0.75rem 0;
  text-align: left;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-value { font-size: 1.75rem; }
  .stat-card { padding: 1.25rem 1rem; }
  .verdict-columns { grid-template-columns: 1fr; }
  .nav-cards-grid { grid-template-columns: 1fr; }
  .casinos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .facts-table td { padding: 0.75rem; font-size: 0.9rem; }
  .facts-table td:first-child { font-size: 1.25rem; }
}

/* ===== HOW TO PLAY PAGE ===== */

/* Hero section */
.htp-hero {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(173, 20, 87, 0.15) 0%, rgba(173, 20, 87, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}
.htp-hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.htp-hero-desc {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.htp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.htp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.htp-badge span:first-child {
  font-size: 1.1rem;
}
.htp-hero-fig {
  margin: 2rem auto 1.5rem;
  max-width: 800px;
}
.htp-hero-fig img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.htp-hero-fig figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Section figures (how-to-play) */
.htp-fig {
  margin: 1.5rem auto;
  max-width: 600px;
  text-align: center;
}
.htp-fig img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.htp-fig figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.htp-step-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Bonuses page figures */
.bonuses-hero-fig {
  margin: 2rem auto 1.5rem;
  max-width: 800px;
  text-align: center;
}
.bonuses-hero-fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}
.bonuses-hero-fig figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.bonuses-fig {
  margin: 1.5rem auto;
  max-width: 600px;
  text-align: center;
}
.bonuses-fig img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.bonuses-fig figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.bonuses-table-caption {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Download page diagrams */
.download-diagram-caption {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.download-chart-wrap {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow-x: auto;
}
.download-diagram {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Table of Contents */
.htp-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.htp-toc h2 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}
.htp-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.htp-toc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.htp-toc-item:hover {
  border-color: var(--primary);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.htp-toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Basics cards */
.htp-basics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.htp-basics-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}
.htp-basics-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.htp-basics-card h3 {
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.htp-basics-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Numbered Steps */
.htp-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.htp-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}
.htp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
}
.htp-step-card h3 {
  color: var(--primary-light);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.htp-step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.htp-step-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.htp-step-card ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.htp-step-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.htp-step-card img {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Symbol cards */
.htp-symbols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.htp-symbol-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.htp-symbol-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}
.htp-symbol-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.htp-symbol-card h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.htp-symbol-multi {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.htp-symbol-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.htp-symbol-card.htp-premium {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, var(--bg-card) 100%);
}
.htp-symbol-card.htp-special {
  border-color: var(--primary-light);
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, var(--bg-card) 100%);
}

/* Bonus cards */
.htp-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.htp-bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s;
}
.htp-bonus-card:hover {
  transform: translateY(-3px);
}
.htp-bonus-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.htp-bonus-card h3 {
  color: var(--primary-light);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.htp-bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.htp-bonus-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.htp-bonus-stat {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
}
.htp-bonus-stat-label {
  color: var(--text-muted);
}
.htp-bonus-stat-value {
  color: var(--primary-light);
  font-weight: 600;
}

/* Jackpot cards */
.htp-jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.htp-jackpot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.htp-jackpot-card:hover {
  transform: translateY(-3px);
}
.htp-jackpot-card h3 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.htp-jackpot-value {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.htp-jackpot-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.htp-jackpot-mini { border-color: #64b5f6; }
.htp-jackpot-mini .htp-jackpot-value { color: #64b5f6; }
.htp-jackpot-minor { border-color: #81c784; }
.htp-jackpot-minor .htp-jackpot-value { color: #81c784; }
.htp-jackpot-major { border-color: #ffb74d; }
.htp-jackpot-major .htp-jackpot-value { color: #ffb74d; }
.htp-jackpot-grand { border-color: var(--accent-gold); background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--bg-card) 100%); }
.htp-jackpot-grand .htp-jackpot-value { color: var(--accent-gold); }

/* Tips cards */
.htp-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.htp-tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s;
}
.htp-tip-card:hover {
  transform: translateY(-3px);
}
.htp-tip-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.htp-tip-card h3 {
  color: var(--primary-light);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.htp-tip-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.htp-tip-card ul li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.htp-tip-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

/* Interface controls list */
.htp-controls-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.htp-controls-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  align-items: flex-start;
}
.htp-control-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.htp-controls-list li strong {
  color: var(--primary-light);
  display: block;
  margin-bottom: 0.25rem;
}
.htp-controls-list li span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Section subtitle */
.htp-section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Center headings and card grids on How to Play page */
.htp-guide section h2,
.htp-guide section h3 {
  text-align: center;
}
.htp-guide .htp-basics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.htp-guide .htp-basics-card {
  min-width: 250px;
  max-width: 360px;
  flex: 1 1 250px;
}
.htp-guide .htp-symbols-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.htp-guide .htp-symbol-card {
  min-width: 220px;
  flex: 0 1 220px;
}
.htp-guide .htp-bonus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.htp-guide .htp-bonus-card {
  min-width: 280px;
  max-width: 380px;
  flex: 1 1 280px;
}
.htp-guide .htp-jackpots-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.htp-guide .htp-jackpot-card {
  min-width: 200px;
  flex: 0 1 200px;
}
.htp-guide .htp-tips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.htp-guide .htp-tip-card {
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
}
.htp-guide .htp-toc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.htp-guide .htp-toc-item {
  flex: 0 1 180px;
  min-width: 160px;
}
.htp-guide section img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (min-width: 768px) {
  .htp-hero h1 { font-size: 2.5rem; }
  .htp-steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .htp-hero { padding: 1.5rem 1rem; }
  .htp-hero h1 { font-size: 1.5rem; }
  .htp-toc-grid { grid-template-columns: 1fr; }
  .htp-badge { font-size: 0.8rem; padding: 0.4rem 0.75rem; }
}

/* Where to Play - Casino cards grid (as in reference: 2 rows × 3 cols) */
.casino-cards-section {
  margin: 2.5rem 0;
  width: 100%;
}
.casino-cards-section .section-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}
.casino-cards-section .section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 720px;
}
.casino-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
}
@media (min-width: 576px) {
  .casino-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .casino-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.casino-card {
  background: rgba(45, 19, 32, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  min-height: 0;
}
.casino-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}
.casino-card-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(1.05);
}
.casino-card-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.2;
}
.casino-card-rating {
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.casino-card-features {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
  flex: 1 1 auto;
  min-height: 0;
}
.casino-card-features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.3rem;
}
.casino-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.95rem;
}
.casino-card-bonuses {
  background: rgba(173, 20, 87, 0.25);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  flex-shrink: 0;
  border: 1px solid rgba(233, 30, 140, 0.25);
}
.casino-card-bonuses strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.casino-card-bonuses ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.casino-card .cta-button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  flex-shrink: 0;
  padding: 0.75rem 1rem;
}
.casino-card .cta-button:hover {
  color: #fff !important;
}
