/* ============================================
   UNIQUE PREMIUM DESIGN - 2025
   Teal & Slate – Professional, Trust, Clarity
   ============================================ */

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

:root {
  /* Brand Color Palette – Teal & Slate */
  --primary-gradient: linear-gradient(135deg, #0D9488 0%, #0F766E 50%, #134E4A 100%);
  --secondary-gradient: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
  --accent-gradient: linear-gradient(135deg, #0F766E 0%, #0D9488 100%);
  --highlight-gradient: linear-gradient(135deg, #2DD4BF 0%, #14B8A6 100%);
  --dark-gradient: linear-gradient(135deg, #134E4A 0%, #0F766E 50%, #0D9488 100%);
  
  /* Background Colors – Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f0fdfa;
  --bg-overlay: rgba(255, 255, 255, 0.98);
  --bg-accent: #f0fdfa;
  
  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-accent: #0D9488;
  --text-accent-hover: #0F766E;
  
  /* Brand Colors */
  --brand-primary: #0D9488;
  --brand-secondary: #14B8A6;
  --brand-dark: #0F766E;
  --brand-darker: #134E4A;
  --brand-light: #2DD4BF;
  
  /* Border & Shadow */
  --border-color: #e2e8f0;
  --border-accent: rgba(13, 148, 136, 0.35);
  --border-gold: rgba(20, 184, 166, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(13, 148, 136, 0.25);
  --shadow-gold: 0 0 24px rgba(20, 184, 166, 0.3);
  
  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 96px;
}

html {
  -webkit-scroll-behavior: smooth;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  height: auto;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(45, 212, 191, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100vw;
  position: relative;
  min-height: 100vh;
}

main {
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Container System ===== */
.page-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  position: relative;
}

.content-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ===== Top Navigation Bar ===== */
.topbar {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000 !important;
  background: var(--bg-overlay);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 2px solid var(--border-accent);
  box-shadow: var(--shadow-md);
  padding: 20px 0;
  width: 100%;
  margin: 0;
  display: block;
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.logo-wrapper:hover .logo-icon::before {
  left: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 900;
  font-size: 1.4rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 12px 22px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  opacity: 0.1;
}

.nav-link:hover::after {
  width: 80%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cta-button {
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(13, 148, 136, 0.4);
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle:focus {
  outline: 2px solid var(--text-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

/* ===== Hero / Intro Section ===== */
.intro-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.intro-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.intro-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.intro-section .page-wrapper {
  max-width: 1800px;
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.badge-label {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(13, 148, 136, 0.1);
  border: 2px solid var(--border-accent);
  color: var(--brand-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  backdrop-filter: blur(10px);
}

.intro-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.intro-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.intro-author {
  color: var(--text-primary);
  font-weight: 700;
}

.intro-date {
  color: var(--text-muted);
}

.intro-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 100%;
}

.intro-description.secondary {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ===== Intro Read More ===== */
.intro-read-more-wrapper {
  margin: 20px 0;
}

.intro-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--text-accent);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  text-decoration: none;
  position: relative;
}

.intro-read-more-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.intro-read-more-btn:hover {
  color: var(--brand-dark);
}

.intro-read-more-btn:hover::after {
  width: 100%;
}

.read-more-icon {
  font-size: 0.75rem;
  color: var(--text-accent);
  transition: transform 0.3s ease;
}

.intro-read-more-wrapper.active .read-more-icon {
  transform: rotate(180deg);
}

.intro-read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.intro-read-more-wrapper.active .intro-read-more-content {
  max-height: 1000px;
  opacity: 1;
}

.action-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-primary {
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(13, 148, 136, 0.45);
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-secondary {
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
  background: var(--bg-card-hover);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.tag-item {
  padding: 10px 20px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.tag-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
  color: var(--text-accent);
}

.intro-sidebar {
  position: relative;
}

.feature-box {
  background: linear-gradient(180deg, var(--bg-card) 0%, #f8fcfb 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--border-color);
  border: none;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-box-title {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.3;
}

.feature-box-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-list-item {
  padding-left: 32px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.feature-list-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-accent);
  font-weight: 900;
  font-size: 1.4rem;
}

.feature-box-note.footer {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Content Blocks ===== */
.content-block {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.content-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent) 20%, var(--border-accent) 80%, transparent);
  opacity: 0.8;
}

.content-block:nth-child(even) {
  background: var(--bg-secondary);
  position: relative;
}

.content-block:nth-child(even)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(13, 148, 136, 0.035) 0%, transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(20, 184, 166, 0.03) 0%, transparent 45%);
  pointer-events: none;
}

.block-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 80px;
  position: relative;
  padding-bottom: 48px;
}

.block-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.block-header::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--border-color);
  border-radius: 1px;
}

.block-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.block-title::before,
.block-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--gold-gradient);
  border-radius: 50%;
  opacity: 0.8;
}

.block-title::before {
  left: 0;
}

.block-title::after {
  right: 0;
}

.block-subtitle {
  font-size: 1.25rem;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 90%;
  margin: 0 auto;
}

.intro-text {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 400;
}

.block-content {
  max-width: 1500px;
  margin: 0 auto;
}

/* ===== Casino Rating Component ===== */
.casino-rating-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px auto;
  padding: 0;
  max-width: 1000px;
}

.casino-rating-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 40px 32px 76px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-rating-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  transition: width 0.3s ease;
}

.casino-rating-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 100% 0%, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

.casino-rating-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.casino-rating-card:hover::before {
  width: 10px;
}

.casino-rating-number {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
  z-index: 2;
  margin-left: 0;
}

.casino-rating-card:nth-child(1) .casino-rating-number {
  background: var(--primary-gradient);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.45);
  color: white;
}

.casino-rating-card:nth-child(2) .casino-rating-number {
  background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.45);
  color: white;
}

.casino-rating-card:nth-child(3) .casino-rating-number {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  box-shadow: 0 4px 14px rgba(100, 116, 139, 0.35);
  color: white;
}

.casino-rating-logo {
  position: relative;
  width: 180px;
  min-width: 180px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #134E4A 0%, #0F766E 50%, #115E59 100%);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid rgba(13, 148, 136, 0.4);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

.casino-rating-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.casino-rating-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(16, 185, 129, 0.1);
  padding: 8px 18px;
  border-radius: 24px;
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.rating-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.rating-max {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.casino-rating-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.casino-rating-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.casino-rating-bonus {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-color);
  width: fit-content;
}

.bonus-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-value {
  font-size: 1.15rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casino-rating-button {
  padding: 18px 36px;
  min-width: 160px;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.casino-rating-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(13, 148, 136, 0.45);
}

/* ===== Sticky Jump Links Menu ===== */
.sticky-jump-links {
  position: sticky !important;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999 !important;
  background: var(--bg-overlay);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 2px solid var(--border-accent);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  width: 100%;
  margin: 0;
  display: block;
}

.jump-links-toggle {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background 0.2s ease;
  text-align: center;
  position: relative;
}

.jump-links-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.sticky-jump-links.active .jump-links-toggle::before {
  transform: scaleY(1);
}

.jump-links-toggle:hover {
  background: rgba(13, 148, 136, 0.05);
}

.jump-links-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.jump-links-icon {
  font-size: 0.9rem;
  color: var(--text-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  position: absolute;
  right: 32px;
}

.sticky-jump-links.active .jump-links-icon {
  transform: rotate(180deg);
  background: rgba(13, 148, 136, 0.2);
}

.jump-links-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.sticky-jump-links.active .jump-links-content {
  max-height: 800px;
  padding: 28px 32px;
}

.jump-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jump-links-list li {
  border-bottom: 1px solid var(--border-color);
}

.jump-links-list li:last-child {
  border-bottom: none;
}

.jump-link {
  display: block;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  margin: 4px 0;
  position: relative;
  padding-left: 56px;
}

.jump-link::before {
  content: "→";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-accent);
  font-weight: 900;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.jump-link:hover::before {
  transform: translateY(-50%) translateX(6px);
  opacity: 1;
}

.jump-link:hover {
  background: rgba(13, 148, 136, 0.05);
  transform: translateX(6px);
}

.jump-link-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.jump-link:hover .jump-link-title {
  color: var(--text-accent);
}

.jump-link-desc {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Venue Cards (Casinos) ===== */
.venue-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 56px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.venue-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 100% 0%, rgba(13, 148, 136, 0.07) 0%, transparent 60%);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

.venue-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: var(--border-accent);
}

.venue-card:hover::after {
  transform: scaleX(1);
}

.venue-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  margin-bottom: 36px;
  align-items: start;
}

.venue-logo-box {
  width: 180px;
  height: 100px;
  background: linear-gradient(135deg, #134E4A 0%, #0F766E 50%, #115E59 100%);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 148, 136, 0.4);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

.venue-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.venue-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.venue-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.venue-meta {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 700;
}

.venue-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.venue-image img {
  width: 100%;
  height: auto;
  display: block;
}

.venue-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.venue-details {
  margin-bottom: 36px;
}

.details-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--border-color);
  position: relative;
}

.details-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--primary-gradient);
}

/* ===== Tables - Enhanced Styling ===== */
.details-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  background: transparent;
  display: table;
}

