/* ==========================================================================
   JeetKhel Official Brand Theme & Design System (DE-DE 2026)
   Authentic visual identity mirrored from official jeetkhel.com platform
   ========================================================================== */

:root {
  /* Brand Palette from official jeetkhel.com */
  --color-bg: #050b1d;
  --color-surface: #0c1836;
  --color-surface-elevated: #0e1d44;
  --color-surface-card: rgba(12, 24, 54, 0.78);
  --color-surface-glass: rgba(14, 29, 68, 0.65);
  --color-text: #f8fafc;
  --color-text-secondary: #cedbf5;
  --color-text-muted: #94a3b8;
  --color-accent: #e23388;
  --color-accent-glow: rgba(226, 51, 136, 0.35);
  --color-brand-blue: #50a1f3;
  --color-brand-purple: #804cb6;
  --color-border: #1e293b;
  --color-border-glow: rgba(80, 161, 243, 0.25);
  --color-gold: #f59e0b;
  --color-gold-hover: #d97706;
  --color-gold-glow: rgba(245, 158, 11, 0.45);
  --color-success: #10b981;

  /* Typography Scale */
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Elevation & Geometry */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 9999px;
  --container-max: 1240px;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
  --shadow-card-hover: 0 16px 40px -5px rgba(0, 0, 0, 0.75), 0 0 24px rgba(80, 161, 243, 0.25);
  --shadow-glow: 0 0 24px rgba(226, 51, 136, 0.35);
  --shadow-gold: 0 6px 20px rgba(245, 158, 11, 0.42);

  /* Transitions */
  --transition-fast: all 0.18s ease;
  --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background-color: #050b1d;
  background-image:
    radial-gradient(circle at 15% 12%, rgba(226, 51, 136, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 18%, rgba(128, 76, 182, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(80, 161, 243, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  color: #f8fafc;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-top: 2.2rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 8px;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #e23388, #50a1f3);
  border-radius: var(--radius-pill);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

p strong {
  color: #f8fafc;
  font-weight: 600;
}

a {
  color: #50a1f3;
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: #e23388;
}

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

.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}

.main-content {
  padding-bottom: 40px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}



/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background-color: rgba(5, 11, 29, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(80, 161, 243, 0.15);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}



.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.03);
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 170px;
  filter: drop-shadow(0 2px 12px rgba(235, 35, 131, 0.5));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 18px rgba(235, 35, 131, 0.8));
}

.main-nav .nav-list,
.main-nav ul {
  display: flex;
  list-style: none;
  gap: clamp(8px, 1.2vw, 18px);
  align-items: center;
}

.main-nav a {
  color: #cedbf5;
  font-size: clamp(0.82rem, 0.92vw, 0.92rem);
  font-weight: 500;
  position: relative;
  padding: 8px 4px;
  white-space: nowrap;
  text-transform: none;
  transition: color var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #50a1f3, #e23388);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 8px rgba(226, 51, 136, 0.6);
}

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

/* ==========================================================================
   Buttons System (CTAs)
   ========================================================================== */
.btn,
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
  min-height: 46px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.84rem;
  min-height: 40px;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.02rem;
  min-height: 52px;
}

/* Premium Luminous Gold CTA Button */
.btn-primary {
  background: linear-gradient(180deg, #ffc01e 0%, #f59e0b 55%, #d97706 100%);
  color: #050b1d !important;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  transition: left 0.65s ease;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ffd147 0%, #fbbf24 55%, #f59e0b 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.65), 0 0 18px rgba(251, 191, 36, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.95);
  color: #050b1d !important;
}

.btn-primary:hover::before {
  left: 140%;
}

.btn-primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
}

