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

/* ==========================================================================
   PLAYAMO CASINO DEUTSCHLAND - UNIFIED LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Surface Elevation Hierarchy */
  --bg-base: #090b11;
  --bg-surface: #111422;
  --bg-surface-elevated: #181d2e;
  --bg-surface-hover: #21283d;
  --bg-glass: rgba(17, 20, 34, 0.85);

  /* Primary Brand & Accent: PlayAmo Warm Radiant Gold */
  --primary: #f59e0b;
  --primary-light: #fbbf24;
  --primary-dark: #d97706;
  --primary-gradient: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --primary-tint: rgba(245, 158, 11, 0.12);
  --primary-glow: rgba(245, 158, 11, 0.38);

  /* Secondary & Status Accents */
  --accent-green: #10b981;
  --accent-green-tint: rgba(16, 185, 129, 0.12);
  --accent-ruby: #f43f5e;
  --accent-ruby-tint: rgba(244, 63, 94, 0.12);
  --accent-sky: #38bdf8;

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-on-gold: #110d04;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-gold: rgba(245, 158, 11, 0.4);
  --border-focus: rgba(245, 158, 11, 0.7);

  /* Shadows */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-elevated: 0 16px 36px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 6px 20px rgba(245, 158, 11, 0.35);
  --shadow-gold-hover: 0 10px 30px rgba(245, 158, 11, 0.55);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  /* Typography Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container-max: 1200px;
}

/* ==========================================================================
   RESET & BASE ELEMENTS
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-base);
  color: var(--text-primary);
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background-color: var(--bg-base);
  color: var(--text-secondary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow-x: hidden;
  padding-bottom: 75px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button, a.btn {
  min-height: 48px;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  padding-left: 0.85rem;
  color: #ffffff;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

h4 {
  font-size: 1.1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

p {
  margin-bottom: 1.15rem;
  font-size: 1.02rem;
  color: #cbd5e1;
  line-height: 1.7;
}

strong, b {
  color: #ffffff;
  font-weight: 700;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px var(--primary-glow);
}

code {
  font-family: var(--font-mono);
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  background-color: rgba(9, 11, 17, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.brand-logo {
  order: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}

.brand-logo span {
  color: var(--primary-light);
  transition: color 0.2s ease;
}

.brand-logo:hover span {
  color: #ffffff;
  text-shadow: 0 0 12px var(--primary-glow);
}

.brand-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.site-nav,
nav,
nav[aria-label="Hauptnavigation"] {
  order: 2;
  display: flex;
  align-items: center;
}

.nav-links,
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-links a,
.nav-list a,
.nav-link {
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active,
.nav-list a:hover,
.nav-list a.active,
.nav-link:hover,
.nav-link.active {
  color: var(--primary-light);
  background-color: var(--primary-tint);
  text-shadow: none;
}

.header-actions,
.nav-cta {
  order: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-actions .btn,
.nav-cta .btn {
  padding: 0.5rem 1.15rem;
  font-size: 0.9rem;
  min-height: 42px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle,
.burger {
  order: 4;
}

/* ==========================================================================
   BUTTON SYSTEM (UNIFIED LUXURY GOLD STANDARD)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

/* Primary High-Converting CTA (Warm Gold Gradient Pill) */
.btn-primary,
.btn-pill-gold,
.btn-cta-main {
  background: var(--primary-gradient);
  color: var(--text-on-gold);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 
    var(--shadow-gold),
    0 2px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.btn-primary:hover,
.btn-pill-gold:hover,
.btn-cta-main:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
  box-shadow: 
    var(--shadow-gold-hover),
    0 4px 12px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);
  color: #000000;
}

.btn-primary:active,
.btn-pill-gold:active,
.btn-cta-main:active {
  transform: translateY(0) scale(0.99);
}

/* Secondary Button (Obsidian Glass) */
.btn-secondary {
  background: rgba(24, 29, 46, 0.75);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(30, 36, 56, 0.95);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.22);
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO BANNER - FULL COVER (HOMEPAGE LUXURY PATTERN)
   ========================================================================== */

.hero-banner-cover {
  position: relative;
  min-height: 600px;
  padding: 4.5rem 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
  background-color: #06080e;
  max-width: 100%;
}

.hero-cover-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-cover-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.48) saturate(1.15);
  transform: scale(1.02);
}

.hero-cover-bg-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 45%, rgba(6, 8, 14, 0.35) 0%, rgba(6, 8, 14, 0.75) 65%, #06080e 100%),
    linear-gradient(180deg, rgba(6, 8, 14, 0.6) 0%, rgba(6, 8, 14, 0.2) 40%, rgba(6, 8, 14, 0.9) 85%, #06080e 100%);
}