.details-table-row {
  display: table-row;
  transition: all 0.3s ease;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.details-table-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-accent);
}

.details-table-header {
  padding: 24px 32px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  font-weight: 800;
  color: var(--text-primary);
  width: 35%;
  min-width: 220px;
  text-align: left !important;
  font-size: 0.95rem;
  vertical-align: middle;
  position: relative;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  display: table-cell;
  border-right: 2px solid var(--border-accent);
}

.details-table-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.details-table-cell {
  padding: 24px 32px;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  vertical-align: middle;
  background: var(--bg-card);
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: table-cell;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
}

.details-table-row:hover .details-table-cell {
  background: var(--bg-card-hover);
}

/* ===== Comparison Table ===== */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-accent);
}

.data-table-header {
  background: var(--primary-gradient);
  color: white;
}

.data-table-header th {
  padding: 20px 28px;
  text-align: left;
  font-weight: 800;
  font-size: 0.95rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.data-table-header th:last-child {
  border-right: none;
}

.data-table-row {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.data-table-row:nth-child(even) {
  background: var(--bg-secondary);
}

.data-table-row:hover {
  background: var(--bg-card-hover);
  transform: scale(1.01);
}

.data-table-cell {
  padding: 18px 28px;
  color: var(--text-primary);
  font-size: 0.95rem;
  border-right: 1px solid var(--border-color);
}

.data-table-cell:last-child {
  border-right: none;
}

.data-table-cell:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.casino-table-logo {
  width: 110px;
  height: 65px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #134E4A 0%, #0F766E 50%, #115E59 100%);
  padding: 10px;
  border: 1px solid rgba(13, 148, 136, 0.4);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

.casino-table-name {
  font-weight: 800;
  color: var(--text-primary);
}

/* ===== Comparison Table ===== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-accent);
}

.comparison-table thead {
  background: var(--primary-gradient);
  color: white;
}

.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 800;
  font-size: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table tbody tr {
  transition: background 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-secondary);
}

.comparison-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.comparison-table td {
  padding: 18px 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  border-right: 1px solid var(--border-color);
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table td:first-child {
  font-weight: 800;
  border-right: 2px solid var(--border-accent);
  background: var(--bg-secondary);
}

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

.venue-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 36px;
}

.comparison-column {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.comparison-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.comparison-column.positive {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, var(--bg-card) 24%);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.comparison-column.positive::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.comparison-column.positive:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.12);
}

.comparison-column.negative {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, var(--bg-card) 24%);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.comparison-column.negative::before {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.comparison-column.negative:hover {
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.1);
}

.comparison-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-top: 4px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-item {
  padding-left: 32px;
  position: relative;
  color: var(--text-primary);
  line-height: 1.6;
}

.comparison-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.comparison-column.negative .comparison-item::before {
  content: "✗";
  background: #ef4444;
}

.author-insight {
  margin-top: 36px;
  padding: 28px 32px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid #3b82f6;
}

.author-insight-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.author-insight-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

/* ===== Game Cards (Slots) ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.game-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-sm);
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.game-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-weight: 700;
}

.game-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
  flex: 1;
}

.game-features {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.game-conclusion {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-top: auto;
}

/* ===== Steps / Process ===== */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.step-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  position: relative;
}

.step-item::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 70px;
  bottom: -48px;
  width: 2px;
  background: var(--border-color);
}

.step-item:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.8rem;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 10px;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.step-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===== Beginner Steps List (#how-to-start) ===== */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 28px 32px 28px 88px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  border-left: 5px solid var(--brand-primary);
  position: relative;
  transition: all 0.3s ease;
}

.steps-list li:hover {
  border-left-color: var(--brand-dark);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 24px;
  top: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: var(--shadow-glow);
}

.steps-list li h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.steps-list li p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.steps-list li p:last-of-type {
  margin-bottom: 0;
}

.steps-list li ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.steps-list li ul li {
  position: relative;
  padding: 0;
  padding-left: 24px;
  margin: 0;
  background: transparent;
  border: none;
  border-left: none;
  border-radius: 0;
  box-shadow: none;
  counter-increment: unset;
}

.steps-list li ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--brand-primary);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 0;
  box-shadow: none;
  top: 0;
}

