/* ==========================================================================
   WinRolla Casino - Cyberpunk Neo-Pulse Design System
   Palette: Deep Dark (#08090d), Surface (#10121a), Elevated (#181c28),
   Text (#eef2ff), Muted (#818cf8), Neon Cyan (#00f0ff), Magenta (#ff0055), Border (#21283b)
   Fonts: Plus Jakarta Sans (Headings), Inter (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --color-bg: #08090d;
  --color-surface: #10121a;
  --color-surface-elevated: #181c28;
  --color-text: #eef2ff;
  --color-text-muted: #818cf8;
  --color-accent: #00f0ff;
  --color-accent-secondary: #ff0055;
  --color-border: #21283b;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.35);
  --shadow-magenta: 0 0 20px rgba(255, 0, 85, 0.35);
  --container-max: 1200px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background-color: #08090d;
  color: #eef2ff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #08090d;
  color: #eef2ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a {
  color: #00f0ff;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #ff0055;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #eef2ff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-top: 1.5rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1.25rem;
  color: #eef2ff;
}

.text-muted {
  color: #818cf8;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(8, 9, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #21283b;
  padding: 0.85rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #eef2ff;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 175px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 240, 255, 0.2));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.6));
}

.brand-logo span {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #eef2ff;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: #00f0ff;
  background-color: #10121a;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #08090d;
  background-color: #00f0ff;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  transition: var(--transition);
}

.header-cta-btn:hover {
  background-color: #ff0055;
  color: #eef2ff;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}

/* Burger button */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #21283b;
  border-radius: var(--radius-sm);
  color: #eef2ff;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.25rem;
}

/* ==========================================================================
   Hero Banner (component: hero_banner)
   ========================================================================== */
.hero-banner-section {
  position: relative;
  background-color: #10121a;
  border-bottom: 1px solid #21283b;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}

.hero-banner-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge-row,
.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.offer-badge,
.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  background-color: rgba(0, 240, 255, 0.12);
  border: 1px solid #00f0ff;
  border-radius: var(--radius-full);
  color: #00f0ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.secondary-badge,
.secondary-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  background-color: rgba(255, 0, 85, 0.12);
  border: 1px solid #ff0055;
  border-radius: var(--radius-full);
  color: #ff0055;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(33, 40, 59, 0.8);
}

.hero-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
  background: rgba(24, 28, 40, 0.8);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid #21283b;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hero-trust-bar span:hover {
  border-color: rgba(0, 240, 255, 0.45);
  background: rgba(0, 240, 255, 0.05);
}