.hero-cover-container {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.hero-cover-title {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 1.35rem;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.85);
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-cover-title .hero-subtitle {
  display: block;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--primary-light);
  margin-top: 0.4rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(245, 158, 11, 0.4), 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-badge-box {
  display: inline-block;
  background: rgba(12, 16, 26, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 0.85rem 2.25rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-badge-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.hero-badge-val {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.hero-cover-desc {
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  color: #e2e8f0;
  max-width: 820px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.hero-cover-desc strong {
  color: #ffffff;
  font-weight: 700;
}

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

.btn-pill-gold {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  padding: 1rem 3.2rem;
}

/* Micro-Strip of Codes & Terms */
.hero-codes-strip {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(12, 16, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  box-sizing: border-box;
}

.hero-code-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
}

.code-step {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 700;
}

.code-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
  white-space: nowrap;
}

.code-badge {
  font-size: 0.78rem;
  color: #e2e8f0;
}

.code-badge strong {
  color: var(--primary-light);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.code-badge.text-green {
  color: var(--accent-green);
  font-weight: 700;
}

.hero-code-divider {
  width: 1px;
  height: 38px;
  background: var(--border-subtle);
}

/* ==========================================================================
   HERO BANNER - 2-COLUMN (INNER COMMERCIAL & GAME PAGES)
   ========================================================================== */

.hero-banner {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245, 158, 11, 0.1) 0%, rgba(17, 20, 34, 0.85) 55%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 3.5rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

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

.trust-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-green);
  background-color: var(--accent-green-tint);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.trust-badge-inline .dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
}

.hero-offer {
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 1rem;
  text-shadow: 0 0 16px var(--primary-glow);
  line-height: 1.35;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding: 0;
}

.hero-bullets li {
  background-color: rgba(17, 20, 34, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #e2e8f0;
  border-left: 3px solid var(--primary);
}

.hero-visual,
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-promo-link {
  display: block;
  width: 100%;
  max-width: 520px;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-elevated), 0 0 24px var(--primary-tint);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-promo-link:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--primary-light);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 35px var(--primary-glow);
}

.hero-visual img,
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ==========================================================================
   QUICK ACTION GRID
   ========================================================================== */

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

.quick-action-card {
  background: linear-gradient(145deg, #111422 0%, #161b2c 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}

.quick-action-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 16px var(--primary-tint);
}

.quick-action-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
}

.quick-action-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   ANSWER FIRST & EDITORIAL CARDS
   ========================================================================== */

.answer-card {
  background: linear-gradient(145deg, rgba(18, 22, 34, 0.85) 0%, rgba(13, 16, 26, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-card);
}

.answer-card h2 {
  margin-top: 0;
  border-left: none;
  padding-left: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   GAMES GRID & GAME CARDS
   ========================================================================== */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.game-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  box-shadow: var(--shadow-card);
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 20px var(--primary-tint);
}

.game-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 400/600;
  background-color: var(--bg-surface-elevated);
  overflow: hidden;
}

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

.game-card:hover .game-poster-wrap img {
  transform: scale(1.05);
}

.game-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 16, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.game-play-overlay .btn {
  pointer-events: auto;
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
  min-height: 40px;
}

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

.game-meta {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.game-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.game-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-light);
  background: var(--primary-tint);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
  width: fit-content;
}

.game-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: 0.35rem;
  margin-bottom: 0;
}

/* ==========================================================================
   TABLES & FINANCIAL COMPARISONS
   ========================================================================== */

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.table-wrap::-webkit-scrollbar {
  height: 6px;
}

.table-wrap::-webkit-scrollbar-track {
  background: var(--bg-base);
}

.table-wrap::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-full);
}

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

thead {
  background-color: var(--bg-surface-elevated);
  border-bottom: 2px solid var(--border-gold);
}

th {
  padding: 1rem 1.15rem;
  font-weight: 800;
  color: var(--primary-light);
  white-space: nowrap;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  font-size: 0.88rem;
  text-transform: uppercase;
}

td {
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
  color: #e2e8f0;
}

tbody tr:hover {
  background-color: rgba(245, 158, 11, 0.035);
}

/* ==========================================================================
   CALCULATOR WIDGET (BULLETPROOF MOBILE SAFETY)
   ========================================================================== */

