/* ==========================================================================
   Primebahis Casino Deutschland - High-Roller Royal Gold Design System
   Official Brand Portal Edition 2026
   ========================================================================== */

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

:root {
  /* Brand Theme Tokens (High-Roller Royal Gold) */
  --color-bg: #080a10;
  --color-surface: #111622;
  --color-surface-elevated: #192234;
  --color-text: #f8f9fc;
  --color-text-muted: #94a3b8;
  --color-accent: #f5bc43;
  --color-accent-hover: #e0a324;
  --color-accent-secondary: #d4af37;
  --color-border: #232f46;
  --color-border-glow: rgba(245, 188, 67, 0.28);
  --color-success: #10b981;
  --color-cyan: #38bdf8;
  --color-danger: #ef4444;

  /* Typography Scale */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Component Geometry & Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Elevation Shadows & Atmosphere */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 6px 24px rgba(245, 188, 67, 0.35);
  --shadow-glow-subtle: 0 2px 14px rgba(245, 188, 67, 0.18);
  --shadow-cyan-glow: 0 4px 20px rgba(56, 189, 248, 0.25);

  --max-width: 1240px;
  --header-height: 74px;
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: #080a10;
  color: #f8f9fc;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #080a10;
  color: #f8f9fc;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 188, 67, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 100% 20%, rgba(25, 34, 52, 0.25) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Fluid responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links & Interactive Text */
a {
  color: #f5bc43;
  text-decoration: none;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

a:hover {
  color: #f8f9fc;
  text-shadow: 0 0 12px rgba(245, 188, 67, 0.4);
}

/* Headings Typographic Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', var(--font-heading);
  color: #f8f9fc;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.25rem;
  color: #94a3b8;
  font-size: 1.025rem;
  line-height: 1.7;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(8, 10, 16, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 188, 67, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #f8f9fc;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(245, 188, 67, 0.4));
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.08) rotate(3deg);
}

.brand-highlight {
  background: linear-gradient(135deg, #fff1c2 0%, #f5bc43 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  font-family: 'Outfit', var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  color: #94a3b8;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-link:hover {
  color: #f8f9fc;
  background-color: rgba(25, 34, 52, 0.5);
}

.nav-link.active {
  color: #f5bc43;
  background-color: rgba(245, 188, 67, 0.1);
  border: 1px solid rgba(245, 188, 67, 0.25);
  box-shadow: 0 2px 10px rgba(245, 188, 67, 0.15);
}

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

/* Action Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-pill {
  border-radius: var(--radius-full);
}

.btn-primary {
  background: linear-gradient(135deg, #fff1c2 0%, #f5bc43 35%, #d4af37 100%);
  color: #080a10;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(245, 188, 67, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f5bc43 45%, #e0a324 100%);
  color: #080a10;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(245, 188, 67, 0.5);
}

.btn-secondary {
  background-color: rgba(25, 34, 52, 0.75);
  color: #f8f9fc;
  border: 1px solid rgba(245, 188, 67, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(35, 47, 70, 0.9);
  border-color: #f5bc43;
  color: #f5bc43;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 188, 67, 0.2);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.1rem;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #232f46;
  border-radius: var(--radius-sm);
  color: #f8f9fc;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.35rem 0.55rem;
  background-color: #111622;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #f8f9fc;
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   Hero Banner Section (Gold-Standard Official Casino Pattern)
   ========================================================================== */
.hero-banner {
  position: relative;
  overflow: hidden;
  background-color: #080a10;
  border-bottom: 1px solid #232f46;
  padding: 4rem 0 4.5rem;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.32;
  filter: saturate(1.25) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 75% 25%, rgba(245, 188, 67, 0.16) 0%, transparent 65%),
    radial-gradient(circle at 20% 80%, rgba(25, 34, 52, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.72) 0%, rgba(8, 10, 16, 0.98) 100%);
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.98fr;
  align-items: center;
  gap: 2.75rem;
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hero-visual-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 188, 67, 0.25) 0%, rgba(212, 175, 55, 0.06) 55%, transparent 75%);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
}

.hero-visual-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 0;
  border: none;
  background: transparent;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 25px rgba(245, 188, 67, 0.22));
  animation: floatHero 6s ease-in-out infinite alternate;
}

.hero-float-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 188, 67, 0.32);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55), 0 0 16px rgba(245, 188, 67, 0.12);
  pointer-events: none;
}

.hero-float-top {
  top: 6%;
  right: -8px;
  animation: floatBadgeTop 5s ease-in-out infinite alternate;
}

