/* ================================================================
   ybets-casinos.de — Shared Stylesheet
   Brand: #E8003C (red) / #000 (black) / #07070E (dark bg)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --red: #E8003C;
  --red-2: #FF1A52;
  --red-3: #B8002E;
  --dark: #07070E;
  --dark-2: #0D0D1A;
  --dark-3: #141424;
  --card: #0F0F1E;
  --card-2: #181830;
  --card-3: #1E1E38;
  --border: #252542;
  --border-2: #2E2E50;
  --text: #F0F0F8;
  --text-2: #A0A8C0;
  --text-3: #686C8E;
  --gold: #FFB800;
  --gold-2: #FFD54F;
  --green: #00D17A;
  --green-2: #00FF8C;
  --blue: #2060FF;
  --white: #FFFFFF;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --shadow: 0 8px 32px rgba(0, 0, 0, .5);
  --shadow-red: 0 8px 32px rgba(232, 0, 60, .3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, .4);

  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --max-w: 1280px;
  --header-h: 70px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: var(--red-2);
  text-decoration: none;
  transition: var(--transition)
}

a:hover {
  color: var(--red)
}

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none
}

input,
textarea,
select {
  font-family: var(--font)
}

table {
  border-collapse: collapse;
  width: 100%
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem)
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem)
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem)
}

h4 {
  font-size: 1.2rem
}

p {
  margin-bottom: 1rem
}

strong {
  font-weight: 700;
  color: var(--text)
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 80px 0
}

.section-sm {
  padding: 50px 0
}

.section-lg {
  padding: 120px 0
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.flex {
  display: flex
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.flex-wrap {
  flex-wrap: wrap
}

.gap-12 {
  gap: 12px
}

.gap-16 {
  gap: 16px
}

.gap-24 {
  gap: 24px
}

/* ---- Section Header ---- */
.section-head {
  margin-bottom: 48px
}

.section-head.center {
  text-align: center
}

.section-label {
  display: inline-block;
  background: rgba(232, 0, 60, .12);
  color: var(--red-2);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(232, 0, 60, .2)
}

.section-title {
  color: var(--text);
  margin-bottom: 14px
}

.section-title span {
  color: var(--red)
}

.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 580px
}

.section-head.center .section-sub {
  margin: 0 auto
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red)
}

.btn-primary:hover {
  background: var(--red-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 0, 60, .45)
}

.btn-secondary {
  background: var(--card-2);
  color: var(--text);
  border: 1px solid var(--border-2)
}

.btn-secondary:hover {
  background: var(--card-3);
  color: var(--text);
  border-color: var(--red)
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red)
}

.btn-outline:hover {
  background: var(--red);
  color: #fff
}

.btn-gold {
  background: linear-gradient(135deg, #FFB800, #FF8C00);
  color: #000;
  font-weight: 800
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 184, 0, .4);
  color: #000
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 14px
}

.btn-sm {
  padding: 8px 20px;
  font-size: .85rem;
  border-radius: var(--radius-sm)
}

.btn-full {
  width: 100%
}

.btn-white {
  background: #fff;
  color: var(--red);
  font-weight: 800
}

.btn-white:hover {
  background: rgba(255, 255, 255, .9);
  color: var(--red-3);
  transform: translateY(-2px);
  color: var(--red-3)
}

/* Pulsing CTA */
.btn-cta {
  background: linear-gradient(135deg, var(--red), #FF2060);
  color: #fff;
  font-size: .95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  box-shadow: 0 6px 30px rgba(232, 0, 60, .4);
  animation: pulse-red 2.5s ease-in-out infinite
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 0, 60, .6);
  color: #fff;
  animation: none
}

@keyframes pulse-red {

  0%,
  100% {
    box-shadow: 0 6px 30px rgba(232, 0, 60, .4)
  }

  50% {
    box-shadow: 0 6px 44px rgba(232, 0, 60, .75)
  }
}

