/* ==========================================================================
   Winrolla Monobrand Casino - Official Styling System (Google 2026 Edition)
   Brand: Winrolla | Domain: winrollabet.de | Geo: DE
   Palette Mirror: #0b0e14, #131923, #f1f5f9, #00e5ff, #1e293b
   ========================================================================== */

:root {
  --bg: #0c101a;
  --surface: #121824;
  --surface-elevated: #162032;
  --surface-header: #0e1422;
  --surface-card: #141c2c;
  --surface-glass: rgba(14, 20, 34, 0.92);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Official Winrolla Blue & Accents */
  --blue-primary: #0066ff;
  --blue-gradient: linear-gradient(180deg, #0066ff 0%, #0044cc 100%);
  --blue-hover: linear-gradient(180deg, #1a75ff 0%, #0052e6 100%);
  --blue-glow: 0 0 16px rgba(0, 102, 255, 0.55);
  --navy-btn: #101a2e;
  --navy-border: #0066ff;
  
  /* Official Winrolla Gold / Amber CTA */
  --gold-primary: #ffb800;
  --gold-gradient: linear-gradient(180deg, #ffb800 0%, #ff8800 100%);
  --gold-hover: linear-gradient(180deg, #ffc425 0%, #ff9900 100%);
  --gold-glow: 0 0 25px rgba(255, 184, 0, 0.65);
  
  /* Official Winrolla Ruby Red Active / Accent */
  --ruby-active: linear-gradient(90deg, #990e28 0%, #d61c38 100%);
  --ruby-glow: 0 0 16px rgba(214, 28, 56, 0.5);
  
  /* Borders */
  --border: #1e2a40;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-card: #1c273a;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  background-color: #0c101a;
  color: #f8fafc;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

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

h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-top: 2rem; margin-bottom: 1rem; color: #f8fafc; border-left: 4px solid #0066ff; padding-left: 0.75rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); margin-top: 1.5rem; margin-bottom: 0.75rem; color: #38bdf8; }

p {
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}

p.lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #e2e8f0;
}

a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: #60a5fa;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ==========================================================================
   Header Notice & Brand Gateway
   ========================================================================== */
.header-notice {
  background: linear-gradient(90deg, #0c101a 0%, #162032 50%, #0c101a 100%);
  border-bottom: 1px solid #1e2a40;
  padding: 0.45rem 1rem;
  font-size: 0.825rem;
  text-align: center;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.header-notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 102, 255, 0.15);
  color: #60a5fa;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid rgba(0, 102, 255, 0.35);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  box-shadow: 0 0 8px #00e676;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ==========================================================================
   Site Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 16, 26, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid #1e2a40;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.site-header .container {
  max-width: 1400px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: 68px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.6rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-logo:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.brand-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9999px;
  padding: 0.25rem 0.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #94a3b8;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.42rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* Official Winrolla Ruby Red Active State */
.nav-link.active {
  background: var(--ruby-active);
  color: #ffffff;
  font-weight: 800;
  font-style: italic;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  border-radius: 0;
  border: none;
  box-shadow: var(--ruby-glow);
  padding: 0.42rem 1rem;
}

.nav-bonus-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  font-style: italic;
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.25) 0%, rgba(255, 136, 0, 0.35) 100%);
  color: #fbbf24;
  border: 1px solid rgba(255, 184, 0, 0.5);
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.3);
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

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

/* Official Winrolla Slanted Action Buttons */
.nav-actions .btn-outline {
  padding: 0.46rem 1.15rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border-radius: 0;
  border: 1px solid #0066ff;
  color: #ffffff;
  background: #101a2e;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-actions .btn-outline:hover {
  background: #182642;
  border-color: #3b82f6;
  box-shadow: 0 0 14px rgba(0, 102, 255, 0.45);
  transform: translateY(-1px);
  color: #ffffff;
}

.nav-actions .btn-primary {
  padding: 0.46rem 1.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border-radius: 0;
  background: linear-gradient(180deg, #0066ff 0%, #0044cc 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 0 16px rgba(0, 102, 255, 0.6);
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-actions .btn-primary:hover {
  background: linear-gradient(180deg, #1a75ff 0%, #0052e6 100%);
  box-shadow: 0 0 24px rgba(0, 102, 255, 0.85);
  transform: translateY(-1px);
  color: #ffffff;
}

/* Burger menu button */
.burger-toggle {
  display: none;
}

.burger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #1e2a40;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  color: #f8fafc;
  transition: all 0.2s ease;
}

.burger-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #0066ff;
}

.burger-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile drawer close button (hidden on desktop) */
.drawer-header {
  display: none;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(180deg, #0066ff 0%, #0044cc 100%);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 102, 255, 0.6);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #1a75ff 0%, #0052e6 100%);
  box-shadow: 0 0 24px rgba(0, 102, 255, 0.85);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Official Winrolla Glowing Gold Button (JETZT SICHERN) */
.btn-gold {
  background: linear-gradient(180deg, #ffb800 0%, #ff8800 100%);
  color: #0b0e14 !important;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 0 25px rgba(255, 184, 0, 0.65), 0 4px 15px rgba(0, 0, 0, 0.4);
  padding: 0.85rem 2.2rem;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #ffc425 0%, #ff9900 100%);
  box-shadow: 0 0 35px rgba(255, 184, 0, 0.85);
  transform: translateY(-2px);
  color: #0b0e14 !important;
}

.btn-outline {
  background: #101a2e;
  color: #ffffff;
  border: 1px solid #0066ff;
}

.btn-outline:hover {
  background: #182642;
  border-color: #3b82f6;
  box-shadow: 0 0 14px rgba(0, 102, 255, 0.45);
  color: #ffffff;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.15rem;
}

/* Official Blue Ribbon Badge */
.official-ribbon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #0044cc 0%, #0066ff 100%);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  color: #ffffff;
  font-weight: 800;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.2rem;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.5);
  margin-bottom: 0.85rem;
}

/* ==========================================================================
   Hero Banner (Gold-Standard Verde Pattern)
   ========================================================================== */
.hero-banner-section {
  position: relative;
  background-color: #0b0e14;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, #131923 0%, #0b0e14 100%);
  border-bottom: 1px solid #1e293b;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}

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

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

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 255, 136, 0.08);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 600;
}

.offer-card {
  background: rgba(19, 25, 35, 0.85);
  border: 1px solid #1e293b;
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.75rem;
  border-left: 4px solid #f59e0b;
}

.offer-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f59e0b;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.offer-main {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #f1f5f9;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.offer-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  color: #94a3b8;
}

.offer-perk-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #f1f5f9;
}

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

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

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid #1e293b;
}

/* ==========================================================================
   Quick Actions Grid (NavBoost Google 2026)
   ========================================================================== */
.quick-actions-section {
  padding: 1.5rem 0;
  background: #0b0e14;
  border-bottom: 1px solid #1e293b;
}

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

.quick-action-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #131923;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: all 0.25s ease;
  color: #f1f5f9;
}

.quick-action-card:hover {
  background: #1a2230;
  border-color: #00e5ff;
  transform: translateY(-2px);
  color: #00e5ff;
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.15);
}