.hero-float-bottom {
  bottom: 8%;
  left: -12px;
  animation: floatBadgeBottom 6s ease-in-out infinite alternate;
}

@keyframes floatBadgeTop {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes floatBadgeBottom {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

.badge-icon {
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.badge-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.badge-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.badge-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: #f8f9fc;
}

@keyframes floatHero {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

.trust-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: rgba(17, 22, 34, 0.9);
  border: 1px solid rgba(245, 188, 67, 0.35);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f5bc43;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow-subtle);
  backdrop-filter: blur(10px);
}

.trust-badge-dot {
  width: 9px;
  height: 9px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 12px #10b981;
  display: inline-block;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #f8f9fc;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #fff1c2 0%, #f5bc43 45%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(245, 188, 67, 0.3);
}

.hero-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #f8f9fc;
  margin-bottom: 2.25rem;
  max-width: 780px;
}

/* VIP Membership Offer Box */
.hero-offer-box {
  background: linear-gradient(135deg, rgba(20, 27, 44, 0.85) 0%, rgba(13, 17, 28, 0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 188, 67, 0.35);
  border-left: 5px solid #f5bc43;
  border-radius: var(--radius-lg);
  padding: 1.65rem 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 188, 67, 0.12);
}

.offer-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.offer-label {
  font-family: 'Outfit', var(--font-heading);
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f5bc43;
  font-weight: 800;
}

.offer-headline {
  font-size: 1.75rem;
  font-weight: 900;
  color: #f8f9fc;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.offer-meta {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-main-cta {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.hero-subactions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 0.25rem 0.5rem;
}

.hero-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.bullet-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.bullet-item svg {
  flex-shrink: 0;
}

.hero-terms-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f5bc43;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-terms-link:hover {
  color: #fff1c2;
  text-decoration: underline;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
}

/* ==========================================================================
   Live Activity Bar (Social Proof Pulse)
   ========================================================================== */
.live-activity-bar {
  background-color: #0c0f18;
  border-bottom: 1px solid #232f46;
  border-top: 1px solid rgba(245, 188, 67, 0.15);
  padding: 0.65rem 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 10;
}

.live-activity-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.live-pulse-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', var(--font-heading);
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.775rem;
  background-color: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
  flex-shrink: 0;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 1.8s infinite;
}

.live-ticker-content {
  color: #94a3b8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.live-ticker-time {
  color: #f5bc43;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.live-ticker-msg strong {
  color: #f8f9fc;
}

/* ==========================================================================
   NavBoost Quick Actions Grid
   ========================================================================== */