.steps-list li ul li:hover {
  background: transparent;
  box-shadow: none;
}

.steps-note {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border: 2px solid var(--border-accent);
  border-left: 5px solid var(--brand-primary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
}

.steps-note b {
  color: var(--brand-dark);
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 2px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  cursor: pointer;
}

.faq-answer {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===== Warning Boxes ===== */
.alert-box {
  padding: 28px 32px;
  border-radius: var(--radius-md);
  margin: 36px 0;
  border-left: 4px solid;
}

.alert-box.danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #991b1b;
}

.alert-box.warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  color: #92400e;
}

.alert-box.info {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #1e40af;
}

.alert-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.alert-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== Info Cards ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  padding-top: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
  opacity: 0.9;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: var(--border-accent);
}

.info-card-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.info-card-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.info-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card-item {
  padding-left: 28px;
  position: relative;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.info-card-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-accent);
  font-weight: 900;
  font-size: 1.4rem;
}

/* ===== Payment Methods ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.payment-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.payment-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
}

.payment-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.payment-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== Footer ===== */
.page-footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--border-accent);
  padding: 80px 0;
  margin-top: 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 700;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-link:hover::before {
  width: 100%;
}

/* ===== Breadcrumbs ===== */
.breadcrumb-nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 32px;
  background: transparent;
}

