/* ===== TIKITAKA CASINO – GLOBAL STYLES ===== */
:root {
  --red: #e8341c;
  --red2: #ff5533;
  --black: #0a0a0f;
  --dark: #111118;
  --dark2: #1a1a24;
  --dark3: #22222e;
  --gray: #2e2e3e;
  --light: #8888aa;
  --white: #ffffff;
  --gold: #f0b429;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(232, 52, 28, .18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color .2s
}

a:hover {
  color: var(--red2)
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  font-weight: 700
}

ul {
  list-style: none
}

/* ===== HEADER ===== */
.site-header {
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px
}

.logo a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px
}

.logo-text .tiki {
  color: var(--white)
}

.logo-text .taka {
  color: var(--red)
}

.logo-star {
  color: var(--red);
  font-size: 20px
}

/* NAV */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: background .2s, color .2s
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--red);
  color: #fff
}

.nav-cta {
  background: var(--red) !important;
  border-radius: 6px !important;
  padding: 8px 18px !important
}

.nav-cta:hover {
  background: var(--red2) !important
}

.header-tracker {
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s
}

.header-tracker:hover {
  background: var(--red2);
  color: #fff
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s
}

.mobile-nav {
  display: none;
  background: var(--dark2);
  padding: 16px 24px;
  border-top: 1px solid var(--gray)
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray);
  font-weight: 600;
  color: var(--white)
}

.mobile-nav a:last-child {
  border-bottom: none
}

.mobile-tracker-wrap {
  padding: 12px 0 0;
  text-align: center
}

.mobile-tracker-wrap a {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  text-align: center
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a0a 50%, #0d0a1a 100%)
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: .18
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 52, 28, .15);
  border: 1px solid var(--red);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 20px
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 720px;
  margin-bottom: 20px
}

.hero h1 span {
  color: var(--red)
}

.hero-sub {
  font-size: 18px;
  color: var(--light);
  max-width: 560px;
  margin-bottom: 36px
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: background .2s, transform .1s
}

.btn-primary:hover {
  background: var(--red2);
  color: #fff;
  transform: translateY(-1px)
}

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: background .2s, color .2s
}

.btn-outline:hover {
  background: var(--red);
  color: #fff
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px
}

.hero-stat {
  text-align: center
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--red)
}

.hero-stat span {
  font-size: 13px;
  color: var(--light)
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 0
}

.section-alt {
  background: var(--dark)
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.section-head {
  text-align: center;
  margin-bottom: 52px
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 12px
}

.section-head h2 span {
  color: var(--red)
}

.section-head p {
  color: var(--light);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 16px auto 0
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  gap: 24px
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.card {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .25s, transform .2s, box-shadow .2s
}

.card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.card-icon {
  font-size: 36px;
  margin-bottom: 16px
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px
}

.card p {
  color: var(--light);
  font-size: 15px
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius)
}

table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse
}

thead tr {
  background: var(--red)
}

thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap
}

tbody tr {
  border-bottom: 1px solid var(--gray)
}

tbody tr:nth-child(even) {
  background: var(--dark3)
}

tbody tr:hover {
  background: rgba(232, 52, 28, .08)
}

tbody td {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--light)
}

tbody td:first-child {
  color: var(--white);
  font-weight: 600
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700
}

.badge-green {
  background: #1a3a2a;
  color: #4ade80
}

.badge-yellow {
  background: #3a2e0a;
  color: var(--gold)
}

.badge-red {
  background: #3a0a0a;
  color: var(--red)
}

/* ===== CHARTS / DIAGRAMS ===== */
.chart-bar-wrap {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 28px
}

.chart-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px
}

.bar-label {
  width: 140px;
  font-size: 13px;
  color: var(--light);
  flex-shrink: 0
}

.bar-track {
  flex: 1;
  background: var(--gray);
  border-radius: 4px;
  height: 20px;
  overflow: hidden;
  min-width: 80px
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  transition: width 1s ease
}

.bar-val {
  width: 48px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-align: right;
  flex-shrink: 0
}

/* Donut */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.donut {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  flex-shrink: 0
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0
}

/* Progress circles */
.progress-circles {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center
}

.progress-item {
  text-align: center
}

.progress-ring {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 8px
}

.progress-ring svg {
  transform: rotate(-90deg)
}

.progress-ring-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white)
}

.progress-label {
  font-size: 13px;
  color: var(--light)
}

/* Gauge */
.gauge-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center
}

.gauge {
  text-align: center
}

.gauge-arc {
  position: relative;
  width: 160px;
  height: 80px;
  overflow: hidden
}