/* Electric Magenta Accent Button */
.btn-accent {
  background: linear-gradient(135deg, #e23388 0%, #804cb6 100%);
  color: #ffffff !important;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 18px rgba(226, 51, 136, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #f43f5e 0%, #e23388 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(226, 51, 136, 0.65), 0 0 16px rgba(244, 63, 94, 0.4);
  color: #ffffff !important;
}

/* Premium Frosted Glass Secondary Button */
.btn-secondary {
  background: rgba(80, 161, 243, 0.12);
  color: #ffffff !important;
  font-weight: 700;
  border: 1px solid rgba(80, 161, 243, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.btn-secondary:hover {
  background: rgba(80, 161, 243, 0.24);
  border-color: #50a1f3;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 161, 243, 0.4), 0 0 14px rgba(80, 161, 243, 0.25);
}

/* Frosted Outline Button (Anmelden) */
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0 !important;
  font-weight: 700;
  border: 1px solid rgba(80, 161, 243, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: #50a1f3;
  color: #ffffff !important;
  background: rgba(80, 161, 243, 0.18);
  box-shadow: 0 0 15px rgba(80, 161, 243, 0.35);
  transform: translateY(-1px);
}

/* ==========================================================================
   Hero Section (Official JeetKhel Two-Column Layout)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 40px 0 30px;
}

.hero-content {
  background: linear-gradient(135deg, rgba(12, 24, 54, 0.9) 0%, rgba(14, 29, 68, 0.8) 50%, rgba(9, 18, 44, 0.95) 100%);
  border: 1px solid rgba(80, 161, 243, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card), 0 0 35px rgba(226, 51, 136, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(226, 51, 136, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-text {
  flex: 1 1 58%;
  position: relative;
  z-index: 1;
}

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

.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(80, 161, 243, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.hero-img:hover {
  transform: scale(1.02);
}

.hero-title {
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cedbf5;
  margin-bottom: 24px;
}

/* Glassmorphism Offer Box */
.hero-offer-box {
  background: rgba(5, 11, 29, 0.75);
  border-left: 5px solid #f59e0b;
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  border-right: 1px solid rgba(245, 158, 11, 0.2);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.offer-tag {
  display: inline-block;
  color: #f59e0b;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.offer-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.offer-sub {
  font-size: 0.92rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ==========================================================================
   Trust Bar & Badges
   ========================================================================== */
.trust-badge {
  background: rgba(12, 24, 54, 0.85);
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin: 24px 0 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #cedbf5;
}

.trust-icon {
  color: #10b981;
  font-size: 1.15rem;
  font-weight: bold;
}

.badge-safe, .badge-rng {
  color: #10b981;
  font-weight: 700;
}

/* ==========================================================================
   Quick Actions Grid (Categories & Gateways)
   ========================================================================== */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0 45px;
}

.action-card {
  background: linear-gradient(180deg, #0c1836 0%, #081228 100%);
  border: 1px solid rgba(80, 161, 243, 0.18);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #50a1f3, transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.action-card:hover {
  transform: translateY(-6px);
  border-color: #50a1f3;
  box-shadow: var(--shadow-card-hover);
}

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

.action-icon {
  font-size: 2.3rem;
  margin-bottom: 12px;
  display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.action-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 8px;
}

.action-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.action-link {
  color: #50a1f3;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.action-link:hover {
  color: #e23388;
  transform: translateX(3px);
}

/* ==========================================================================
   Games Grid Section (Official JeetKhel Curated Slots)
   ========================================================================== */
.games-grid-section {
  padding: 40px 0;
}

.section-subtitle {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-subtitle::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 24px;
  background: linear-gradient(180deg, #e23388 0%, #804cb6 100%);
  border-radius: var(--radius-pill);
}

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

.game-card {
  aspect-ratio: auto;
  overflow-wrap: break-word;
  hyphens: auto;
  background: linear-gradient(180deg, #0c1836 0%, #081024 100%);
  border: 1px solid rgba(80, 161, 243, 0.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: #e23388;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(226, 51, 136, 0.3);
}

.game-thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #050b1d;
  display: block;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(5, 11, 29, 0.88);
  color: #f59e0b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.4);
  backdrop-filter: blur(6px);
}

.game-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.game-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.game-name a {
  color: #ffffff;
}

.game-name a:hover {
  color: #50a1f3;
}

.game-details {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 14px;
}

.game-card .btn {
  width: 100%;
}

/* ==========================================================================
   Content Article, Feature Grids & Steps
   ========================================================================== */
.content-article {
  padding: 20px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.feature-card {
  background: linear-gradient(180deg, #0c1836 0%, #081024 100%);
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.feature-card:hover {
  border-color: #50a1f3;
  transform: translateY(-4px);
}

.feature-card h3 {
  color: #50a1f3;
  margin-top: 0;
  margin-bottom: 10px;
}

.steps-section {
  margin: 40px 0;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 28px 0;
  list-style: none;
}

.step-item {
  background: #0c1836;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #e23388, #804cb6);
  color: #ffffff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 12px rgba(226, 51, 136, 0.4);
}

/* ==========================================================================
   Interactive Information Gain JS Calculator
   ========================================================================== */
.calc-section,
.calculator-section {
  padding: 40px 0;
}

.calc-box,
.calculator-card {
  background: linear-gradient(135deg, rgba(12, 24, 54, 0.95) 0%, rgba(9, 18, 44, 0.95) 100%);
  border: 1px solid rgba(80, 161, 243, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-input-group {
  margin-bottom: 12px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f8fafc;
  font-size: 0.95rem;
}

.calc-range {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f59e0b;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
  border: 2px solid #ffffff;
}

.calc-hint {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 6px;
}

.calc-results {
  background: #050b1d;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #1e293b;
}

.result-item:last-child {
  border-bottom: none;
  padding-top: 16px;
}

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

.result-val,
.result-value {
  font-weight: 700;
  color: #f8fafc;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
}

.result-val.highlight,
.result-value.highlight {
  color: #f59e0b;
  font-size: 1.45rem;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   Data Tables & Comparison Matrices
   ========================================================================== */
.table-section {
  padding: 30px 0;
}

.table-responsive,
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  margin: 28px 0;
  border-radius: var(--radius-md);
  border: 1px solid #1e293b;
  background: #0c1836;
  box-shadow: var(--shadow-sm);
}

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

thead th {
  background: #09122c;
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 700;
  border-bottom: 1px solid #1e293b;
  white-space: nowrap;
}

tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid #1e293b;
  color: #cedbf5;
}

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

tbody tr:hover {
  background: rgba(80, 161, 243, 0.06);
}

tbody td strong {
  color: #ffffff;
}

/* ==========================================================================
   E-E-A-T Author Box
   ========================================================================== */
.author-box {
  background: linear-gradient(135deg, #0c1836 0%, #09122c 100%);
  border: 1px solid #1e293b;
  border-left: 4px solid #50a1f3;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: var(--shadow-sm);
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #050b1d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid #50a1f3;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(80, 161, 243, 0.3);
}

.author-info {
  flex-grow: 1;
}

.author-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1.15rem;
  color: #ffffff;
}

.author-role {
  color: #50a1f3;
  font-size: 0.85rem;
  font-weight: 600;
}

.author-meta {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.author-bio {
  font-size: 0.92rem;
  color: #cedbf5;
  margin-bottom: 0;
  line-height: 1.55;
}

/* ==========================================================================
   FAQ Section & Accordion
   ========================================================================== */
.faq-section {
  padding: 40px 0;
}

.faq-list {
  max-width: 880px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #0c1836;
  border: 1px solid rgba(80, 161, 243, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(80, 161, 243, 0.38);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.faq-item[open] {
  border-color: rgba(80, 161, 243, 0.45);
  background: linear-gradient(180deg, #0e1c3e 0%, #081228 100%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(80, 161, 243, 0.12);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #f8fafc;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

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

.faq-item summary h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  flex: 1;
}

.faq-item summary:hover h3 {
  color: #50a1f3;
}

/* Elegant Animated Chevron Indicator */
.faq-item summary::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid #50a1f3;
  border-bottom: 2px solid #50a1f3;
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
  margin-right: 4px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(80, 161, 243, 0.12);
  margin-bottom: 16px;
}

.faq-item p,
.faq-answer {
  padding: 0 24px 20px;
  margin: 0;
  color: #cedbf5;
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ==========================================================================
   Official Providers Row Showcase
   ========================================================================== */
.providers-section {
  padding: 30px 0 20px;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  background: rgba(12, 24, 54, 0.5);
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
}

.provider-badge-img {
  height: 28px;
  width: auto;
  opacity: 0.75;
  transition: all var(--transition-fast);
  filter: brightness(0) invert(1);
}

.provider-badge-img:hover {
  opacity: 1;
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(80, 161, 243, 0.6));
}

/* ==========================================================================
   Footer & Responsible Gaming
   ========================================================================== */
.site-footer {
  background-color: #050b1d;
  border-top: 1px solid rgba(80, 161, 243, 0.16);
  padding: 55px 0 90px;
  color: #94a3b8;
  font-size: 0.88rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}

.footer-col h4,
.footer-col h5 {
  color: #ffffff;
  font-size: 1.02rem;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-col p {
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #cedbf5;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #50a1f3;
}

.compliance-badges,
.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

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

.badge-safe,
.badge-rng {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(80, 161, 243, 0.16);
}

.footer-disclaimer-box,
.disclaimer-text {
  max-width: 920px;
  margin: 0 auto 16px;
  background: rgba(12, 24, 54, 0.7);
  border: 1px solid rgba(80, 161, 243, 0.16);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #94a3b8;
  text-align: center;
}

.footer-disclaimer-box strong,
.disclaimer-text strong {
  color: #f8fafc;
}

.disclosure {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.copyright {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 0;
}

/* ==========================================================================
   Mobile Sticky CTA Bar & Drawer
   ========================================================================== */
.sticky-mobile-cta {
  display: none;
}

.sticky-mobile-cta .btn {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: rgba(14, 29, 68, 0.6);
  border: 1px solid rgba(80, 161, 243, 0.35);
  color: #ffffff;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(80, 161, 243, 0.2);
  border-color: #50a1f3;
}


/* ==========================================================================
   Responsive Breakpoints & Ergonomics
   ========================================================================== */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    padding: 36px 28px;
    gap: 30px;
    text-align: center;
  }
  .hero-text {
    flex: 1 1 100%;
  }
  .hero-visual {
    flex: 1 1 100%;
    width: 100%;
  }
  .hero-img {
    max-width: 480px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-offer-box {
    text-align: left;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-header {
    padding: 8px 0;
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header-inner {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

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

  .header-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .header-actions .btn-outline {
    display: none !important;
  }

  .header-actions .btn-primary {
    width: auto !important;
    padding: 7px 12px;
    font-size: 0.78rem;
    min-height: 34px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    min-width: 38px;
    padding: 6px 8px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #f8fafc;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background: rgba(5, 11, 29, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(80, 161, 243, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    padding: 16px 20px;
    z-index: 999;
  }

  .site-header.nav-open .main-nav {
    display: block;
    animation: drawerSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

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

  .main-nav .nav-list,
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 0.98rem;
    font-weight: 600;
    color: #cedbf5;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: #ffffff;
    background: rgba(80, 161, 243, 0.15);
    border-color: rgba(80, 161, 243, 0.4);
  }

  .main-nav a.active::after {
    display: none;
  }

  .hero-section {
    padding: 20px 0 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    padding: 22px 16px;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-text,
  .hero-visual {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .hero-offer-box {
    padding: 16px 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .trust-badge {
    padding: 14px 16px;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
  }

  .trust-item {
    font-size: 0.84rem;
    width: 100%;
    box-sizing: border-box;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 20px 0 28px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .action-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 22px 18px;
  }

  .action-card h3 {
    font-size: 1.1rem;
  }

  .action-card p {
    font-size: 0.86rem;
  }

  .providers-strip {
    padding: 18px 14px;
    margin: 20px 0 28px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .providers-title {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0 4px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .providers-grid {
    gap: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .provider-logo {
    height: 24px;
    max-width: 75px;
  }

  .app-screens-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .app-screen-img {
    max-width: 220px;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .game-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .game-name {
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .game-details {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.76rem;
    margin-bottom: 8px;
    line-height: 1.35;
    color: #94a3b8;
  }

  .game-info {
    padding: 10px 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .game-info .btn {
    padding: 8px 6px;
    font-size: 0.8rem;
    width: 100%;
    box-sizing: border-box;
  }

  .calc-box,
  .calculator-card {
    padding: 20px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .step-item {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 16px;
  }

  .table-responsive,
  .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .faq-item {
    width: 100%;
    box-sizing: border-box;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-col {
    width: 100%;
    box-sizing: border-box;
  }

  .footer-bottom {
    width: 100%;
    box-sizing: border-box;
    padding-top: 20px;
  }

  .footer-disclaimer-box,
  .disclaimer-text {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
  }

  /* Pinned Mobile Sticky CTA */
  .sticky-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 999;
    background: rgba(5, 11, 29, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 16px;
    border-top: 1px solid #e23388;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  }

  .sticky-mobile-cta .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  body {
    padding-bottom: 74px;
  }
}

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

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .game-badge {
    top: 6px;
    right: 6px;
    font-size: 0.68rem;
    padding: 2px 6px;
  }

  .hero-offer-box {
    padding: 14px;
  }

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

  .offer-tag {
    font-size: 0.72rem;
  }

  .offer-sub {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 5vw, 1.75rem);
    line-height: 1.22;
  }

  .hero-intro {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .trust-badge {
    padding: 12px 12px;
    gap: 8px;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .faq-item summary {
    padding: 14px 14px;
  }

  .faq-item summary h3 {
    font-size: 0.92rem;
  }

  .faq-item p,
  .faq-answer {
    padding: 0 14px 14px;
    font-size: 0.85rem;
  }
}


/* Additional Utility & Section Styles */
.content-section {
  padding: 30px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.section-tag {
  display: inline-block;
  color: #e23388;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer-brand p {
  margin-top: 12px;
  line-height: 1.6;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #050b1d;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  color: #f8fafc;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: #50a1f3;
  outline: none;
  box-shadow: 0 0 10px rgba(80, 161, 243, 0.3);
}

/* ==========================================================================
   Official Providers Strip & App Screens Grid
   ========================================================================== */
.providers-strip {
  margin: 36px 0 48px;
  padding: 24px 28px;
  background: rgba(12, 24, 54, 0.75);
  border: 1px solid rgba(80, 161, 243, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.providers-title {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 36px);
}

.provider-logo {
  height: 32px;
  width: auto;
  max-width: 105px;
  filter: grayscale(100%) brightness(175%);
  opacity: 0.72;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: contain;
}

.provider-logo:hover {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
  transform: scale(1.08);
}

.app-screens-section {
  padding: 32px 0;
  margin: 24px 0 36px;
}

.app-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 28px 0;
}

.app-screen-card {
  background: linear-gradient(180deg, #0c1836 0%, #081024 100%);
  border: 1px solid rgba(80, 161, 243, 0.22);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), border-color var(--transition-fast);
}

.app-screen-card:hover {
  transform: translateY(-5px);
  border-color: #50a1f3;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(80, 161, 243, 0.25);
}

.app-screen-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 0 auto 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-screen-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.app-screen-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 0;
}