.breadcrumb-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumb-nav a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
}

.breadcrumb-nav a:hover {
  color: var(--brand-dark);
}

/* ===== Policy Sections ===== */
.policy-section {
  margin-bottom: 56px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-number {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-subsection {
  margin-top: 28px;
  margin-bottom: 24px;
}

.policy-subsection-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-list li {
  padding-left: 32px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-accent);
  font-weight: 900;
  font-size: 1.4rem;
}

.policy-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.policy-text:last-child {
  margin-bottom: 0;
}

.policy-highlight {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  border-left: 4px solid var(--text-accent);
  margin: 28px 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.contact-email {
  color: var(--text-accent);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .page-wrapper,
  .content-container {
    padding: 0 24px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-box {
    position: static;
  }

  .venue-header {
    grid-template-columns: 1fr;
  }

  .venue-comparison {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-wrapper,
  .content-container {
    padding: 0 16px;
  }

  .topbar-container {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 0;
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--border-accent);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .main-nav.mobile-menu-open {
    display: flex;
    max-height: 600px;
    padding: 20px 0;
  }

  .main-nav .nav-link {
    padding: 18px 32px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    display: block;
  }

  .main-nav .nav-link:last-child {
    border-bottom: none;
  }

  .main-nav .nav-link::before {
    display: none;
  }

  .main-nav .nav-link:hover {
    background: rgba(13, 148, 136, 0.05);
    color: var(--text-accent);
  }

  .header-actions {
    margin-left: auto;
  }

  .cta-button {
    display: none;
  }

  .intro-section {
    padding: 60px 0;
  }

  .intro-title {
    font-size: 2.2rem;
  }

  .action-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .content-block {
    padding: 60px 0;
  }

  .block-title {
    font-size: 2rem;
  }

  .venue-card {
    padding: 32px;
  }

  .venue-name {
    font-size: 1.6rem;
  }

  .step-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-item::after {
    display: none;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

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

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

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

  .footer-nav-links {
    justify-content: center;
  }

  .casino-rating-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 28px 20px 28px 20px;
  }

  .casino-rating-number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-left: 0;
  }

  .casino-rating-info {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .casino-rating-button {
    width: 100%;
  }

  .steps-list li {
    padding: 24px 20px 24px 72px;
  }

  .steps-list li::before {
    width: 36px;
    height: 36px;
    left: 18px;
    top: 24px;
    font-size: 1.1rem;
  }

  .steps-list li h3 {
    font-size: 1.1rem;
  }

  .steps-list li p,
  .steps-list li ul li {
    font-size: 1rem;
  }

  .steps-note {
    padding: 20px 22px;
    font-size: 1rem;
  }

  .details-table-row {
    display: block;
    margin-bottom: 16px;
  }

  .details-table-header {
    display: block;
    width: 100%;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border-right: none;
    border-bottom: 2px solid var(--border-accent);
  }

  .details-table-cell {
    display: block;
    width: 100%;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  }
}

@media (max-width: 480px) {
  .page-wrapper,
  .content-container {
    padding: 0 12px;
  }

  .intro-title {
    font-size: 1.9rem;
  }

  .content-block {
    padding: 40px 0;
  }

  .venue-card {
    padding: 24px;
  }

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

/* ===== Pros & Cons Section ===== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 36px;
  margin-top: 40px;
}

.pros-cons-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.pros-cons-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pros-cons-block.pros-block {
  border-left: 4px solid #10b981;
}

.pros-cons-block.cons-block {
  border-left: 4px solid #ef4444;
}

.pros-cons-block h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.pros-cons-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pros-cons-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pros-cons-block li {
  padding-left: 32px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.pros-cons-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 900;
  font-size: 1.3rem;
}

.pros-cons-block.cons-block li::before {
  content: "✗";
  color: #ef4444;
}

/* ===== Legitimacy Guide Section ===== */
.legit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.legit-check {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--text-accent);
  transition: all 0.3s ease;
}

.legit-check:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.legit-check h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.legit-check ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legit-check li {
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legit-check li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-accent);
  font-weight: 900;
  font-size: 1.4rem;
}

.legit-warning {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 36px;
  color: #991b1b;
}

.legit-warning strong {
  font-size: 1.15rem;
  font-weight: 900;
  display: block;
  margin-bottom: 12px;
}

/* ===== States Section ===== */
.states-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.states-column h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--text-accent);
}

.states-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.states-list li {
  padding: 24px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-primary);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.states-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0.1;
  transition: left 0.3s ease;
}

