/* ============================================================
   SlotMagie Casino – Shared Stylesheet
   Brand: Red #CC0000 | Black #080B0F | Gold #F7A800
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --red: #CC0000;
  --red-dark: #8B0000;
  --red-light: #FF3333;
  --red-mid: #DC0000;
  --gold: #F7A800;
  --gold-light: #FFD700;
  --gold-dark: #C87800;
  --bg: #080B0F;
  --bg-card: #10151C;
  --bg-card2: #181F28;
  --border: #252D38;
  --border-light: #303C4A;
  --text: #D8E0EA;
  --text-muted: #7A8899;
  --text-dim: #4A5566;
  --white: #FFFFFF;
  --green: #22C55E;
  --green-dark: #16A34A;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-red: 0 4px 24px rgba(204, 0, 0, 0.28);
  --shadow-gold: 0 4px 24px rgba(247, 168, 0, 0.22);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(204, 0, 0, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(247, 168, 0, 0.04) 0%, transparent 50%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--white);
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(135deg, var(--red-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

.text-red {
  color: var(--red-light);
}

.text-green {
  color: var(--green);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.1rem;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.grid-2>*,
.grid-3>*,
.grid-4>* {
  min-width: 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: 0.75rem;
}

.gap-md {
  gap: 1.5rem;
}

.gap-lg {
  gap: 2.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.w-full {
  width: 100%;
}

/* ===== MOBILE TRACKER BAR ===== */
.mobile-tracker-bar {
  display: none;
  background: linear-gradient(135deg, #6B0000, var(--red));
  padding: 0.65rem 1rem;
  text-align: center;
  position: relative;
  z-index: 101;
}

.mobile-tracker-bar a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

@media (max-width: 768px) {
  .mobile-tracker-bar {
    display: block;
  }
}

/* ===== SITE HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo svg,
.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 11, 15, 0.99);
  padding: 5.5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--bg-card);
  color: var(--white);
  border-color: var(--red);
}

.mobile-nav-close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.4rem;
  border: 1px solid var(--border);
  cursor: pointer;
}

.mobile-nav-cta {
  margin-top: 1rem;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: var(--radius-sm);
  text-align: center;
  color: white;
  font-weight: 700;
  border: none !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-dark), var(--red-mid));
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204, 0, 0, 0.42);
  filter: brightness(1.12);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a0800;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247, 168, 0, 0.42);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-light);
}

.btn-outline:hover {
  background: var(--bg-card2);
  border-color: var(--text-muted);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-glass {
  background: rgba(16, 21, 28, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card-red {
  border-color: rgba(204, 0, 0, 0.35);
  background: linear-gradient(145deg, rgba(139, 0, 0, 0.18), var(--bg-card));
}

.card-gold {
  border-color: rgba(247, 168, 0, 0.3);
  background: linear-gradient(145deg, rgba(200, 120, 0, 0.12), var(--bg-card));
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-red {
  background: rgba(204, 0, 0, 0.15);
  color: #FF5555;
  border: 1px solid rgba(204, 0, 0, 0.3);
}

.badge-gold {
  background: rgba(247, 168, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(247, 168, 0, 0.25);
}

.badge-green {
  background: rgba(34, 197, 94, 0.12);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(247, 168, 0, 0.1);
  border: 1px solid rgba(247, 168, 0, 0.22);
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.section-header h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.data-table th {
  background: var(--bg-card2);
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.data-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.data-table .highlight td {
  background: rgba(247, 168, 0, 0.04);
}

.data-table .check {
  color: #4ADE80;
  font-weight: 700;
}

.data-table .cross {
  color: #F87171;
  font-weight: 700;
}

.data-table td strong {
  color: var(--white);
}

/* ===== PROGRESS BARS ===== */
.progress-wrap {
  margin-bottom: 0.875rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.progress-label strong {
  color: var(--white);
}

.progress-track {
  height: 9px;
  background: var(--bg-card2);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.progress-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--gold));
  transition: width 1s ease;
}

.progress-fill.gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.progress-fill.green {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.progress-fill.blue {
  background: linear-gradient(90deg, #2563EB, #60A5FA);
}

/* ===== AUTHOR BOX ===== */
.author-box {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.author-photo-wrap {
  flex-shrink: 0;
  width: 90px;
  height: 110px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--red);
}

.author-photo-wrap img,
.author-photo-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.author-title {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.author-bio {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--bg-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card2);
}

.faq-question.open {
  color: var(--gold);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition);
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

.faq-answer.open {
  display: block;
}

/* ===== PROS / CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pros-block,
.cons-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.pros-block {
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.cons-block {
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.pros-block h4 {
  color: #4ADE80;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cons-block h4 {
  color: #F87171;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-block ul li,
.cons-block ul li {
  padding: 0.45rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.pros-block ul li:last-child,
.cons-block ul li:last-child {
  border-bottom: none;
}

.pros-block ul li::before {
  content: '✓';
  color: #4ADE80;
  flex-shrink: 0;
  font-weight: 700;
}

.cons-block ul li::before {
  content: '✗';
  color: #F87171;
  flex-shrink: 0;
  font-weight: 700;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== RESPONSIBLE WARNING ===== */
.responsible-warning {
  background: rgba(247, 168, 0, 0.06);
  border: 1px solid rgba(247, 168, 0, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.responsible-warning .warn-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

/* ===== QUICK FACTS ===== */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.quick-fact {
  background: var(--bg-card);
  padding: 1.1rem;
}

.quick-fact .fact-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.quick-fact .fact-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.quick-fact .fact-value.gold {
  color: var(--gold);
}

.quick-fact .fact-value.green {
  color: var(--green);
}

.quick-fact .fact-value.red {
  color: var(--red-light);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.07), rgba(247, 168, 0, 0.04));
  border: 1px solid rgba(247, 168, 0, 0.18);
  border-radius: var(--radius);
  padding: 1.75rem;
}

/* ===== STAT BOX ===== */
.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-box .number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-box .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== INFO CHIPS ===== */
.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.info-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(247, 168, 0, 0.07);
}

/* ===== CHART COMPONENTS ===== */
/* Bar Chart (horizontal) */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.bar-name {
  font-size: 0.82rem;
  color: var(--text-muted);
  min-width: 110px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: var(--bg-card2);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1.2s ease;
}

.bar-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  min-width: 42px;
  text-align: right;
  flex-shrink: 0;
}