.calculator-widget {
  background: linear-gradient(145deg, #111422 0%, #161b2c 100%);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-card);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
  max-width: 100%;
  box-sizing: border-box;
}

.calc-grid > * {
  min-width: 0;
  max-width: 100%;
}

.calc-control {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.calc-control label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.calc-control input[type="range"] {
  width: 100%;
  max-width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

.calc-control select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  background: var(--bg-base);
  color: #f1f5f9;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.calc-control select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-tint);
}

.calc-display {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-light);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

.calc-results {
  background-color: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.6rem;
  gap: 0.75rem;
}

.calc-result-row span:first-child {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.calc-result-val {
  font-weight: 800;
  color: var(--primary-light);
  font-family: var(--font-mono);
  font-size: 1.05rem;
}

/* ==========================================================================
   PROS AND CONS
   ========================================================================== */

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.25rem 0;
}

.pros-box, .cons-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}

.pros-box {
  border-top: 3px solid var(--accent-green);
}

.cons-box {
  border-top: 3px solid var(--accent-ruby);
}

.pros-box h3 {
  color: var(--accent-green);
  margin-top: 0;
  font-size: 1.2rem;
}

.cons-box h3 {
  color: var(--accent-ruby);
  margin-top: 0;
  font-size: 1.2rem;
}

.pros-box ul, .cons-box ul {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.pros-box li, .cons-box li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.pros-box li::before {
  content: "✓";
  color: var(--accent-green);
  position: absolute;
  left: 0;
  font-weight: 900;
}

.cons-box li::before {
  content: "✕";
  color: var(--accent-ruby);
  position: absolute;
  left: 0;
  font-weight: 900;
}

/* ==========================================================================
   STEPS LIST
   ========================================================================== */

.steps-list {
  list-style: none;
  counter-reset: step-counter;
  margin: 2rem 0;
  padding: 0;
}

.steps-list li {
  counter-increment: step-counter;
  position: relative;
  margin-bottom: 1.25rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem 1.35rem 4.5rem;
  box-shadow: var(--shadow-card);
  color: #cbd5e1;
  font-size: 0.98rem;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--primary-gradient);
  color: var(--text-on-gold);
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: 0 0 12px var(--primary-glow);
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(20, 24, 36, 0.75) 0%, rgba(13, 16, 24, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  position: relative;
}

.faq-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.faq-item.active {
  border-color: var(--primary);
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg, rgba(24, 30, 46, 0.95) 0%, rgba(15, 18, 28, 0.98) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  color: #eef2ff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  transition: color 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-title,
.faq-question h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  flex: 1;
}

.faq-item:hover .faq-title,
.faq-item:hover .faq-question h3,
.faq-item.active .faq-title,
.faq-item.active .faq-question h3 {
  color: var(--primary-light);
}

.faq-question span {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--primary-tint);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--primary-light);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item:hover .faq-question span {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.faq-item.active .faq-question span {
  transform: rotate(180deg);
  background: var(--primary-gradient);
  color: var(--text-on-gold);
  border-color: var(--primary-light);
  box-shadow: 0 0 14px var(--primary-glow);
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.4rem;
  color: #b0b9cf;
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.1rem;
}

.faq-item.active .faq-answer {
  display: block;
  animation: faqSlideDown 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  margin: 0;
  color: #b0b9cf;
}

.faq-answer p strong,
.faq-answer p b {
  color: #ffffff;
  font-weight: 700;
}

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

/* ==========================================================================
   AUTHOR BOX
   ========================================================================== */

.author-box {
  background: linear-gradient(145deg, rgba(18, 22, 34, 0.8) 0%, rgba(12, 15, 24, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin: 2.75rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--bg-surface-elevated);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 0 14px var(--primary-tint);
}

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

.author-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #06080d;
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2.25rem;
  margin-top: auto;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  background-color: rgba(17, 20, 34, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.35rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-trust-seals {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-light);
}

/* ==========================================================================
   STICKY BOTTOM CTA BAR (MOBILE ONLY)
   ========================================================================== */

.sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(9, 11, 17, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 1.15rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border-gold);
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .sticky-offer {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1.3;
  }

  .sticky-cta .btn {
    min-height: 42px;
    padding: 0.55rem 1.35rem;
    font-size: 0.92rem;
    white-space: nowrap;
    border-radius: var(--radius-full);
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES & MOBILE ERGONOMICS
   ========================================================================== */

@media (min-width: 901px) {
  .menu-toggle,
  .burger {
    display: none;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 0.75rem;
  }
  .nav-links,
  .nav-list {
    gap: 0.2rem;
  }
  .nav-links a,
  .nav-list a,
  .nav-link {
    font-size: 0.85rem;
    padding: 0.35rem 0.55rem;
  }
}

@media (max-width: 900px) {
  /* Layout */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body {
    padding-bottom: 85px;
  }

  /* Header & Navigation */
  .site-header {
    padding: 0.7rem 0;
  }

  .header-inner {
    position: relative;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
  }

  .brand-logo {
    order: 1;
    font-size: 1.3rem;
  }

  .brand-logo img {
    height: 32px;
  }

  /* CRITICAL: Hide secondary Login button on mobile header to prevent overflow */
  .header-actions .btn-secondary {
    display: none !important;
  }

  .header-actions,
  .nav-cta {
    order: 2;
    margin-left: auto;
    gap: 0.5rem;
    display: flex;
    align-items: center;
  }

  .header-actions .btn-primary,
  .nav-cta .btn {
    padding: 0.45rem 1rem;
    font-size: 0.88rem;
    min-height: 40px;
    border-radius: var(--radius-full);
  }

  .menu-toggle,
  .burger {
    order: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    color: var(--primary-light);
    font-size: 1.4rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    min-height: 44px;
    min-width: 44px;
    padding: 0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .burger:hover,
  .burger:focus-visible {
    border-color: var(--primary);
    background-color: var(--primary-tint);
    box-shadow: 0 0 12px var(--primary-glow);
  }

  /* Mobile Drawer Menu */
  nav,
  nav.site-nav,
  nav[aria-label="Hauptnavigation"] {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.7rem + 1px);
    left: -1.25rem;
    right: -1.25rem;
    background: rgba(14, 18, 28, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95);
    padding: 1.25rem 1.25rem 1.65rem;
    z-index: 1001;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  nav.open,
  nav[data-open="true"],
  nav[aria-expanded="true"] {
    display: flex;
    animation: mobileDrawerSlide 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links,
  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-links li,
  .nav-list li {
    width: 100%;
  }

  .nav-links a,
  .nav-list a,
  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    color: #e2e8f0;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: all 0.18s ease;
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-list a:hover,
  .nav-list a.active,
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-light);
    background: var(--primary-tint);
    border-left-color: var(--primary);
    padding-left: 1.25rem;
  }

  /* Cover Hero on Mobile */
  .hero-banner-cover {
    min-height: 480px;
    padding: 3rem 1rem 2.75rem;
  }

  .hero-cover-title {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: clamp(1.6rem, 5.5vw, 2.25rem);
    line-height: 1.22;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-cover-title .hero-subtitle {
    font-size: clamp(1.15rem, 4.2vw, 1.6rem);
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-badge-box {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.25rem;
    width: 100%;
  }

  .hero-badge-label {
    font-size: 0.74rem;
  }

  .hero-badge-val {
    font-size: clamp(1.2rem, 4.8vw, 1.55rem);
    white-space: normal;
  }

  .hero-cover-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-pill-gold {
    width: 100%;
    max-width: 380px;
    padding: 0.95rem 1.75rem;
    font-size: 1.05rem;
  }

  .hero-codes-strip {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .hero-code-divider {
    width: 100%;
    height: 1px;
  }

  /* 2-Column Hero on Mobile */
  .hero-banner {
    padding: 2.25rem 0 2rem;
  }

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

  .hero-content h1 {
    font-size: clamp(1.65rem, 5.5vw, 2.25rem);
  }

  .hero-offer {
    font-size: clamp(1.15rem, 4vw, 1.45rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-visual,
  .hero-media,
  .hero-promo-link {
    width: 100%;
    max-width: 100%;
  }

  /* Grid Layouts */
  .calc-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

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

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

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin: 1.5rem 0;
  }

  .game-meta {
    padding: 0.65rem 0.75rem 0.85rem;
  }

  .game-title {
    font-size: 0.92rem;
  }

  .steps-list li {
    padding: 1.25rem 1.25rem 1.25rem 3.8rem;
    font-size: 0.92rem;
  }

  .steps-list li::before {
    left: 1rem;
    top: 1rem;
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.85rem;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
    padding: 1.35rem 1rem;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .footer-trust-seals {
    gap: 0.85rem;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

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

  nav,
  nav.site-nav,
  nav[aria-label="Hauptnavigation"] {
    left: -1rem;
    right: -1rem;
    padding: 1rem 1rem 1.5rem;
  }

  .brand-logo {
    font-size: 1.2rem;
    gap: 0.45rem;
  }

  .brand-logo img {
    height: 28px;
  }

  .menu-toggle,
  .burger {
    width: 42px;
    height: 42px;
    min-height: 42px;
    min-width: 42px;
    font-size: 1.25rem;
  }

  .header-actions .btn-primary,
  .nav-cta .btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.84rem;
    min-height: 38px;
  }

  .calculator-widget {
    padding: 1.35rem 1rem;
  }

  .calc-results {
    padding: 1rem;
  }

  .faq-question {
    padding: 1rem 1.15rem;
    gap: 0.75rem;
  }

  .faq-title,
  .faq-question h3 {
    font-size: 0.98rem;
  }

  .faq-question span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.65rem;
  }

  .faq-answer {
    padding: 0 1.15rem 1.15rem;
    font-size: 0.92rem;
    padding-top: 0.85rem;
  }
}

@media (max-width: 360px) {
  .brand-logo span {
    display: none;
  }

  .header-actions .btn-primary,
  .nav-cta .btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
  }

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

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