.gauge-arc-bg {
  border: 14px solid var(--gray);
  border-bottom: none;
  border-radius: 160px 160px 0 0
}

.gauge-arc-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 80px;
  border-radius: 160px 160px 0 0;
  overflow: hidden
}

.gauge-label {
  font-size: 13px;
  color: var(--light);
  margin-top: 8px
}

.gauge-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--red)
}

/* Radar (CSS only grid) */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden
}

.cg-head,
.cg-cell {
  padding: 14px 10px;
  text-align: center;
  font-size: 13px;
  border-right: 1px solid var(--gray)
}

.cg-head {
  background: var(--red);
  font-weight: 700
}

.cg-row {
  display: contents
}

.cg-row:nth-child(even) .cg-cell {
  background: var(--dark3)
}

.cg-cell:last-child,
.cg-head:last-child {
  border-right: none
}

/* ===== IMAGE BOXES ===== */
.img-box {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2)
}

.img-box img {
  width: 100%;
  object-fit: cover
}

/* ===== FEATURE ROW ===== */
.feature-row {
  display: flex;
  gap: 48px;
  align-items: center
}

.feature-row.reverse {
  flex-direction: row-reverse
}

.feature-text {
  flex: 1
}

.feature-img {
  flex: 1;
  min-width: 0
}

.feature-text h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 16px
}

.feature-text h2 span {
  color: var(--red)
}

.feature-text p {
  color: var(--light);
  margin-bottom: 14px
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px
}

.feature-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px
}

/* ===== AUTHOR BLOCK ===== */
.author-block {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 28px
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--red)
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px
}

.author-info .author-role {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px
}

.author-info p {
  color: var(--light);
  font-size: 14px
}

/* ===== RATING STARS ===== */
.stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 12px
}

.rating-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--white)
}

.rating-detail {
  color: var(--light);
  font-size: 13px
}

/* ===== PAYMENTS ICONS ===== */
.pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center
}

.pay-item {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s
}

.pay-item:hover {
  border-color: var(--red)
}

.pay-icon {
  font-size: 22px
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border-bottom: 1px solid var(--gray)
}

.faq-q {
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  user-select: none
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--red);
  transition: transform .2s
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-a p {
  padding: 0 0 18px;
  color: var(--light);
  font-size: 15px;
  line-height: 1.7
}

.faq-item.open .faq-a {
  max-height: 400px
}

/* ===== FORM ===== */
.form-card {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px;
  margin: 0 auto
}

.form-card h2 {
  margin-bottom: 24px;
  text-align: center
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 15px;
  transition: border-color .2s
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red)
}

.form-hint {
  font-size: 12px;
  color: var(--light);
  margin-top: 6px
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--light)
}

.form-check input {
  margin-top: 3px
}

.btn-full {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s
}

.btn-full:hover {
  background: var(--red2)
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--light)
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--light)
}

.breadcrumb a {
  color: var(--light)
}

.breadcrumb a:hover {
  color: var(--red)
}

.breadcrumb span {
  color: var(--white)
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--gray);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0808 100%)
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .20;
  z-index: 0
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 12px
}

.page-hero h1 span {
  color: var(--red)
}

.page-hero p {
  color: var(--light);
  font-size: 17px;
  max-width: 600px
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1a0505 0%, var(--dark2) 100%);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 52px 40px;
  text-align: center
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 12px
}

.cta-banner p {
  color: var(--light);
  margin-bottom: 28px;
  font-size: 16px
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  border-top: 2px solid var(--gray);
  padding: 60px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px
}

.footer-brand .logo-text {
  font-size: 24px
}

.footer-brand p {
  color: var(--light);
  font-size: 14px;
  margin: 12px 0 20px;
  max-width: 280px
}

.footer-social {
  display: flex;
  gap: 12px
}

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s
}

.social-btn:hover {
  background: var(--red)
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
  color: var(--white)
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-col ul a {
  color: var(--light);
  font-size: 14px;
  transition: color .2s
}

.footer-col ul a:hover {
  color: var(--red)
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom p {
  color: var(--light);
  font-size: 13px
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.footer-badge {
  background: var(--gray);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--light)
}

.age-warning {
  background: rgba(232, 52, 28, .1);
  border: 1px solid rgba(232, 52, 28, .3);
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--light);
  margin-bottom: 20px
}

.age-warning strong {
  color: var(--red)
}

/* ===== MOBILE APP PAGE ===== */
.app-mockup {
  width: 100%;
  max-width: 320px;
  margin: 0 auto
}

.app-store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark3);
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 10px 18px;
  transition: border-color .2s
}