/* ---- Cards ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition)
}

.card:hover {
  border-color: rgba(232, 0, 60, .28);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card)
}

.card-sm {
  padding: 18px;
  border-radius: var(--radius)
}

.card-red {
  background: linear-gradient(135deg, rgba(232, 0, 60, .1), rgba(232, 0, 60, .04));
  border-color: rgba(232, 0, 60, .2)
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(7, 7, 14, .96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #000
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em;
  font-family: var(--font-display)
}

.logo-text span {
  color: var(--red)
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px
}

.header-nav a {
  color: var(--text-2);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition)
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text);
  background: var(--card-2)
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px
}

.header-cta .btn-cta {
  font-size: .86rem;
  padding: 10px 20px;
  animation: none;
  border-radius: var(--radius-sm)
}

.header-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 0, 60, .5);
  color: #fff
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition)
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-2);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease
}

.mobile-nav.open {
  transform: translateX(0)
}

.mobile-nav a {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border)
}

.mobile-nav a:hover {
  color: var(--red)
}

.mobile-nav .btn-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  border-radius: var(--radius);
  font-size: 1rem;
  padding: 14px
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px
}

.footer-brand p {
  color: var(--text-2);
  font-size: .88rem;
  margin-top: 14px;
  line-height: 1.75
}

.footer-col h4 {
  color: var(--text);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 18px
}

.footer-col a {
  display: block;
  color: var(--text-3);
  font-size: .88rem;
  padding: 5px 0;
  transition: var(--transition)
}

.footer-col a:hover {
  color: var(--red)
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px
}

.pay-badge {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-2)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom p {
  color: var(--text-3);
  font-size: .8rem
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px
}

.age-badge {
  background: var(--red);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.responsible-badge {
  background: var(--card-2);
  color: var(--text-2);
  font-size: .73rem;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--border)
}

/* ---- Tables ---- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border)
}

.data-table {
  width: 100%;
  min-width: 560px
}

.data-table th {
  background: var(--card-2);
  color: var(--text-2);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border)
}

.data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: .9rem;
  vertical-align: middle
}

.data-table tr:last-child td {
  border-bottom: none
}

.data-table tbody tr:hover td {
  background: rgba(232, 0, 60, .035)
}

.td-name {
  color: var(--text);
  font-weight: 600
}

.td-good {
  color: var(--green);
  font-weight: 600
}

.td-bad {
  color: #FF4060;
  font-weight: 600
}

.td-neutral {
  color: var(--gold);
  font-weight: 600
}

/* ---- Stats Bar (inner pages) ---- */
.stats-bar {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border-radius: var(--radius);
  overflow: hidden
}

.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  text-align: center
}

.stat-item:last-child {
  border-right: none
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  font-family: var(--font-display)
}

.stat-item .stat-label {
  font-size: .73rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 5px
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 700
}

.badge-green {
  background: rgba(0, 209, 122, .14);
  color: var(--green);
  border: 1px solid rgba(0, 209, 122, .22)
}

.badge-red {
  background: rgba(232, 0, 60, .14);
  color: var(--red-2);
  border: 1px solid rgba(232, 0, 60, .22)
}

.badge-red-outline {
  background: transparent;
  color: var(--red-2);
  border: 1px solid rgba(232, 0, 60, .4)
}

.badge-gold {
  background: rgba(255, 184, 0, .14);
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, .22)
}

.badge-blue {
  background: rgba(32, 96, 255, .14);
  color: #60A0FF;
  border: 1px solid rgba(32, 96, 255, .22)
}

/* ---- Stars Rating ---- */
.stars {
  display: flex;
  gap: 2px
}

.stars svg {
  width: 15px;
  height: 15px
}

.star-fill {
  fill: var(--gold)
}

.star-empty {
  fill: var(--border)
}

.rating-num {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: 6px
}

/* ---- Bar Charts ---- */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.bar-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.bar-name {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-2)
}

.bar-value {
  font-size: .87rem;
  font-weight: 700;
  color: var(--text)
}