.states-list li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.states-list li:hover::before {
  left: 0;
}

/* ===== Choose Section ===== */
#how-to-choose {
  background: var(--bg-secondary);
}

.choose-framework-intro {
  text-align: center;
  margin-bottom: 48px;
  padding: 40px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-left: 6px solid #3b82f6;
}

.framework-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 20px;
}

.framework-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1e3a8a;
  margin: 0;
  font-weight: 500;
}

.choose-steps-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.choose-step-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  border-left: 6px solid var(--text-accent);
  display: flex;
  gap: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.choose-step-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--brand-primary);
}

.step-number-badge {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 1;
}

.step-content-wrapper {
  flex: 1;
}

.step-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.step-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-list li {
  padding-left: 32px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.step-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.step-conclusion {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 20px 0 0 0;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--text-accent);
  font-style: italic;
}

.choose-final-rule {
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid #f59e0b;
  border-left: 6px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.final-rule-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #92400e;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.final-rule-text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #78350f;
  margin: 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ===== Avoid Section ===== */
.avoid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.avoid-block {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  border-left: 4px solid #ef4444;
  transition: all 0.3s ease;
}

.avoid-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.avoid-block h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.avoid-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.avoid-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.avoid-block li {
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.avoid-block li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 900;
  font-size: 1.2rem;
}

.red-flags-box {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 36px;
}

.red-flags-box h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #991b1b;
  margin-bottom: 20px;
}