.store-btn:hover {
  border-color: var(--red)
}

.store-btn-icon {
  font-size: 28px
}

.store-btn-text small {
  display: block;
  font-size: 11px;
  color: var(--light)
}

.store-btn-text strong {
  font-size: 15px;
  color: var(--white)
}

.phone-frame {
  background: var(--dark2);
  border: 3px solid var(--gray);
  border-radius: 36px;
  padding: 20px 12px;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(232, 52, 28, .12)
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: var(--dark3);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 16px
}

.phone-screen {
  background: var(--black);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* ===== SECURITY ===== */
.security-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.sec-card {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center
}

.sec-card .icon {
  font-size: 44px;
  margin-bottom: 16px
}

.sec-card h3 {
  margin-bottom: 10px
}

.sec-card p {
  color: var(--light);
  font-size: 14px
}

.cert-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px
}

.cert-item {
  background: var(--dark3);
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  text-align: center
}

/* ===== HIGHLIGHTS / BONUS ===== */
.bonus-card {
  background: linear-gradient(135deg, var(--dark2), #200808);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 52, 28, .15), transparent);
  border-radius: 50%
}

.bonus-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1
}

.bonus-desc {
  color: var(--light);
  font-size: 15px;
  margin-top: 8px
}

.bonus-terms {
  font-size: 12px;
  color: var(--light);
  margin-top: 16px;
  opacity: .7
}

.bonus-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: steps
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  counter-increment: steps
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0
}

.step-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px
}

.step-body p {
  color: var(--light);
  font-size: 14px
}

/* ===== GAMES ===== */
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s
}

.game-card:hover img {
  transform: scale(1.05)
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px
}

.game-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px
}

.game-provider {
  font-size: 12px;
  color: var(--light)
}

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700
}

/* ===== REVIEW ===== */
.review-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px
}

.review-meta-item {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 16px 22px;
  text-align: center;
  min-width: 120px
}

.review-meta-item strong {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  display: block
}

.review-meta-item span {
  font-size: 12px;
  color: var(--light)
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s;
  z-index: 999;
  border: none;
  color: #fff
}

.scroll-top.visible {
  opacity: 1
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .comparison-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:768px) {

  .main-nav,
  .header-tracker {
    display: none
  }

  .burger {
    display: flex
  }

  .mobile-nav.open {
    display: block
  }

  .hero {
    min-height: 380px
  }

  .hero-content {
    padding: 60px 20px
  }

  .section {
    padding: 48px 0
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .donut-wrap {
    justify-content: center
  }

  .donut {
    width: 150px;
    height: 150px
  }

  .bar-label {
    width: 110px
  }

  .security-cards {
    grid-template-columns: 1fr 1fr
  }

  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    overflow-x: auto
  }

  table {
    min-width: 520px
  }

  .review-meta {
    gap: 16px
  }

  .form-card {
    padding: 28px 20px
  }

  .cta-banner {
    padding: 36px 24px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .author-block {
    flex-direction: column;
    text-align: center
  }
}

@media(max-width:480px) {
  .hero-stats {
    gap: 20px
  }

  .grid-4 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .security-cards {
    grid-template-columns: 1fr
  }

  .bonus-amount {
    font-size: 36px
  }

  .bar-label {
    width: 90px;
    font-size: 12px
  }

  .bar-track {
    min-width: 60px
  }

  .progress-ring {
    width: 80px;
    height: 80px
  }

  .donut {
    width: 130px;
    height: 130px
  }
}

/* ============================
   LEGAL / TECH PAGES
   ============================ */
.legal-hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a24 100%);
  padding: 60px 20px;
  border-bottom: 2px solid var(--red, #e8341c)
}

.legal-hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  color: #fff;
  margin-bottom: 8px
}

.legal-sub {
  color: #aaa;
  font-size: 15px
}

.legal-body {
  padding: 48px 20px;
  max-width: 860px;
  margin: 0 auto
}

.legal-section {
  margin-bottom: 48px;
  border-bottom: 1px solid #222;
  padding-bottom: 40px
}

.legal-section:last-child {
  border-bottom: none
}

.legal-section h2 {
  font-size: 22px;
  color: var(--red, #e8341c);
  margin-bottom: 16px
}

.legal-section h3 {
  font-size: 17px;
  color: #fff;
  margin: 20px 0 10px
}

.legal-section h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px
}

.legal-section p {
  color: #ccc;
  line-height: 1.75;
  margin-bottom: 12px
}

