/* ============================================
   Vulkan Vegas — vulkanvegas-offiziell.de
   Brand: Deep Purple, Red, Gold/Yellow, Blue
   ============================================ */

:root {
  --bg-body: #08031A;
  --bg-dark: #0E0628;
  --bg-card: #150D38;
  --bg-card-hover: #1C1248;
  --bg-elevated: #221758;
  --bg-glass: rgba(22, 14, 60, .55);
  --red: #E31E24;
  --red-light: #FF4349;
  --red-dark: #B31419;
  --gold: #FFD700;
  --gold-light: #FFE44D;
  --gold-dark: #C8A800;
  --blue: #3F51B5;
  --blue-light: #7986CB;
  --purple: #7C4DFF;
  --purple-light: #B388FF;
  --white: #FFFFFF;
  --text-primary: #EDE8F5;
  --text-secondary: #B0A3CC;
  --text-muted: #7A6BAA;
  --border: #2A1D5C;
  --border-light: #382870;
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .3);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .5);
  --shadow-glow: 0 0 30px rgba(227, 30, 36, .15);
  --transition: .3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --header-h: 70px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  color: var(--white);
}

h1 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: .55em;
}

h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  margin-bottom: .45em;
}

h4 {
  font-size: 1.08rem;
}

p {
  margin-bottom: 1em;
  color: var(--text-secondary);
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  overflow-wrap: break-word;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--bg-dark);
}

.text-red {
  color: var(--red);
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .93rem;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(227, 30, 36, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(227, 30, 36, .5);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-body);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  color: var(--bg-body);
}

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-ghost {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--bg-body);
}

.btn-sm {
  padding: 9px 20px;
  font-size: .84rem;
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

.btn-pulse {
  animation: pulse 2.2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(227, 30, 36, .45);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(227, 30, 36, 0);
  }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(8, 3, 26, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 29, 92, .6);
  z-index: 1000;
  transition: background var(--transition);
}

.header.scrolled {
  background: rgba(8, 3, 26, .96);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  background: rgba(227, 30, 36, .12);
}

.header__cta {
  display: flex;
  gap: 10px;
}

.header__cta .btn {
  padding: 9px 20px;
  font-size: .84rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  transition: all .25s ease;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text-secondary);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--white);
  background: rgba(227, 30, 36, .1);
}

.mobile-nav__cta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.mobile-nav__cta .btn {
  flex: 1;
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(155deg, var(--bg-body) 0%, #12093A 35%, #1A0840 60%, #200C3A 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(227, 30, 36, .1) 0%, transparent 65%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-dark), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  background: rgba(227, 30, 36, .12);
  color: var(--red-light);
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(227, 30, 36, .25);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero__title {
  margin-bottom: 18px;
}

.hero__title span {
  color: var(--red);
}

.hero__desc {
  font-size: 1.08rem;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero__stat-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}

.hero__stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  border-color: var(--red-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(227, 30, 36, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.card__title {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Glass Card */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: rgba(227, 30, 36, .3);
  transform: translateY(-3px);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(227, 30, 36, .1), transparent 70%);
}

/* Bonus Card */
.bonus-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: 50%;
  opacity: .08;
}

.bonus-card__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  margin-bottom: 14px;
}

.bonus-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}

.bonus-card__info {
  color: var(--text-muted);
  font-size: .88rem;
  margin: 10px 0 18px;
}

/* Feature Card */
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--red);
}

.feature-card__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-heading);
}

.feature-card__label {
  font-size: .83rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Stat Card */
.stat-card {
  background: linear-gradient(135deg, rgba(227, 30, 36, .08), rgba(255, 215, 0, .05));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
}

.stat-card__value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}

.stat-card__label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   TABLES (4 styles)
   ============================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

/* Style 1: Volcano — red header */
.table-volcano {
  width: 100%;
}

.table-volcano th {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.table-volcano td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: .9rem;
}

.table-volcano tr:hover td {
  background: rgba(227, 30, 36, .04);
}

.table-volcano .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* Style 2: Striped — alternating purple */
.table-striped {
  width: 100%;
}

.table-striped th {
  background: var(--bg-elevated);
  color: var(--gold);
  font-weight: 700;
  text-align: left;
  padding: 13px 18px;
  font-size: .84rem;
  text-transform: uppercase;
}

.table-striped td {
  padding: 12px 18px;
  font-size: .9rem;
}

.table-striped tr:nth-child(even) td {
  background: rgba(255, 255, 255, .02);
}

.table-striped tr:nth-child(odd) td {
  background: var(--bg-card);
}

/* Style 3: Compact — minimal */
.table-compact {
  width: 100%;
}

.table-compact th {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  font-size: .82rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
}

.table-compact td {
  padding: 10px 14px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
}