.quick-actions-section {
  padding: 2.25rem 0 2.75rem;
  background-color: #080a10;
  border-bottom: 1px solid #232f46;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.quick-action-card {
  background: linear-gradient(180deg, #111622 0%, #0d121c 100%);
  border: 1px solid #232f46;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: #f8f9fc;
  transition: all var(--transition-fast);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.quick-action-card:hover {
  background: linear-gradient(180deg, #192234 0%, #111622 100%);
  border-color: #f5bc43;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  color: #f8f9fc;
}

.quick-action-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(245, 188, 67, 0.12);
  border: 1px solid rgba(245, 188, 67, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  color: #f5bc43;
  transition: transform var(--transition-fast);
}

.quick-action-card:hover .quick-action-icon {
  transform: scale(1.1);
  background-color: rgba(245, 188, 67, 0.2);
}

.quick-action-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.quick-action-title {
  font-family: 'Outfit', var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8f9fc;
}

.quick-action-desc {
  font-size: 0.825rem;
  color: #94a3b8;
}

/* ==========================================================================
   Answer First Box / Capsule Block (Google AI Overviews & Rule of One)
   ========================================================================== */
.answer-first-box,
.answer-capsule {
  background: linear-gradient(135deg, rgba(25, 34, 52, 0.9) 0%, rgba(17, 22, 34, 0.95) 100%);
  border: 1px solid rgba(245, 188, 67, 0.3);
  border-left: 4px solid #f5bc43;
  border-radius: var(--radius-md);
  padding: 1.35rem 1.65rem;
  margin: 1.75rem 0 2rem;
  box-shadow: var(--shadow-md);
}

.answer-first-title,
.answer-capsule-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Outfit', var(--font-heading);
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #f5bc43;
  margin-bottom: 0.65rem;
}

.answer-first-text,
.answer-capsule p {
  color: #f8f9fc;
  font-size: 1.025rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   General Content Sections
   ========================================================================== */
.content-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid #232f46;
}

.content-section:nth-child(even) {
  background-color: #111622;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 2.8vw + 0.75rem, 2.5rem);
  font-weight: 800;
  color: #f8f9fc;
  margin-bottom: 0.95rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 760px;
}

/* ==========================================================================
   Games Grid
   ========================================================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.35rem;
  margin: 2.25rem 0;
}

.game-card {
  background-color: #111622;
  border: 1px solid #232f46;
  border-radius: var(--radius-md);
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.game-card img,
.game-thumb-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-thumb-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #080a10;
}

.game-card:hover .game-thumb-wrap img {
  transform: scale(1.08);
}

.game-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background-color: rgba(8, 10, 16, 0.92);
  border: 1px solid rgba(245, 188, 67, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.55rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.725rem;
  color: #f5bc43;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.game-meta {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
  overflow-wrap: break-word;
}

.game-name {
  font-family: 'Outfit', var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8f9fc;
  margin: 0;
  overflow-wrap: break-word;
}

.game-desc {
  font-size: 0.825rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0.25rem 0 0.5rem;
  overflow-wrap: break-word;
}

.game-provider {
  font-size: 0.8rem;
  color: #38bdf8;
  font-weight: 600;
}

.game-play-btn {
  margin-top: 0.65rem;
  width: 100%;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   Data Tables & Comparison Tables
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border: 1px solid #232f46;
  border-radius: var(--radius-md);
  background-color: #111622;
  box-shadow: var(--shadow-sm);
}

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

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.data-table th,
table th {
  background-color: #192234;
  color: #f8f9fc;
  font-family: 'Outfit', var(--font-heading);
  font-weight: 700;
  padding: 1.15rem 1.25rem;
  border-bottom: 2px solid #232f46;
  white-space: nowrap;
}

.data-table td,
table td {
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid #232f46;
  color: #f8f9fc;
}

.data-table tr:last-child td,
table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td,
table tr:hover td {
  background-color: rgba(25, 34, 52, 0.6);
}

.tag-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.785rem;
  font-weight: 700;
  font-family: 'Space Mono', monospace;
}

.tag-green {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.tag-blue {
  background-color: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

/* ==========================================================================
   Steps List (Algorithm & Checklist)
   ========================================================================== */
.steps-grid,
ol.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin: 2.25rem 0;
  list-style: none;
  padding: 0;
}

ol.steps-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-card {
  background-color: #111622;
  border: 1px solid #232f46;
  border-radius: var(--radius-md);
  padding: 1.65rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  border-color: #f5bc43;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-subtle);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f5bc43 0%, #d4af37 100%);
  color: #080a10;
  border-radius: 50%;
  font-family: 'Outfit', var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 12px rgba(245, 188, 67, 0.3);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f8f9fc;
  margin-bottom: 0.65rem;
}

.step-text {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 0;
}

/* ==========================================================================
   Pros and Cons
   ========================================================================== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.65rem;
  margin: 2.25rem 0;
}

.pros-box {
  background-color: #111622;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  box-shadow: var(--shadow-sm);
}

.cons-box {
  background-color: #111622;
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  box-shadow: var(--shadow-sm);
}

.pros-box h3, .cons-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pros-box h3 { color: #10b981; }
.cons-box h3 { color: #ef4444; }

.pros-cons-list {
  list-style: none;
}

.pros-cons-list li {
  font-size: 0.95rem;
  color: #f8f9fc;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.pros-cons-list li::before {
  content: '✔';
  color: #10b981;
  font-weight: bold;
}

.cons-box .pros-cons-list li::before {
  content: '✖';
  color: #ef4444;
}

/* ==========================================================================
   Interactive Calculator
   ========================================================================== */
.calculator-box {
  background: linear-gradient(135deg, #111622 0%, #0d121c 100%);
  border: 1px solid rgba(245, 188, 67, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin: 2.75rem 0;
  box-shadow: var(--shadow-lg);
}

.calculator-title {
  font-size: 1.45rem;
  color: #f8f9fc;
  margin-bottom: 0.5rem;
}

.calculator-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.35rem;
  margin: 1.65rem 0;
}

.calc-input-group label {
  display: block;
  font-family: 'Outfit', var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.calc-input-group input, .calc-input-group select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background-color: #080a10;
  border: 1px solid #232f46;
  border-radius: var(--radius-sm);
  color: #f8f9fc;
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.calc-input-group input:focus, .calc-input-group select:focus {
  outline: none;
  border-color: #f5bc43;
  box-shadow: var(--shadow-glow-subtle);
}

.calc-results {
  background-color: #192234;
  border: 1px solid rgba(245, 188, 67, 0.25);
  border-radius: var(--radius-md);
  padding: 1.45rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  text-align: center;
}

.calc-result-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.calc-result-label {
  font-size: 0.825rem;
  color: #94a3b8;
}

.calc-result-value {
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f5bc43;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 2.25rem 0;
}

.faq-item {
  position: relative;
  background-color: #111622;
  border: 1px solid #232f46;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover,
.faq-item.active,
.faq-item.open {
  border-color: rgba(245, 188, 67, 0.4);
  box-shadow: var(--shadow-glow-subtle);
}

.faq-question,
h3.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 3.5rem 1.35rem 1.65rem;
  color: #f8f9fc;
  font-family: 'Outfit', var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: block;
  transition: color var(--transition-fast);
  margin: 0;
  user-select: none;
}

.faq-question:hover,
h3.faq-question:hover {
  color: #f5bc43;
}

.faq-toggle-icon {
  position: absolute;
  top: 1.35rem;
  right: 1.65rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #f5bc43;
  pointer-events: none;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.faq-answer {
  display: none;
  padding: 0 1.65rem 1.45rem;
  color: #94a3b8;
  font-size: 0.975rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Author Box (E-E-A-T 2026)
   ========================================================================== */
.author-box {
  background: linear-gradient(135deg, #111622 0%, #192234 100%);
  border: 1px solid rgba(245, 188, 67, 0.3);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  margin: 2.75rem 0;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #192234;
  border: 2px solid #f5bc43;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', var(--font-heading);
  font-weight: 800;
  color: #f5bc43;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245, 188, 67, 0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: 'Outfit', var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8f9fc;
}

.author-role {
  font-size: 0.85rem;
  color: #38bdf8;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.author-bio {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0;
}

/* ==========================================================================
   Internal Links Hub
   ========================================================================== */
.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.15rem;
  margin: 2rem 0;
}

.internal-link-card {
  background-color: #111622;
  border: 1px solid #232f46;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.internal-link-card:hover {
  background-color: #192234;
  border-color: #f5bc43;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-subtle);
}

.internal-link-title {
  font-family: 'Outfit', var(--font-heading);
  font-size: 1.025rem;
  font-weight: 700;
  color: #f8f9fc;
}

.internal-link-desc {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================================================
   Sticky Mobile CTA (Money Invariant)
   ========================================================================== */
.sticky-mobile-cta,
.sticky-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(8, 10, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(245, 188, 67, 0.25);
  padding: 0.85rem 1.15rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.sticky-mobile-text {
  display: flex;
  flex-direction: column;
}

.sticky-mobile-headline {
  font-family: 'Outfit', var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #f8f9fc;
}

.sticky-mobile-sub {
  font-size: 0.785rem;
  color: #f5bc43;
  font-weight: 600;
}

/* ==========================================================================
   Footer Section & Mandatory Disclaimers
   ========================================================================== */
.site-footer {
  background-color: #080a10;
  border-top: 1px solid #232f46;
  padding: 4rem 0 2.25rem;
  margin-top: auto;
  font-size: 0.875rem;
  color: #94a3b8;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-col-title {
  font-family: 'Outfit', var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #f8f9fc;
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #f5bc43;
}

.footer-disclaimer-box {
  background-color: #111622;
  border: 1px solid #232f46;
  border-radius: var(--radius-md);
  padding: 1.35rem 1.65rem;
  margin-bottom: 2.25rem;
  font-size: 0.825rem;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  padding-top: 1.65rem;
  border-top: 1px solid #232f46;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #ef4444;
  color: #ef4444;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.875rem;
}

/* ==========================================================================
   Responsive Styles & Mobile Adaptation
   ========================================================================== */

/* Desktop Hide for Mobile Elements */
@media (min-width: 769px) {
  .sticky-mobile-cta,
  .sticky-cta-bar,
  .sticky-cta,
  [data-block="sticky_cta"] {
    display: none !important;
  }
  .menu-toggle,
  .burger {
    display: none !important;
  }
}

/* Tablet & Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: 74px;
  }

  body.nav-locked {
    overflow: hidden;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Header & Mobile Drawer */
  .site-header {
    height: var(--header-height);
  }

  .header-container {
    padding: 0 1.25rem;
    gap: 0.75rem;
  }

  .brand-logo {
    font-size: 1.25rem;
  }

  .brand-logo img {
    width: 34px;
    height: 34px;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-actions .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.825rem;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0.35rem;
    cursor: pointer;
    background-color: #111622;
    border: 1px solid #232f46;
    border-radius: var(--radius-sm);
    flex-direction: column;
    gap: 4px;
    order: -1;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #f8f9fc;
    margin: 0;
    transition: all var(--transition-fast);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* Full-Screen Mobile Drawer */
  .nav-desktop,
  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(8, 10, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 1.25rem 6rem;
    gap: 0.5rem;
    overflow-y: auto;
    z-index: 998;
    border-top: 1px solid rgba(245, 188, 67, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  }

  .nav-desktop.is-open,
  .nav-desktop.open,
  nav[data-open="true"],
  nav.open,
  nav.is-open {
    display: flex !important;
  }

  .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(35, 47, 70, 0.5);
    border-radius: var(--radius-sm);
  }

  /* Hero Banner */
  .hero-banner {
    padding: 2.25rem 0 2.75rem;
  }

  .hero-title {
    font-size: clamp(1.65rem, 5.5vw, 2.2rem);
    line-height: 1.22;
    margin-bottom: 1rem;
  }

  .hero-intro {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
    color: #cbd5e1;
  }

  .trust-badge-inline {
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    line-height: 1.45;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.35rem;
  }

  .hero-offer-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem 1.15rem;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
  }

  .offer-headline {
    font-size: 1.35rem;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-cta-group {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -0.35rem;
  }

  .hero-cta-group .btn-primary {
    display: none; /* The offer box already features the primary golden action on mobile */
  }

  .hero-cta-group .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    background-color: rgba(25, 34, 52, 0.65);
    border: 1px solid rgba(245, 188, 67, 0.25);
  }

  /* Content Sections */
  .content-section {
    padding: 2.75rem 0;
  }

  .answer-first-box,
  .answer-capsule {
    padding: 1.25rem 1rem;
    margin: 1.25rem 0 1.5rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
    margin-bottom: 0.65rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Grids */
  .quick-actions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .quick-action-card {
    padding: 1rem;
    gap: 0.85rem;
  }

  .quick-action-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .steps-grid,
  ol.steps-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-card {
    padding: 1.25rem;
  }

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

  .internal-links-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* Interactive Calculator on Mobile */
  .calculator-box {
    padding: 1.35rem 1rem;
    margin: 1.75rem 0;
  }

  .calculator-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.25rem 0;
  }

  .calc-results {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding: 1rem 0.75rem;
  }

  .calc-result-label {
    font-size: 0.75rem;
  }

  .calc-result-value {
    font-size: 1.05rem;
  }

  /* Data Tables Mobile Swipe */
  .table-responsive {
    margin: 1.25rem 0;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive table,
  .table-responsive .data-table {
    min-width: 520px;
    font-size: 0.875rem;
  }

  /* Author Box */
  .author-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.35rem 1rem;
    gap: 1rem;
    margin: 2rem 0;
  }

  /* FAQ Accordion Mobile Touch */
  .faq-question,
  h3.faq-question {
    font-size: 0.975rem;
    padding: 1.15rem 2.85rem 1.15rem 1.15rem;
  }

  .faq-toggle-icon {
    top: 1.15rem;
    right: 1.15rem;
    font-size: 1.25rem;
  }

  .faq-answer {
    padding: 0 1.15rem 1.15rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-brand-col p {
    font-size: 0.875rem;
  }

  .footer-disclaimer-box {
    padding: 1rem;
    font-size: 0.775rem;
  }

  .footer-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Sticky Mobile CTA Bar */
  .sticky-mobile-cta,
  .sticky-cta-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.65rem 1rem;
    background-color: rgba(8, 10, 16, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(245, 188, 67, 0.35);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  }

  .sticky-mobile-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
  }

  .sticky-mobile-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .sticky-mobile-headline {
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-mobile-sub {
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-mobile-cta .btn,
  .sticky-cta-bar .btn {
    flex-shrink: 0;
    width: auto !important;
    padding: 0.55rem 1.15rem;
    font-size: 0.875rem;
  }
}

/* Small Smartphone Screens (<= 480px) */
@media (max-width: 480px) {
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .calc-results {
    grid-template-columns: 1fr;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .brand-logo {
    font-size: 1.15rem;
  }
}

/* 44px Minimum Tap Targets for Mobile UX */
button,
.btn,
a.btn,
.nav-link,
.cta-button,
.hero-play,
.menu-toggle,
.sticky-mobile-cta a,
.sticky-cta-bar a {
  min-height: 44px;
}