.red-flags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.red-flags-list li {
  padding-left: 32px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #991b1b;
}

.red-flags-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 900;
  font-size: 1.3rem;
}

/* ===== Payments Section ===== */
.payments-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 40px;
}

.payments-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--text-accent);
  transition: all 0.3s ease;
  width: 100%;
}

.payments-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--brand-primary);
}

.payments-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.payments-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.payment-method-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 2px solid var(--border-color);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.payment-method-card:hover {
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  border-color: var(--border-accent);
}

.payment-method-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
}

.payment-method-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.payment-method-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== Slot Cards ===== */
.slot-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 36px;
  margin-top: 40px;
}

.slot-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.slot-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.slot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slot-card:hover .slot-media img {
  transform: scale(1.05);
}

.slot-header {
  padding: 28px 32px 20px;
  border-bottom: 2px solid var(--border-color);
}

.slot-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.slot-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.slot-body {
  padding: 28px 32px;
}

.slot-overview {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.slot-params,
.slot-features {
  margin-bottom: 28px;
}

.slot-params h4,
.slot-features h4 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.slot-params ul,
.slot-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slot-params li,
.slot-features li {
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.slot-params li::before,
.slot-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-accent);
  font-weight: 900;
  font-size: 1.4rem;
}

.slot-conclusion {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  border-left: 4px solid var(--text-accent);
  margin-top: 28px;
}

.slot-conclusion p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

/* ===== Responsible Gaming Section ===== */
.rg-principle {
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid #3b82f6;
  border-left: 4px solid #3b82f6;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 36px;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #1e40af;
  font-weight: 700;
  text-align: center;
}

.rg-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  margin-top: 40px;
}

.rg-guidelines {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  border-left: 4px solid #10b981;
}

.rg-guidelines h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.rg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rg-list li {
  padding-left: 36px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.rg-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
}

.rg-list li strong {
  color: var(--text-primary);
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
}

.rg-step-back {
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(134, 239, 172, 0.3);
  border-left: 4px solid #10b981;
}

.rg-step-back h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.rg-step-back p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.rg-summary {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 28px;
  border-left: 4px solid #10b981;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 700;
  font-style: italic;
}

/* ===== Final Thoughts Section ===== */
#final-thoughts {
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

#final-thoughts::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

#final-thoughts .content-container {
  position: relative;
  z-index: 1;
}

#final-thoughts .block-header {
  text-align: center;
  margin-bottom: 40px;
}

#final-thoughts .block-title {
  color: white;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

#final-thoughts .block-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

#final-thoughts .block-content p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* ===== Content Update Policy Section ===== */
#content-update-policy {
  background: var(--bg-secondary);
  border-top: 4px solid var(--text-accent);
  position: relative;
}

#content-update-policy .block-header {
  text-align: center;
  margin-bottom: 36px;
}

#content-update-policy .block-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0;
  padding-bottom: 20px;
}

#content-update-policy .block-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-accent);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