/* Style 4: Bordered — full borders, centered */
.table-bordered {
  width: 100%;
}

.table-bordered th {
  background: var(--bg-elevated);
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  padding: 12px 16px;
  font-size: .84rem;
  border: 1px solid var(--border);
}

.table-bordered td {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: .88rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 600;
}

.badge--green {
  background: rgba(34, 197, 94, .15);
  color: var(--success);
}

.badge--gold {
  background: rgba(255, 215, 0, .15);
  color: var(--gold);
}

.badge--red {
  background: rgba(227, 30, 36, .15);
  color: var(--red);
}

.badge--blue {
  background: rgba(63, 81, 181, .15);
  color: var(--blue-light);
}

.badge--purple {
  background: rgba(124, 77, 255, .15);
  color: var(--purple-light);
}

/* ============================================
   CHARTS (CSS-only)
   ============================================ */
/* Donut */
.donut-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donut-chart__center {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.donut-chart__value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}

.donut-chart__label {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Bar Chart (vertical) */
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 220px;
  padding: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bar-chart__col {
  flex: 1;
  min-width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.bar-chart__bar {
  width: 100%;
  max-width: 46px;
  border-radius: 6px 6px 0 0;
  transition: height .8s ease;
}

.bar-chart__bar--red {
  background: linear-gradient(180deg, var(--red-light), var(--red-dark));
}

.bar-chart__bar--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}

.bar-chart__bar--blue {
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
}

.bar-chart__bar--purple {
  background: linear-gradient(180deg, var(--purple-light), var(--purple));
}

.bar-chart__bar--green {
  background: linear-gradient(180deg, #4ade80, #16a34a);
}

.bar-chart__label {
  font-size: .72rem;
  color: var(--text-muted);
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.bar-chart__value {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Horizontal Bar Chart */
.hbar-chart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hbar-chart__item,
.hbar-chart__row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hbar-chart__label {
  width: 120px;
  font-size: .85rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.hbar-chart__track,
.hbar-chart__bar-wrap {
  flex: 1;
  height: 28px;
  background: var(--bg-elevated);
  border-radius: 14px;
  overflow: hidden;
}

.hbar-chart__fill,
.hbar-chart__bar {
  height: 100%;
  border-radius: 14px;
  transition: width 1s ease;
  display: flex;
  align-items: center;
  padding-left: 12px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
}

.hbar-chart__fill--red {
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
}

.hbar-chart__fill--gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  color: var(--bg-body);
}

.hbar-chart__fill--blue {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.hbar-chart__fill--green {
  background: linear-gradient(90deg, #16a34a, #4ade80);
  color: var(--bg-body);
}

.hbar-chart__fill--purple {
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}

/* Progress Circle */
.progress-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-circle__inner {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.progress-circle__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.progress-circle__label {
  font-size: .58rem;
  color: var(--text-muted);
}

/* Rating Bars */
.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rating-bar__label {
  font-size: .85rem;
  color: var(--text-secondary);
  width: 110px;
  flex-shrink: 0;
}

.rating-bar__track {
  flex: 1;
  height: 10px;
  background: var(--bg-elevated);
  border-radius: 5px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width .8s ease;
}

.rating-bar__value {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  width: 40px;
  text-align: right;
}

/* Gauge */
.gauge {
  width: 180px;
  height: 100px;
  position: relative;
  overflow: hidden;
}

.gauge__bg {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  border: 16px solid var(--bg-elevated);
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
}

.gauge__fill {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  border: 16px solid transparent;
  border-top-color: var(--red);
  border-right-color: var(--red);
  transform: rotate(-45deg);
}

.gauge__value {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}

/* Stars */
.stars {
  display: flex;
  gap: 3px;
}

.star {
  font-size: 1.1rem;
  color: var(--border);
}

.star.filled {
  color: var(--gold);
}

/* Chart Legend */
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.chart-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-secondary);
}

.chart-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ============================================
   AUTHOR
   ============================================ */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-box__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--red);
  overflow: hidden;
  flex-shrink: 0;
}

.author-box__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-box__info {
  flex: 1;
}

.author-box__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.author-box__role {
  font-size: .8rem;
  color: var(--red-light);
  margin-bottom: 10px;
}

.author-box__bio {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__q {
  padding: 16px 20px;
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-primary);
  transition: background var(--transition);
}

.faq-item__q:hover {
  background: var(--bg-card-hover);
}

.faq-item__q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--red);
  transition: transform var(--transition);
}

.faq-item.open .faq-item__q::after {
  content: '−';
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  font-size: .9rem;
  color: var(--text-muted);
}

.faq-item.open .faq-item__a {
  max-height: 320px;
  padding: 0 20px 18px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 94px 0 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  flex-wrap: wrap;
}

.breadcrumb__list li {
  color: var(--text-muted);
}

.breadcrumb__list li a {
  color: var(--text-secondary);
}

.breadcrumb__list li a:hover {
  color: var(--gold);
}

/* ============================================
   PROS / CONS
   ============================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-list,
.cons-list {
  padding: 24px;
  border-radius: var(--radius-md);
}

.pros-list {
  background: rgba(34, 197, 94, .06);
  border: 1px solid rgba(34, 197, 94, .15);
}

.cons-list {
  background: rgba(239, 68, 68, .06);
  border: 1px solid rgba(239, 68, 68, .15);
}

.pros-list h4 {
  color: var(--success);
  margin-bottom: 14px;
}

.cons-list h4 {
  color: var(--error);
  margin-bottom: 14px;
}

.pros-list li,
.cons-list li {
  padding: 6px 0;
  font-size: .9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pros-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.cons-list li::before {
  content: '✗';
  color: var(--error);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   INFO BOX
   ============================================ */
.info-box {
  background: rgba(227, 30, 36, .05);
  border: 1px solid rgba(227, 30, 36, .2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 20px 0;
}

.info-box__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--red-light);
  margin-bottom: 6px;
}