.quick-nav-card {
  margin-top: 0.85rem;
  background: rgba(16, 18, 26, 0.85);
  border: 1px solid #21283b;
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.quick-nav-card > div:first-child {
  color: #00f0ff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.quick-nav-list li a {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.85rem;
  background: rgba(24, 28, 40, 0.7);
  border: 1px solid #21283b;
  border-radius: var(--radius-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.quick-nav-list li a:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: #00f0ff;
  transform: translateX(4px);
  color: inherit;
}

.quick-nav-list li a strong {
  color: #eef2ff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.quick-nav-list li a span {
  color: #818cf8;
  font-size: 0.8rem;
}

.hero-intro-text {
  font-size: 1.15rem;
  color: #eef2ff;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-actions-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  min-height: 48px;
  background-color: #00f0ff;
  color: #08090d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

button, .btn, .btn-secondary, .cta, .hero-play {
  min-height: 48px;
}

.btn-primary:hover {
  background-color: #ff0055;
  color: #eef2ff;
  box-shadow: 0 0 25px rgba(255, 0, 85, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  background-color: #181c28;
  color: #eef2ff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid #21283b;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: #00f0ff;
  color: #00f0ff;
  background-color: #10121a;
}

.hero-visual-card {
  position: relative;
  background: linear-gradient(135deg, rgba(24, 28, 40, 0.95), rgba(16, 18, 26, 0.95));
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 240, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.hero-visual-card:hover {
  transform: translateY(-4px);
  border-color: #00f0ff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.25);
}

.hero-banner-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Trust Status Badge (component: trust_badge)
   ========================================================================== */
.trust-badge-bar {
  background-color: #10121a;
  border-bottom: 1px solid #21283b;
  padding: 0.75rem 0;
  font-size: 0.88rem;
  color: #818cf8;
}

.trust-badge-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.trust-dot {
  width: 8px;
  height: 8px;
  background-color: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00f0ff;
}

/* ==========================================================================
   Quick Actions Grid (component: quick_actions)
   ========================================================================== */
.quick-actions-section {
  padding: 2.25rem 0 1rem;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-action-card {
  background: linear-gradient(145deg, #10121a, #181c28);
  border: 1px solid #21283b;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.15rem;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.quick-action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quick-action-card:hover {
  border-color: #00f0ff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.15);
}

.quick-action-card:hover::before {
  opacity: 1;
}

.quick-action-icon {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.quick-action-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #eef2ff;
  line-height: 1.3;
}

.quick-action-desc {
  font-size: 0.82rem;
  color: #818cf8;
  line-height: 1.4;
}

.quick-action-card:hover {
  border-color: #00f0ff;
  transform: translateY(-3px);
  background-color: #181c28;
  box-shadow: 0 5px 20px rgba(0, 240, 255, 0.15);
}

.quick-action-icon {
  font-size: 1.6rem;
  color: #00f0ff;
}

.quick-action-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #eef2ff;
}

.quick-action-desc {
  font-size: 0.82rem;
  color: #818cf8;
}

/* ==========================================================================
   Games Grid (component: games_grid)
   ========================================================================== */
.games-grid-section {
  padding: 2.5rem 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.game-card {
  background: #10131d;
  border: 1px solid #1e2436;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  hyphens: none;
  aspect-ratio: auto;
  position: relative;
}

.game-card img {
  aspect-ratio: 2 / 3;
}

.game-card:hover {
  border-color: rgba(0, 240, 255, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 25px rgba(0, 240, 255, 0.22);
}

.game-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background-color: #141722;
}

.game-poster-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.game-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover .game-poster {
  transform: scale(1.06);
}

.game-play-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 9, 13, 0.35) 0%, rgba(8, 9, 13, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.game-card:hover .game-play-overlay {
  opacity: 1;
}

.game-play-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00f0ff;
  color: #08090d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.85);
  transform: scale(0.75);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover .game-play-badge {
  transform: scale(1);
}

.game-info {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
  background: linear-gradient(180deg, #10131d 0%, #0c0e15 100%);
}

.game-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.game-provider {
  color: #94a3b8;
  font-weight: 500;
}

.game-rtp {
  color: #00f0ff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  background: rgba(0, 240, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.game-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #94a3b8;
  margin: 0.4rem 0 0.7rem 0;
  flex-grow: 1;
  hyphens: none;
  overflow-wrap: break-word;
}

.game-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.55rem 0.9rem;
  text-align: center;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-sm);
  color: #00f0ff;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.game-cta-link:hover,
.game-card:hover .game-cta-link {
  background: #00f0ff;
  border-color: #00f0ff;
  color: #08090d;
  box-shadow: 0 4px 18px rgba(0, 240, 255, 0.4);
}

/* ==========================================================================
   Tables (component: table, comparison_table)
   ========================================================================== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 1.75rem 0;
  border: 1px solid #21283b;
  border-radius: var(--radius-md);
  background-color: #10121a;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  min-width: 600px;
}

th {
  background-color: #181c28;
  color: #00f0ff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #21283b;
  white-space: nowrap;
}

td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #21283b;
  color: #eef2ff;
}

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

tr:hover td {
  background-color: rgba(0, 240, 255, 0.03);
}

/* ==========================================================================
   Pros & Cons (component: pros_cons)
   ========================================================================== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pros-card, .cons-card {
  background-color: #10121a;
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.pros-card {
  border: 1px solid rgba(0, 240, 255, 0.4);
}

.cons-card {
  border: 1px solid rgba(255, 0, 85, 0.4);
}

.pros-card h3 {
  color: #00f0ff;
  margin-top: 0;
}

.cons-card h3 {
  color: #ff0055;
  margin-top: 0;
}

.pros-list, .cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pros-list li::before {
  content: "✔ ";
  color: #00f0ff;
  font-weight: bold;
}

.cons-list li::before {
  content: "✖ ";
  color: #ff0055;
  font-weight: bold;
}

/* ==========================================================================
   Interactive Calculator (component: calculator)
   ========================================================================== */
.calculator-box {
  background-color: #10121a;
  border: 1px solid #21283b;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin: 2rem 0;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.calc-input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #eef2ff;
}

.calc-input-group input, .calc-input-group select {
  width: 100%;
  padding: 0.75rem;
  background-color: #181c28;
  border: 1px solid #21283b;
  border-radius: var(--radius-sm);
  color: #eef2ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
}

.calc-result-box {
  background-color: #181c28;
  border: 1px solid #00f0ff;
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.calc-result-number {
  font-size: 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #00f0ff;
}

/* ==========================================================================
   Security & Licensing Trust Grid
   ========================================================================== */
.security-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .security-features-grid {
    grid-template-columns: 1fr;
  }
}

.security-card {
  background-color: #10121a;
  border: 1px solid #21283b;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.security-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 6px 24px rgba(0, 240, 255, 0.08);
  transform: translateY(-2px);
}

.security-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.security-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  color: #00f0ff;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.security-card-header strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: #eef2ff;
  font-weight: 700;
}

.security-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   FAQ Accordion (component: faq)
   ========================================================================== */
.faq-section {
  margin: 3.5rem auto;
  max-width: var(--container-max);
  width: 100%;
}

.faq-item {
  background-color: #10121a;
  border: 1px solid #21283b;
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(0, 240, 255, 0.4);
}

.faq-item.active {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.12);
  background-color: #121520;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 1.25rem;
  color: #eef2ff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #00f0ff;
}

.faq-item.active .faq-question {
  color: #00f0ff;
}

.faq-arrow {
  color: #00f0ff;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: #cbd5e1;
  line-height: 1.65;
  border-top: 1px solid rgba(33, 40, 59, 0.6);
  margin-top: 0;
  padding-top: 1rem;
  font-size: 0.96rem;
}

.faq-item.active .faq-answer {
  display: block;
  animation: faqSlideDown 0.25s ease-out;
}

@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Author Box & E-E-A-T (component: author_box)
   ========================================================================== */
.author-box {
  background-color: #10121a;
  border: 1px solid #21283b;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #00f0ff;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.85rem;
  color: #818cf8;
  margin-bottom: 0.5rem;
}

.author-desc {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Internal Links & Disclosure
   ========================================================================== */
.internal-links-box {
  background-color: #10121a;
  border: 1px solid #21283b;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.5rem 0;
}

.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.internal-link-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #181c28;
  border: 1px solid #21283b;
  border-radius: var(--radius-sm);
  color: #eef2ff;
  font-weight: 600;
  font-size: 0.92rem;
}

.internal-link-pill:hover {
  border-color: #00f0ff;
  color: #00f0ff;
}

/* ==========================================================================
   Real Player Utility & Information Gain Components
   ========================================================================== */
.player-notice-box {
  background-color: #10121a;
  border: 1px solid #21283b;
  border-left: 4px solid #00f0ff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
  transition: all 0.25s ease;
}

.player-notice-box.warning {
  border-left-color: #ff0055;
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.05), #10121a 70%);
}

.player-notice-box.tip {
  border-left-color: #00f0ff;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), #10121a 70%);
}

.player-notice-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.player-notice-icon {
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.25);
  flex-shrink: 0;
}

.player-notice-box.warning .player-notice-icon {
  background: rgba(255, 0, 85, 0.1);
  color: #ff0055;
  border-color: rgba(255, 0, 85, 0.3);
}

.player-notice-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #eef2ff;
}

.player-notice-box p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.player-notice-box p:last-child {
  margin-bottom: 0;
}

/* Payout Speed Benchmark Matrix */
.payout-speed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.payout-speed-card {
  background-color: #10121a;
  border: 1px solid #21283b;
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.payout-speed-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 240, 255, 0.08);
}

.payout-method-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #eef2ff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.payout-badge-speed {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.payout-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(33, 40, 59, 0.5);
  color: #818cf8;
}