.bar-track {
  background: var(--card-2);
  border-radius: 99px;
  height: 10px;
  overflow: hidden
}

.bar-fill {
  height: 100%;
  border-radius: 99px;
  width: 0;
  transition: width 1.4s cubic-bezier(.4, 0, .2, 1)
}

.bar-red {
  background: linear-gradient(90deg, var(--red-3), var(--red-2))
}

.bar-gold {
  background: linear-gradient(90deg, #FF8C00, #FFB800)
}

.bar-green {
  background: linear-gradient(90deg, #009050, var(--green))
}

.bar-blue {
  background: linear-gradient(90deg, #0040C0, #2080FF)
}

.bar-purple {
  background: linear-gradient(90deg, #6020C0, #A060FF)
}

.bar-teal {
  background: linear-gradient(90deg, #007070, #00C0C0)
}

/* ---- Donut Chart ---- */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.donut {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0
}

.donut-inner {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.donut-val {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  font-family: var(--font-display)
}

.donut-label-sm {
  font-size: .7rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0
}

.legend-text {
  font-size: .84rem;
  color: var(--text-2)
}

.legend-val {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
  margin-left: auto;
  padding-left: 16px
}

/* ---- Gauge Chart ---- */
.gauge-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px
}

.gauge {
  width: 160px;
  height: 82px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.gauge-arc {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 180deg, var(--card-2) 0 180deg, transparent 0);
  border-radius: 160px 160px 0 0
}

.gauge-fill {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 180deg, var(--red) 0 calc(var(--pct)*1deg), var(--card-2) 0 180deg, transparent 0);
  border-radius: 160px 160px 0 0
}

.gauge-cover {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 50px;
  background: var(--card);
  border-radius: 100px 100px 0 0
}

.gauge-text {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap
}

.gauge-label {
  font-size: .75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px
}

/* ---- Stat Cards ---- */
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition)
}

.stat-card:hover {
  border-color: rgba(232, 0, 60, .3);
  transform: translateY(-3px)
}

.stat-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  font-family: var(--font-display)
}

.stat-label {
  font-size: .78rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-top: 8px
}

.stat-sub {
  font-size: .82rem;
  color: var(--text-3);
  margin-top: 4px
}

/* ---- Progress Bars ---- */
.prog-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.prog-bar {
  display: flex;
  align-items: center;
  gap: 12px
}

.prog-bar-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  width: 120px;
  flex-shrink: 0
}

.prog-bar-track {
  flex: 1;
  background: var(--card-2);
  border-radius: 99px;
  height: 8px;
  overflow: hidden
}

.prog-bar-fill {
  height: 100%;
  border-radius: 99px;
  width: 0;
  transition: width 1.4s cubic-bezier(.4, 0, .2, 1)
}

.prog-bar-val {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  width: 36px;
  text-align: right;
  flex-shrink: 0
}

/* ---- FAQ Accordion ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  gap: 12px;
  user-select: none
}

.faq-question:hover {
  color: var(--red)
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--card-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition)
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--text-2);
  transition: var(--transition)
}

.faq-item.open .faq-icon {
  background: var(--red);
  transform: rotate(180deg)
}

.faq-item.open .faq-icon svg {
  fill: #fff
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--text-2);
  font-size: .93rem;
  line-height: 1.75
}

.faq-item.open .faq-answer {
  max-height: 500px
}

/* ---- SEO Text Section ---- */
.seo-section {
  background: var(--dark-2)
}

.seo-content {
  color: var(--text-2);
  line-height: 1.85
}

.seo-content h2 {
  color: var(--text);
  font-size: 1.35rem;
  margin: 28px 0 12px
}

.seo-content h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin: 22px 0 10px
}

.seo-content p {
  margin-bottom: 14px
}

.seo-content ul {
  margin: 12px 0 20px 20px;
  list-style: disc
}

.seo-content li {
  margin-bottom: 6px
}

.seo-content a {
  color: var(--red-2);
  text-decoration: underline;
  text-underline-offset: 3px
}