#content-update-policy .block-content p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-primary);
  margin: 0;
  text-align: center;
  font-weight: 500;
}

/* ===== Models Explained Section ===== */
.models-explained-box {
  background: rgba(14, 165, 233, 0.05);
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-left: 6px solid #0ea5e9;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin: 36px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.models-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #0c4a6e;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.models-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #075985;
  margin-bottom: 28px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.models-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.models-list li {
  padding: 24px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #0ea5e9;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 56px;
}

.models-list li::before {
  content: "▸";
  position: absolute;
  left: 24px;
  top: 24px;
  color: #0ea5e9;
  font-size: 1.8rem;
  font-weight: 900;
}

.models-list li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: #0284c7;
}

.models-list li strong {
  color: #0c4a6e;
  font-weight: 900;
}

.models-conclusion {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #075985;
  margin: 0;
  font-weight: 700;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
}

/* ===== Why Matters Section ===== */
.why-matters-box {
  background: rgba(245, 158, 11, 0.05);
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-left: 6px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin: 36px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.why-matters-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #92400e;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.why-matters-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #78350f;
  margin-bottom: 28px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.why-matters-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.why-matters-list li {
  padding: 24px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #f59e0b;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 56px;
}

.why-matters-list li::before {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 28px;
  height: 28px;
  background: #f59e0b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
}

.why-matters-list li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: #d97706;
}

.why-matters-conclusion {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #78350f;
  margin: 0;
  font-weight: 800;
  text-align: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border: 2px solid #f59e0b;
  position: relative;
  z-index: 1;
}

/* ===== States Sections Boxes ===== */
.states-section-box {
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin: 36px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.states-legal-box {
  background: rgba(16, 185, 129, 0.05);
  border: 2px solid #10b981;
  border-left: 6px solid #10b981;
}

.states-sweepstakes-box {
  background: rgba(59, 130, 246, 0.05);
  border: 2px solid #3b82f6;
  border-left: 6px solid #3b82f6;
}

.states-restricted-box {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid #ef4444;
  border-left: 6px solid #ef4444;
}

.states-location-box {
  background: rgba(245, 158, 11, 0.05);
  border: 2px solid #f59e0b;
  border-left: 6px solid #f59e0b;
}

.states-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.states-legal-box .states-section-title {
  color: #065f46;
}

.states-sweepstakes-box .states-section-title {
  color: #1e40af;
}

.states-restricted-box .states-section-title {
  color: #991b1b;
}

.states-location-box .states-section-title {
  color: #92400e;
}

.states-section-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.states-legal-box .states-section-intro {
  color: #047857;
}

.states-sweepstakes-box .states-section-intro {
  color: #1e3a8a;
}

.states-restricted-box .states-section-intro {
  color: #7f1d1d;
}

.states-location-box .states-section-intro {
  color: #78350f;
}

.states-grid-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.states-grid-list li {
  padding: 18px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.states-sweepstakes-box .states-grid-list li {
  border-color: #3b82f6;
  color: #1e40af;
}

.states-sweepstakes-box .states-grid-list li:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.states-restricted-list li {
  border-color: #ef4444;
  color: #991b1b;
}

.states-restricted-list li:hover {
  background: rgba(239, 68, 68, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Print Styles ===== */
@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color-adjust: exact;
  }

  .topbar,
  .sticky-jump-links,
  .mobile-menu-toggle,
  .burger-line,
  .page-footer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .venue-card,
  .content-block {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  a {
    text-decoration: underline;
  }
}

/* ===== Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Top Guide Page (full guide) – match main page width ===== */
.top-guide-page main .content-block > p,
.top-guide-page main .content-block > ul,
.top-guide-page main .content-block > ol,
.top-guide-page main .content-block > h3,
.top-guide-page main .content-block > h4,
.top-guide-page main .content-block > div:not(.content-container):not(.table-container) {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}
.top-guide-page main .content-block .comparison-table,
.top-guide-page main .content-block .details-table {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