/* Vertical Bar Chart */
.vbar-wrap {
  padding: 0 0.5rem;
}

.vbar-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  height: 180px;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}

.vbar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.vbar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: height 1s ease;
}

.vbar-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  max-width: 48px;
}

.vbar-val {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

/* Donut Chart (SVG-based) */
.donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donut-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Gauge (SVG) */
.gauge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-label-below {
  text-align: center;
  margin-top: 0.5rem;
}

.gauge-score {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.gauge-max {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.gauge-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(204, 0, 0, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 25%, rgba(247, 168, 0, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(204, 0, 0, 0.1);
  border: 1px solid rgba(204, 0, 0, 0.22);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF4444;
  margin-bottom: 1.4rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--red-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat .number span {
  color: var(--gold);
}

.hero-stat .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

/* ===== BONUS CARD ===== */
.bonus-hero-card {
  background: linear-gradient(145deg, #180000, #0D0D0D);
  border: 1px solid rgba(204, 0, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.bonus-hero-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.bonus-hero-card .amount {
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.bonus-hero-card .bonus-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== STARS ===== */
.stars {
  display: flex;
  gap: 0.18rem;
  align-items: center;
}

.stars .star {
  fill: var(--gold);
  filter: drop-shadow(0 0 3px rgba(247, 168, 0, 0.5));
}

.stars .star.empty {
  fill: var(--border);
  filter: none;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 270px;
  line-height: 1.75;
  margin-top: 0.9rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.45rem;
}

.footer-col ul li a {
  font-size: 0.845rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}

.footer-18plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--text-dim);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--text-dim);
  flex-shrink: 0;
  margin-top: 0.75rem;
}

.footer-legal {
  font-size: 0.73rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-partner {
  padding: 0.3rem 0.7rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ===== ANIMATE ON SCROLL ===== */
.aos {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.aos.visible {
  opacity: 1;
  transform: translateY(0);
}

.aos-delay-1 {
  transition-delay: 0.1s;
}

.aos-delay-2 {
  transition-delay: 0.2s;
}

.aos-delay-3 {
  transition-delay: 0.3s;
}

.aos-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
  }

  .author-photo-wrap {
    width: 78px;
    height: 96px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .table-wrap {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 0;
  }

  .bar-name {
    min-width: 80px;
    font-size: 0.75rem;
  }

  .data-table {
    font-size: 0.8rem;
  }

  .data-table td,
  .data-table th {
    padding: 0.7rem 0.9rem;
  }

  .vbar-chart {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .card {
    padding: 1.25rem;
  }

  .btn-lg {
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
  }

  .bonus-hero-card {
    padding: 1.5rem;
  }

  .bonus-hero-card .amount {
    font-size: 2.25rem;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* ============================================================
   ACCESSIBILITY & FOCUS
   ============================================================ */

/* Skip navigation link (hidden until focused) */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  z-index: 9999;
  background: var(--gold);
  color: #1a0800;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  transition: top 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Global focus-visible styles (keyboard navigation) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  border-color: var(--gold) !important;
}

/* Improved interactive states for touch */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .faq-question {
    min-height: 44px;
  }

  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER (GDPR/DSGVO)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card2);
  border-top: 2px solid var(--border);
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.55);
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.cookie-visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  min-width: 240px;
}

.cookie-text strong {
  color: var(--white);
}

.cookie-text em {
  font-style: normal;
  color: var(--text);
}

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cookie-inner {
    padding: 0.9rem 1rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   NOSCRIPT FALLBACK BANNER
   ============================================================ */
.noscript-warning {
  background: rgba(247, 168, 0, 0.1);
  border-bottom: 1px solid rgba(247, 168, 0, 0.3);
  padding: 0.65rem 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gold);
}

/* ============================================================
   LOADING / PERFORMANCE STATES
   ============================================================ */
img[loading="lazy"] {
  content-visibility: auto;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .aos {
    opacity: 1 !important;
    transform: none !important;
  }

  .pulse-dot {
    animation: none;
  }
}

/* High contrast mode support */
@media (forced-colors: active) {

  .btn-primary,
  .btn-gold {
    forced-color-adjust: none;
    border: 2px solid ButtonText;
  }

  .badge,
  .info-chip {
    forced-color-adjust: none;
    border: 1px solid ButtonText;
  }
}

/* ===== RESPONSIVE GRID HELPER ===== */
@media (max-width: 768px) {
  .responsive-grid {
    grid-template-columns: 1fr !important;
  }

  .responsive-grid>* {
    min-width: 0;
  }
}

/* Print styles */
@media print {

  .mobile-tracker-bar,
  .site-header,
  .mobile-nav,
  .hamburger,
  .btn-primary,
  .btn-gold,
  .cookie-banner,
  .hero-actions {
    display: none !important;
  }

  body {
    background: white;
    color: #000;
  }

  .container {
    max-width: 100%;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    color: #666;
  }

  a[href^="https://adminclick.org"]::after {
    content: " [Affiliate-Link]";
  }
}