.seo-content a:hover {
  color: var(--red)
}

.seo-content strong {
  color: var(--text)
}

/* ---- Bonus Banner ---- */
.bonus-banner {
  background: linear-gradient(135deg, var(--red-3) 0%, var(--red) 50%, #FF2060 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .055)
}

.bonus-banner::after {
  content: '';
  position: absolute;
  bottom: -70px;
  right: 120px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04)
}

.bonus-content {
  position: relative;
  z-index: 1
}

.bonus-pre {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px
}

.bonus-amount {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: var(--font-display)
}

.bonus-sub {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  margin-top: 10px
}

.bonus-action {
  position: relative;
  z-index: 1
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.cookie-banner.hidden {
  display: none
}

.cookie-banner p {
  font-size: .86rem;
  color: var(--text-2);
  flex: 1;
  min-width: 200px
}

.cookie-banner a {
  color: var(--red-2)
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0
}

/* ---- Winner Notification ---- */
.winner-notif {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 3000;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  max-width: 300px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
  transform: translateX(-130%);
  transition: transform .45s ease
}

.winner-notif.show {
  transform: translateX(0)
}

.notif-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #FF6090);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0
}

.notif-text {
  font-size: .82rem;
  color: var(--text-2)
}

.notif-text strong {
  color: var(--text);
  display: block;
  font-size: .86rem
}

/* ---- Hero ---- */
.hero {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #09000C 0%, #160010 45%, #0A0A1C 100%);
  z-index: 0
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 82% 50%, rgba(232, 0, 60, .14) 0%, transparent 70%)
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='80' height='80' fill='none'/%3E%3Ccircle cx='40' cy='40' r='1' fill='%23E8003C' fill-opacity='0.06'/%3E%3C/svg%3E") repeat
}

.hero-content {
  position: relative;
  z-index: 1
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 0, 60, .1);
  border: 1px solid rgba(232, 0, 60, .2);
  color: var(--red-2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.hero-title {
  margin-bottom: 20px;
  font-family: var(--font-display)
}

.hero-title .red {
  color: var(--red)
}

.hero-desc {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.75
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 50px;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: .83rem
}

.trust-icon {
  width: 34px;
  height: 34px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem
}

.hero-rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px
}

.hero-score {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1
}

.hero-score-label {
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 2px
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 50px 0 40px;
  background: linear-gradient(180deg, rgba(232, 0, 60, .04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border)
}

.page-hero .breadcrumb {
  margin-bottom: 16px
}

.page-hero h1 {
  margin-bottom: 14px
}

.page-hero .hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px
}

.page-hero .update-date {
  font-size: .8rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px
}

.update-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-3);
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--text-2)
}

.breadcrumb a:hover {
  color: var(--red)
}

.breadcrumb-sep {
  color: var(--border-2)
}

/* ---- Author Mini ---- */
.author-mini {
  display: flex;
  align-items: center;
  gap: 12px
}

.author-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0
}

.author-name-sm {
  font-size: .86rem;
  font-weight: 600;
  color: var(--text)
}

.author-role-sm {
  font-size: .75rem;
  color: var(--text-3)
}

/* ---- Pro/Con Grid ---- */
.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.pro-list,
.con-list {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px
}

.pro-list h4 {
  color: var(--green);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px
}

.con-list h4 {
  color: #FF4060;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px
}