.payout-stat-row strong {
  color: #eef2ff;
}

.payout-stat-row:last-child {
  border-bottom: none;
}

/* ==========================================================================
   Authentic Interface Showcase & Real Screenshots
   ========================================================================== */
.real-ui-showcase {
  margin: 2.5rem 0;
  background: linear-gradient(180deg, #10141f 0%, #0c0e15 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.real-ui-showcase:hover {
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.12);
}

.real-ui-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background-color: #0b0d14;
  border-bottom: 1px solid #1a2030;
}

.real-ui-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.real-ui-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.real-ui-dots span:nth-child(1) { background-color: #ff5f56; }
.real-ui-dots span:nth-child(2) { background-color: #ffbd2e; }
.real-ui-dots span:nth-child(3) { background-color: #27c93f; }

.real-ui-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.real-ui-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: rgba(0, 240, 255, 0.12);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.real-ui-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #06070a;
}

.real-ui-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.real-ui-showcase:hover .real-ui-media img {
  transform: scale(1.008);
}

.real-ui-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background-color: #0b0d14;
  border-top: 1px solid #1a2030;
  font-size: 0.88rem;
  color: #818cf8;
  line-height: 1.5;
}

.real-ui-caption span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.real-ui-caption svg {
  flex-shrink: 0;
  color: #00f0ff;
}

.real-ui-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (max-width: 768px) {
  .real-ui-dual-grid {
    grid-template-columns: 1fr;
  }
  .real-ui-topbar {
    padding: 0.6rem 1rem;
  }
  .real-ui-caption {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   Footer & Mandatory Disclosure
   ========================================================================== */
.site-footer {
  background-color: #08090d;
  border-top: 1px solid #21283b;
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: #818cf8;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #00f0ff;
}

.footer-disclaimer-box {
  border-top: 1px solid #21283b;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer-text {
  font-size: 0.85rem;
  color: #818cf8;
  max-width: 850px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

.footer-18-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #ff0055;
  font-weight: 700;
}

/* ==========================================================================
   Mobile Sticky CTA (component: sticky_cta)
   Strictly inside mobile media query!
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 34px;
    max-width: 135px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #10121a;
    border-bottom: 1px solid #21283b;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-banner-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

  /* Pinned sticky CTA bar on mobile */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(8, 9, 13, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #00f0ff;
    padding: 0.75rem 1rem;
    box-shadow: 0 -5px 20px rgba(0, 240, 255, 0.25);
  }

  .mobile-sticky-cta .btn-primary {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
  }
}

/* Responsive Sticky CTA */
@media (min-width: 769px) {
  .sticky-cta, [data-block="sticky_cta"] { display: none !important; }
}

/* Responsive Burger Menu */
@media (max-width: 768px) {
  .burger, .nav-toggle { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
  nav { display: block; }
  nav[data-open="false"] .nav-menu { display: none; }
  nav[data-open="true"] .nav-menu { display: flex; }
}