.legal-section ul,
.legal-section ol {
  color: #ccc;
  line-height: 1.75;
  padding-left: 24px;
  margin-bottom: 12px
}

.legal-section li {
  margin-bottom: 6px
}

.legal-section a {
  color: var(--red, #e8341c);
  text-decoration: underline
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block
}

.legal-table th {
  background: #1a1a24;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  border-bottom: 2px solid var(--red, #e8341c)
}

.legal-table td {
  padding: 11px 14px;
  color: #ccc;
  border-bottom: 1px solid #222;
  font-size: 14px
}

.legal-table tr:hover td {
  background: #1a1a241a
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0
}

.legal-right-card {
  background: #1a1a24;
  border-radius: 8px;
  padding: 18px;
  border-left: 3px solid var(--red, #e8341c)
}

.legal-right-card h4 {
  color: var(--red, #e8341c);
  font-size: 14px;
  margin-bottom: 8px
}

.legal-right-card p {
  color: #aaa;
  font-size: 13px;
  margin: 0
}

.impressum-block {
  background: #1a1a24;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px
}

.impressum-block p {
  margin: 0;
  color: #ccc;
  line-height: 1.7
}

.info-box-legal {
  background: #1e1a24;
  border: 1px solid #6030a0;
  border-left: 4px solid #9060d0;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 16px 0
}

.info-box-legal p {
  margin-bottom: 8px
}

.info-box-warn {
  border-color: #c0800030;
  border-left-color: var(--gold, #f0b429);
  background: #1e1a0a
}

.legal-cta-section {
  text-align: center;
  border-bottom: none
}

@media(max-width:768px) {
  .legal-rights-grid {
    grid-template-columns: 1fr 1fr
  }

  .legal-body {
    padding: 32px 16px
  }
}

@media(max-width:480px) {
  .legal-rights-grid {
    grid-template-columns: 1fr
  }
}

/* ============================
   SKIP NAVIGATION (Accessibility)
   ============================ */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top .2s;
  text-decoration: none
}

.skip-link:focus {
  top: 0
}

/* ============================
   FOCUS VISIBLE (Accessibility)
   ============================ */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px
}

/* ============================
   COOKIE CONSENT BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 2px solid var(--red);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 9998;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
  transform: translateY(0);
  transition: transform .3s ease
}

.cookie-banner.hidden {
  transform: translateY(110%)
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: var(--light);
  line-height: 1.5
}

.cookie-text a {
  color: var(--red);
  text-decoration: underline
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap
}

.cookie-accept {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s
}

.cookie-accept:hover {
  background: var(--red2)
}

.cookie-decline {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--gray);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s
}

.cookie-decline:hover {
  border-color: var(--red);
  color: var(--white)
}

@media(max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px
  }

  .cookie-btns {
    width: 100%
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    text-align: center
  }
}

/* ============================
   NOSCRIPT WARNING
   ============================ */
.noscript-warn {
  background: #3a1a00;
  border-bottom: 2px solid var(--gold);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--gold)
}

/* ============================
   PRINT STYLES (Performance / UX)
   ============================ */
@media print {

  .site-header,
  .mobile-nav,
  .burger,
  .header-tracker,
  .scroll-top,
  .cookie-banner,
  .cta-banner,
  .hero-btns {
    display: none !important
  }

  body {
    background: #fff;
    color: #000
  }

  a {
    color: #000;
    text-decoration: underline
  }

  .section {
    padding: 20px 0
  }
}


/* ============================
   MOBILE IMPROVEMENTS
   ============================ */
@media(max-width:900px) {
  .card-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important
  }
}

@media(max-width:600px) {
  .card-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important
  }

  .card-grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important
  }

  .card-grid[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important
  }

  .page-hero {
    padding: 40px 0 30px
  }

  .page-hero h1 {
    font-size: 1.6rem
  }

  .hero h1 {
    font-size: 1.8rem
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px
  }

  .card {
    padding: 20px
  }

  .bonus-card {
    padding: 24px 18px
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px
  }

  .site-footer {
    padding: 40px 0 0
  }

  table {
    min-width: 500px;
    font-size: 13px
  }

  .table-wrap {
    -webkit-overflow-scrolling: touch
  }

  .author-block {
    flex-direction: column;
    text-align: center;
    padding: 24px
  }
}

@media(max-width:480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%
  }

  .btn {
    width: 100%
  }

  .pay-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.blog-section {
  background: var(--dark);
  padding: 60px 0
}

.blog-section h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 14px
}

.blog-section p {
  color: var(--light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px
}

.blog-section h3::before {
  content: '▸ ';
  color: var(--red)
}