.pro-list li,
.con-list li {
  font-size: .9rem;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.pro-list li:last-child,
.con-list li:last-child {
  border-bottom: none
}

.pro-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.con-list li::before {
  content: '✗';
  color: #FF4060;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

/* ---- Game Cards ---- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px
}

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition)
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 0, 60, .3);
  box-shadow: var(--shadow-card)
}

.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
  overflow: hidden
}

.game-info {
  padding: 12px
}

.game-name {
  font-weight: 700;
  font-size: .86rem;
  color: var(--text);
  margin-bottom: 3px
}

.game-provider {
  font-size: .75rem;
  color: var(--text-3)
}

.game-rtp {
  font-size: .75rem;
  font-weight: 700;
  color: var(--green)
}

/* ---- Provider Boxes ---- */
.provider-grid-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.provider-pill {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  transition: var(--transition);
  white-space: nowrap
}

.provider-pill:hover {
  border-color: rgba(232, 0, 60, .35);
  color: var(--text);
  background: var(--card-3)
}

/* ---- Comparison Matrix ---- */
.matrix-table th:first-child {
  min-width: 160px
}

.matrix-check {
  color: var(--green);
  font-size: 1rem;
  font-weight: 700
}

.matrix-cross {
  color: #FF4060;
  font-size: 1rem;
  font-weight: 700
}

.matrix-partial {
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600
}

/* ---- Forms ---- */
.form-group {
  margin-bottom: 20px
}

.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px
}

.form-input {
  width: 100%;
  background: var(--card-2);
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: .95rem;
  transition: var(--transition);
  outline: none
}

.form-input:focus {
  border-color: var(--red);
  background: var(--card-3);
  box-shadow: 0 0 0 3px rgba(232, 0, 60, .12)
}

.form-input::placeholder {
  color: var(--text-3)
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .87rem;
  color: var(--text-2)
}

.form-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
  cursor: pointer
}

.form-hint {
  font-size: .78rem;
  color: var(--text-3);
  margin-top: 6px
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

.form-divider span {
  font-size: .82rem;
  color: var(--text-3)
}

/* ---- VIP Tiers ---- */
.tier-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255, 184, 0, .15)
}

.tier-card.featured::before {
  content: 'TOP';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #000;
  font-size: .65rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: .05em
}

.tier-icon {
  font-size: 2.5rem;
  margin-bottom: 12px
}

.tier-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font-display);
  margin-bottom: 6px
}

.tier-points {
  font-size: .78rem;
  color: var(--text-3);
  margin-bottom: 18px
}

.tier-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px
}

.tier-features li {
  font-size: .84rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px
}

.tier-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0
}

/* ---- Timeline ---- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0
}

.tl-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative
}

.tl-item:last-child {
  padding-bottom: 0
}

.tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--border)
}

.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  z-index: 1;
  font-family: var(--font-display)
}

.tl-body h4 {
  color: var(--text);
  font-size: .95rem;
  margin-bottom: 4px
}

.tl-body p {
  color: var(--text-2);
  font-size: .86rem;
  margin: 0
}

/* ---- Scroll Fade ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ---- Utilities ---- */
.text-red {
  color: var(--red)
}

.text-gold {
  color: var(--gold)
}

.text-green {
  color: var(--green)
}