.info-box p {
  font-size: .88rem;
  margin-bottom: 0;
}

/* ============================================
   STEPS
   ============================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}

.step__content h4 {
  margin-bottom: 4px;
}

.step__content p {
  font-size: .9rem;
  margin-bottom: 0;
}

/* ============================================
   TOC
   ============================================ */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.toc__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-light);
  margin-bottom: 12px;
}

.toc ol {
  counter-reset: toc;
  padding-left: 0;
}

.toc li {
  counter-increment: toc;
  padding: 6px 0;
}

.toc li a {
  color: var(--text-secondary);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc li a::before {
  content: counter(toc) '.';
  color: var(--red);
  font-weight: 600;
  min-width: 20px;
}

.toc li a:hover {
  color: var(--gold);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.testimonial__text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: .9rem;
  margin-bottom: 14px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--red);
  font-size: .85rem;
}

.testimonial__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial__date {
  font-size: .74rem;
  color: var(--text-muted);
}

/* ============================================
   PAYMENT CARDS
   ============================================ */
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}

.payment-card:hover {
  border-color: var(--red-dark);
}

.payment-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.payment-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
}

.payment-card__detail {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  font-size: .86rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 300px;
}

.footer__title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: .86rem;
}

.footer__links a:hover {
  color: var(--red-light);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.footer__disclaimer {
  background: rgba(227, 30, 36, .04);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
}

.footer__disclaimer p {
  font-size: .76rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 800;
  font-size: .85rem;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: .84rem;
  color: var(--text-muted);
  margin: 0;
}

.cookie-banner p a {
  color: var(--gold);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .table-wrap table {
    min-width: 580px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero__stats {
    gap: 20px;
  }

  .section {
    padding: 44px 0;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .bar-chart {
    height: 170px;
    gap: 6px;
  }

  .bar-chart__col {
    min-width: 30px;
  }

  .bar-chart__bar {
    max-width: 28px;
  }

  .bar-chart__label {
    font-size: .65rem;
  }

  .bar-chart__value {
    font-size: .7rem;
  }

  .hbar-chart__item {
    flex-wrap: wrap;
    gap: 4px 14px;
  }

  .hbar-chart__label {
    width: 100%;
    font-size: .8rem;
    font-weight: 600;
  }

  .hbar-chart__track {
    width: 100%;
  }

  .donut-chart {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .donut-chart__center {
    width: 90px;
    height: 90px;
  }

  .donut-chart__value {
    font-size: 1.5rem;
  }

  .progress-circle {
    width: 80px;
    height: 80px;
  }

  .progress-circle__inner {
    width: 60px;
    height: 60px;
  }

  .progress-circle__value {
    font-size: .95rem;
  }

  .gauge {
    width: 140px;
    height: 78px;
  }

  .gauge__bg,
  .gauge__fill {
    width: 140px;
    height: 140px;
    border-width: 12px;
  }

  .gauge__value {
    font-size: 1.1rem;
  }

  .rating-bar__label {
    width: 80px;
    font-size: .8rem;
  }

  .table-wrap {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .table-wrap table {
    min-width: 520px;
  }

  .table-volcano th,
  .table-volcano td,
  .table-striped th,
  .table-striped td,
  .table-compact th,
  .table-compact td,
  .table-bordered th,
  .table-bordered td {
    padding: 10px 12px;
    font-size: .82rem;
    white-space: nowrap;
  }

  .steps {
    gap: 18px;
  }

  .step__num {
    width: 38px;
    height: 38px;
    font-size: .95rem;
  }

  .step {
    gap: 14px;
  }

  .bonus-card {
    padding: 24px 20px;
  }

  .bonus-card__amount {
    font-size: 1.7rem;
  }

  .toc {
    padding: 18px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 14px 20px;
  }

  .payment-card {
    padding: 16px;
    gap: 12px;
  }

  .flex.items-center.gap-4 {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 62px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: .95rem;
  }

  .hero {
    padding: 85px 0 40px;
  }

  .hero__badge {
    font-size: .72rem;
  }

  .hero__desc {
    font-size: .95rem;
  }

  .hero__stat-value {
    font-size: 1.3rem;
  }

  h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  h3 {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
  }

  .donut-chart {
    width: 130px;
    height: 130px;
  }

  .donut-chart__center {
    width: 78px;
    height: 78px;
  }

  .donut-chart__value {
    font-size: 1.3rem;
  }

  .bar-chart {
    height: 140px;
    gap: 4px;
  }

  .bar-chart__bar {
    max-width: 22px;
  }

  .bar-chart__label {
    font-size: .6rem;
  }

  .progress-circle {
    width: 70px;
    height: 70px;
  }

  .progress-circle__inner {
    width: 52px;
    height: 52px;
  }

  .progress-circle__value {
    font-size: .85rem;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .table-volcano th,
  .table-volcano td,
  .table-striped th,
  .table-striped td,
  .table-compact th,
  .table-compact td,
  .table-bordered th,
  .table-bordered td {
    padding: 8px 10px;
    font-size: .78rem;
  }

  .rating-bar__label {
    width: 65px;
    font-size: .75rem;
  }

  .rating-bar__track {
    height: 8px;
  }

  .step__num {
    width: 34px;
    height: 34px;
    font-size: .85rem;
  }

  .author-box {
    padding: 20px;
    gap: 16px;
  }

  .author-box__photo {
    width: 64px;
    height: 64px;
  }

  .footer {
    padding: 36px 0 0;
  }

  .footer__grid {
    gap: 24px;
  }

  .mobile-nav {
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .breadcrumb {
    padding: 80px 0 0;
  }

  .breadcrumb__list {
    font-size: .78rem;
  }

  [style*="min-width:300px"] {
    min-width: 0 !important;
  }

  [style*="max-width:700px"],
  [style*="max-width:650px"],
  [style*="max-width:600px"] {
    max-width: 100% !important;
  }
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

@media (pointer: coarse) {
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .faq-item__q {
    min-height: 48px;
  }

  .toc li a {
    min-height: 44px;
  }

  .footer__links a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 10001;
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 700;
  font-size: .95rem;
  transition: top .3s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  outline: none;
  color: var(--white);
}

/* ============================================
   FOCUS VISIBLE (Accessibility)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   UTILITIES (additions)
   ============================================ */
.mt-5 {
  margin-top: 48px;
}

/* ============================================
   PROGRESS CIRCLE WRAP
   ============================================ */
.progress-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

/* ============================================
   BREADCRUMB (semantic fix)
   ============================================ */
.breadcrumb__list li {
  display: inline;
  color: var(--text-muted);
}

.breadcrumb__list li+li::before {
  content: '/';
  margin: 0 8px;
  color: var(--text-muted);
}

.breadcrumb__list li a {
  color: var(--text-secondary);
}

.breadcrumb__list li a:hover {
  color: var(--gold);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {

  .header,
  .mobile-nav,
  .cookie-banner,
  .hero__actions,
  .btn-pulse,
  .hamburger,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .card,
  .glass-card,
  .bonus-card,
  .feature-card,
  .stat-card {
    border: 1px solid #ccc;
    background: #fff;
  }

  .footer {
    background: #f5f5f5;
    border-top: 1px solid #ccc;
  }

  .table-volcano th {
    background: #333;
    color: #fff;
  }

  .table-striped th,
  .table-bordered th,
  .table-compact th {
    background: #eee;
    color: #000;
  }
}

/* VULKAN VEGAS VISUAL OVERHAUL - CSS Enhanced */
.hero--split .hero__split-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero--split .hero__content {
  flex: 1;
  max-width: 50%;
}

.hero--split .hero__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-img-style {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 20, 50, 0.5), 0 0 20px rgba(0, 195, 255, 0.3);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.hero-img-style:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 20, 50, 0.6), 0 0 30px rgba(0, 195, 255, 0.5);
}

@media (max-width: 900px) {
  .hero--split .hero__split-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero--split .hero__content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero--split .hero__image {
    justify-content: center;
  }
}

/* VULKAN VEGAS VISUAL OVERHAUL - SLOT GRID */
.slot-grid {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.slot-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 195, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 195, 255, 0.15);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.slot-card__info {
  padding: 1rem;
  text-align: center;
}

.slot-card__info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: #fff;
}

.slot-card__info span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}