.quick-action-icon {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
  flex-shrink: 0;
}

.quick-action-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.quick-action-text span {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ==========================================================================
   Top Games Grid (2:3 Aspect Ratio)
   ========================================================================== */
.games-grid-section {
  padding: 3rem 0;
  background: #0b0e14;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 1rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}

.game-card {
  position: relative;
  background: #131923;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
  border-color: #00e5ff;
}

.game-poster-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #1a2230;
}

.game-poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-poster-link img {
  transform: scale(1.08);
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(6px);
  color: #00ff88;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.game-info {
  padding: 0.85rem;
  text-align: center;
}

.game-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}

.game-provider {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.6rem;
}

.game-play-btn {
  width: 100%;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   Content Cards & Surface Blocks
   ========================================================================== */
.content-section {
  padding: 3rem 0;
}

.card {
  background: #131923;
  border: 1px solid #1e293b;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #00e5ff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Interactive JS Calculator (#calculator)
   ========================================================================== */
.calculator-box {
  background: linear-gradient(145deg, #131923 0%, #1a2230 100%);
  border: 1px solid #00e5ff;
  box-shadow: var(--shadow-glow);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  margin: 2.5rem 0;
}

.calc-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.calc-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.calc-range {
  width: 100%;
  height: 8px;
  background: #1e293b;
  border-radius: var(--radius-pill);
  outline: none;
  accent-color: #00e5ff;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
}

.calc-result-card {
  background: #0b0e14;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.calc-result-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.calc-result-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #f59e0b;
}

.calc-result-val.highlight {
  color: #00ff88;
}

/* ==========================================================================
   Data Tables & Comparisons
   ========================================================================== */
.table-wrapper {
  overflow-x: auto;
  margin: 1.75rem 0;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  background: #131923;
}

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

th, td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #1e293b;
}

th {
  background: #1a2230;
  color: #00e5ff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

tbody tr:hover {
  background: rgba(0, 229, 255, 0.03);
}

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

.pros-box, .cons-box {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: #131923;
  border: 1px solid #1e293b;
}

.pros-box { border-top: 4px solid #00ff88; }
.cons-box { border-top: 4px solid #f59e0b; }

.pros-box h4 { color: #00ff88; margin-bottom: 1rem; }
.cons-box h4 { color: #f59e0b; margin-bottom: 1rem; }

.pros-box ul, .cons-box ul {
  list-style: none;
}

.pros-box li, .cons-box li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.pros-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: 800;
}

.cons-box li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 800;
}

/* ==========================================================================
   Steps & Checklists
   ========================================================================== */
.steps-list {
  list-style: none;
  counter-reset: steps-counter;
  margin: 1.75rem 0;
}

.step-item {
  counter-increment: steps-counter;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.5rem;
}

.step-item::before {
  content: counter(steps-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #1a2230;
  color: #00e5ff;
  border: 2px solid #00e5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f1f5f9;
  margin-bottom: 0.35rem;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background: #131923;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #f1f5f9;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #00e5ff;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
  color: #f59e0b;
}

.faq-content {
  padding: 0 1.5rem 1.25rem;
  color: #f1f5f9;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   Author Box & E-E-A-T
   ========================================================================== */
.author-box {
  background: #131923;
  border: 1px solid #1e293b;
  border-left: 4px solid #00e5ff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1a2230;
  border: 2px solid #00e5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #00e5ff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.1rem;
  color: #f1f5f9;
  margin-bottom: 0.2rem;
}

.author-role {
  font-size: 0.8rem;
  color: #00ff88;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

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

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

.internal-link-card {
  background: #131923;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: all 0.2s ease;
  display: block;
}

.internal-link-card:hover {
  border-color: #00e5ff;
  transform: translateY(-2px);
  background: #1a2230;
}

.internal-link-card h5 {
  color: #f1f5f9;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.internal-link-card p {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Site Footer & Statutory Disclaimers
   ========================================================================== */
.site-footer {
  background: #0b0e14;
  border-top: 1px solid #1e293b;
  padding: 3rem 0 2rem;
  margin-top: auto;
  font-size: 0.85rem;
  color: #94a3b8;
}

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

.footer-col h5 {
  color: #f1f5f9;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #94a3b8;
}

.footer-col a:hover {
  color: #00e5ff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 1.5rem;
}

.footer-disclaimer-box {
  background: #131923;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-disclaimer-box p {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-disclaimer-box p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.775rem;
  color: #64748b;
}

/* ==========================================================================
   Mobile Sticky CTA (Desktop Hidden, Mobile Only)
   ========================================================================== */
.sticky-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(11, 14, 20, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid #1e293b;
    padding: 0.75rem 1rem;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
  }

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

  .sticky-offer-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #f1f5f9;
    line-height: 1.2;
  }

  .sticky-offer-text span {
    display: block;
    font-size: 0.7rem;
    color: #f59e0b;
    font-weight: 600;
  }

  .sticky-cta-btn {
    flex-shrink: 0;
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
  }

  /* Adjust body padding for sticky bar */
  body {
    padding-bottom: 72px;
  }

  /* Responsive layout changes */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-badge-row {
    justify-content: center;
  }

  .offer-card {
    text-align: center;
    border-left: none;
    border-top: 4px solid #f59e0b;
  }

  .offer-perks {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

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

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

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

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

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-backdrop {
  display: none !important;
}

.drawer-header,
.drawer-search,
.drawer-footer {
  display: none !important;
}

.portal-announcement {
  display: none !important;
}

@media (max-width: 1080px) {
  .drawer-header {
    display: flex !important;
  }

  .drawer-search {
    display: flex !important;
  }

  .drawer-footer {
    display: flex !important;
  }

  .burger-btn {
    display: flex;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    cursor: pointer;
  }

  .burger-toggle:checked ~ .nav-backdrop,
  .site-header:has(.burger-toggle:checked) .nav-backdrop {
    display: block;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -330px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #0c101a;
    border-right: 1px solid #1e2a40;
    box-shadow: 15px 0 50px rgba(0, 0, 0, 0.85);
    padding: 1.25rem 1rem;
    gap: 0.4rem;
    border-radius: 0;
    border: none;
    z-index: 99999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .burger-toggle:checked ~ .nav-menu,
  .site-header:has(.burger-toggle:checked) .nav-menu {
    left: 0;
  }

  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 0.85rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #1e2a40;
  }

  .drawer-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    border: 1px solid #1e2a40;
    transition: all 0.2s ease;
  }

  .drawer-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #0066ff;
  }

  .drawer-search {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #141c2c;
    border: 1px solid #1e2a40;
    border-radius: 6px;
    padding: 0.55rem 0.85rem;
    width: 100%;
    margin-bottom: 0.75rem;
    color: #94a3b8;
  }

  .drawer-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #f8fafc;
    font-size: 0.82rem;
    width: 100%;
  }

  .nav-menu .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    background: transparent;
    color: #cbd5e1;
    border: none;
  }

  .nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
  }

  .nav-menu .nav-link.active {
    background: var(--ruby-active);
    color: #ffffff;
    font-style: italic;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    box-shadow: var(--ruby-glow);
  }

  .drawer-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    border-top: 1px solid #1e2a40;
  }

  .drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .drawer-bottom-links {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
  }

  .drawer-meta-link {
    color: #94a3b8;
    text-decoration: none;
  }
}

@media (max-width: 520px) {
  .site-header .container {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
  .nav-inner {
    height: 56px;
    gap: 0.35rem;
  }
  .nav-left {
    gap: 0.45rem;
  }
  .burger-btn {
    padding: 0.35rem;
  }
  .burger-btn svg {
    width: 20px;
    height: 20px;
  }
  .brand-logo img {
    height: 24px;
  }
  .nav-actions {
    gap: 0.3rem;
  }
  .nav-actions .btn-outline {
    padding: 0.32rem 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    min-height: 32px !important;
  }
  .nav-actions .btn-primary {
    padding: 0.32rem 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    min-height: 32px !important;
  }
}

@media (max-width: 440px) {
  .nav-actions .btn-outline {
    display: none !important;
  }
  .nav-actions .btn-primary {
    padding: 0.36rem 0.85rem;
    font-size: 0.75rem;
  }
}


/* ==========================================================================
   Phase 08 Grid, Tap Targets, Mobile Sticky & Container Overflow Fixes
   ========================================================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.85rem !important;
  }
  .section-header .btn {
    align-self: flex-start !important;
  }
}

@media (max-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }
}

.game-card {
  display: flex !important;
  flex-direction: column !important;
  background: #141c2c;
  border: 1px solid #1e2a40;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-width: 0 !important;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: #0066ff;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.game-card img, .game-poster-link img {
  aspect-ratio: 2 / 3 !important;
  object-fit: cover !important;
  width: 100% !important;
  height: auto !important;
}

.game-info {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  padding: 0.75rem !important;
  text-align: center;
  min-width: 0 !important;
}

.game-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.25rem;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  white-space: normal !important;
  line-height: 1.25 !important;
  min-height: 2.5em;
  word-break: break-word !important;
}

.game-provider {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.game-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #94a3b8;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-play-btn {
  margin-top: auto !important;
  width: 100%;
}

@media (max-width: 640px) {
  .game-card {
    border-radius: 6px;
  }
  .game-info {
    padding: 0.55rem 0.4rem !important;
  }
  .game-title {
    font-size: 0.82rem !important;
    min-height: 2.1em !important;
    line-height: 1.2 !important;
    margin-bottom: 0.15rem !important;
  }
  .game-provider {
    font-size: 0.68rem !important;
    margin-bottom: 0.4rem !important;
  }
  .game-desc {
    display: none !important;
  }
  .game-play-btn {
    padding: 0.4rem 0.5rem !important;
    font-size: 0.74rem !important;
    min-height: 38px !important;
  }
}

.nav-actions .btn {
  min-height: 36px !important;
}

button, .btn:not(.nav-actions .btn), a.cta, .sticky-cta-btn, .burger-btn {
  min-height: 44px !important;
}

.sticky-cta-bar, .sticky-cta-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .sticky-cta-bar, .sticky-cta-mobile {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    background: rgba(12, 16, 26, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid #1e2a40 !important;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6) !important;
    padding: 0.6rem 0.75rem !important;
    box-sizing: border-box !important;
  }

  .sticky-cta-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .sticky-offer-text {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.84rem !important;
    color: #f1f5f9 !important;
    line-height: 1.15 !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    overflow: hidden !important;
  }

  .sticky-offer-text span {
    display: block !important;
    font-size: 0.68rem !important;
    color: #f59e0b !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .sticky-cta-btn {
    flex-shrink: 0 !important;
    padding: 0.5rem 0.95rem !important;
    font-size: 0.8rem !important;
    min-height: 38px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  .sticky-offer-text {
    font-size: 0.76rem !important;
  }
  .sticky-offer-text span {
    font-size: 0.62rem !important;
  }
  .sticky-cta-btn {
    padding: 0.42rem 0.7rem !important;
    font-size: 0.74rem !important;
    min-height: 36px !important;
  }
}

.portal-announcement { display: none !important; }