.text-muted {
  color: var(--text-2)
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.mb-0 {
  margin-bottom: 0 !important
}

.mb-8 {
  margin-bottom: 8px
}

.mb-16 {
  margin-bottom: 16px
}

.mb-24 {
  margin-bottom: 24px
}

.mb-32 {
  margin-bottom: 32px
}

.mb-48 {
  margin-bottom: 48px
}

.mt-8 {
  margin-top: 8px
}

.mt-16 {
  margin-top: 16px
}

.mt-24 {
  margin-top: 24px
}

.mt-32 {
  margin-top: 32px
}

.mt-48 {
  margin-top: 48px
}

.w-full {
  width: 100%
}

.hidden {
  display: none !important
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:1024px) {
  .header-nav {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-nav {
    display: block
  }

  .hero {
    min-height: 78vh
  }
}

@media (max-width:768px) {
  :root {
    --header-h: 62px
  }

  .section {
    padding: 56px 0
  }

  .section-lg {
    padding: 76px 0
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .pro-con-grid {
    grid-template-columns: 1fr
  }

  .donut-wrap {
    flex-direction: column;
    align-items: flex-start
  }

  .donut {
    width: 140px;
    height: 140px
  }

  .bonus-banner {
    padding: 26px 24px
  }

  .hero-desc {
    font-size: 1rem
  }

  .data-table {
    min-width: 520px
  }

  .table-wrap {
    margin: 0 -8px;
    border-radius: 0;
    border-left: none;
    border-right: none
  }

  .section-head {
    margin-bottom: 32px
  }

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px
  }

  /* Mobile UI fixes for diagrams and cards */
  .scatter-wrap {
    height: 180px !important;
  }

  .scatter-axis-x {
    left: 24px !important;
    bottom: 20px !important;
  }

  .scatter-axis-y {
    left: 24px !important;
    top: 10px !important;
    bottom: 20px !important;
  }

  .sdot-label {
    font-size: 0.55rem !important;
    bottom: 10px !important;
  }

  .scatter-xlabel,
  .scatter-ylabel {
    font-size: 0.6rem !important;
  }

  .rtp-matrix {
    min-width: 460px;
  }

  .phone-mockup {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .tier-card {
    padding: 18px;
  }

  .funnel-step {
    height: auto !important;
    padding: 8px !important;
    text-align: center;
  }

  .funnel-step-label {
    position: relative !important;
    left: auto !important;
    display: block;
    margin-bottom: 2px;
  }

  .funnel-step-num {
    display: none !important;
  }

  .wager-timeline {
    height: 90px !important;
  }
}

@media (max-width:480px) {
  .container {
    padding: 0 16px
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center
  }

  .hero {
    min-height: 72vh
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center
  }

  .bonus-banner {
    flex-direction: column;
    text-align: center
  }

  .btn-white {
    width: 100%
  }

  .donut {
    width: 120px;
    height: 120px
  }

  .bar-track {
    height: 8px
  }

  .stat-val {
    font-size: 2rem
  }

  .winner-notif {
    left: 10px;
    right: 10px;
    max-width: none;
    transform: translateY(20px) scale(.96);
    opacity: 0;
    transition: all .45s ease
  }

  .winner-notif.show {
    transform: translateY(0) scale(1);
    opacity: 1
  }

  /* Extra tiny screens fixes */
  .dealer-photo,
  .game-thumb {
    aspect-ratio: 1/1 !important;
  }

  .bonus-type-card,
  .platform-card {
    padding: 16px;
  }

  .stats-bar {
    flex-direction: column;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .cb-pct {
    font-size: 1.4rem;
  }

  .prov-logo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* CRITICAL MOBILE WIDTH FIXES */
  html,
  body {
    overflow-x: clip !important;
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .pro-con-grid,
  .overview-grid,
  .pay-grid {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .card,
  .rating-card,
  .ticker-wrap {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .table-wrap {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .data-table,
  .rtp-matrix {
    max-width: none !important;
  }

  .rr-item {
    flex-wrap: wrap;
  }

  .rr-name {
    width: 50% !important;
    min-width: 100px;
    font-size: 0.75rem !important;
  }

  .rr-score {
    width: 30px !important;
    font-size: 0.75rem !important;
    margin-left: auto;
  }

  .rr-bar-track {
    flex: 1 1 100% !important;
    min-width: 100%;
    margin-top: 4px;
  }

  .bar-chart {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ================================================================
   ACCESSIBILITY & PERFORMANCE ADDITIONS
   ================================================================ */

/* ---- Skip to main content ---- */
.skip-link {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 9999;
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
  white-space: nowrap;
}

.skip-link:focus {
  top: 0;
  left: 0;
}

/* ---- Focus visible ---- */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---- 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;
  }
}

/* ---- High contrast support ---- */
@media (forced-colors: active) {
  .btn {
    border: 2px solid ButtonText;
  }

  .hero-badge,
  .section-label {
    border: 1px solid ButtonText;
  }
}

/* ---- Print styles ---- */
@media print {

  .site-header,
  .mobile-nav,
  .header-cta,
  .cookie-banner,
  .winner-notif,
  .hamburger {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  a[rel*="nofollow"]::after {
    content: "";
  }
}