@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;900&display=swap');

:root {
  --clr-bg: #080018;
  --clr-header: #00000a;
  --clr-primary: #ffa658;
  --clr-secondary: #dec867;
  --clr-text: #e8e0f4;
  --clr-text-muted: #a898c8;
  --clr-border: rgba(222,200,103,0.18);
  --clr-card: rgba(255,255,255,0.04);
  --clr-card-hover: rgba(255,166,88,0.08);
  --clr-plus: #2ee88a;
  --clr-minus: #ff5c6a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-glow: 0 0 28px rgba(255,166,88,0.18);
  --transition: 0.25s ease;
  --font-main: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

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

html { background: var(--clr-bg); scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary); }

.xw9k2 { display: none; }
.bf3m1 { visibility: hidden; height: 0; overflow: hidden; }
.p7r4q { opacity: 0; pointer-events: none; position: absolute; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-main); font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: none; outline: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap; text-decoration: none !important; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, #ffa658 0%, #ff7d2a 100%);
  color: #1a0a00; box-shadow: 0 4px 18px rgba(255,125,42,0.38);
}
.btn--secondary {
  background: linear-gradient(135deg, #dec867 0%, #c8a820 100%);
  color: #1a1000; box-shadow: 0 4px 14px rgba(222,200,103,0.28);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-secondary);
  color: var(--clr-secondary);
}
.btn--outline:hover { background: var(--clr-secondary); color: #1a1000; }
.btn--sm { padding: 7px 16px; font-size: 0.82rem; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-main);
  line-height: 1.25;
  color: #f0e8ff;
}
h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-title {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: #f0e8ff;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 2px;
  margin-top: 8px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.header-inner {
  display: flex; align-items: center; gap: 18px;
  padding: 12px 0; min-height: 68px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }
.header-logo .logo-text {
  font-size: 1.45rem; font-weight: 900; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--clr-text-muted);
  transition: color var(--transition), background var(--transition);
}
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-nav a:hover { color: var(--clr-text); background: rgba(255,255,255,0.06); }
.header-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.online-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--clr-plus);
  background: rgba(46,232,138,0.08);
  padding: 5px 10px; border-radius: 20px;
  border: 1px solid rgba(46,232,138,0.2);
  white-space: nowrap;
}
.online-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--clr-plus);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.burger-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--clr-text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 16px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--clr-text-muted); font-size: 0.95rem; font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-menu a:hover { background: rgba(255,255,255,0.07); color: var(--clr-text); }
.mobile-menu .mobile-menu-btns { display: flex; gap: 10px; padding-top: 10px; border-top: 1px solid var(--clr-border); margin-top: 8px; }
.mobile-menu .mobile-menu-btns .btn { flex: 1; justify-content: center; }

/* ===== HERO ===== */
.hero-section {
  position: relative; min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d002e 0%, #1a0050 40%, #2a0a00 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/princess-banner.png') center center / cover no-repeat;
  opacity: 0.38;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,0,24,0.3) 0%, rgba(8,0,24,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 60px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(222,200,103,0.12);
  border: 1px solid rgba(222,200,103,0.35);
  padding: 5px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; color: var(--clr-secondary);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-title span {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.08rem; color: rgba(232,224,244,0.82);
  margin-bottom: 30px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column;
}
.hero-stat .val {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat .lbl { font-size: 0.77rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs-section { padding: 14px 0; background: rgba(0,0,10,0.5); border-bottom: 1px solid var(--clr-border); }
.breadcrumbs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 0.83rem; }
.breadcrumbs a { color: var(--clr-text-muted); }
.breadcrumbs a:hover { color: var(--clr-secondary); }
.breadcrumbs .sep { color: rgba(255,255,255,0.25); }
.breadcrumbs .current { color: var(--clr-secondary); font-weight: 500; }

/* ===== MAIN CONTENT AREA ===== */
.main-section { padding: 48px 0 60px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 38px; }

.block-card {
  min-width: 0;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition);
}
.block-card:hover { box-shadow: var(--shadow-glow); }

/* ===== TABLE OF CONTENTS ===== */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 12px;
}
.toc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-secondary);
  font-size: 0.9rem; font-weight: 500;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--clr-primary); }
.toc-item:hover {
  background: rgba(255,166,88,0.1);
  border-color: rgba(255,166,88,0.35);
  color: var(--clr-primary);
}
.toc-num { font-size: 0.72rem; color: var(--clr-text-muted); margin-left: auto; }

/* ===== INFO TABLE ===== */
.info-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.info-table {
  width: 100%; border-collapse: collapse;
  min-width: 460px;
}
.info-table tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.info-table tr:last-child { border-bottom: none; }
.info-table tr:hover { background: rgba(255,166,88,0.05); }
.info-table td {
  padding: 13px 18px; font-size: 0.92rem; text-align: left; vertical-align: middle;
}
.info-table .td-label {
  color: var(--clr-text-muted); font-weight: 500;
  width: 46%; white-space: nowrap;
  display: flex; align-items: center; gap: 9px;
}
.info-table .td-label svg { width: 17px; height: 17px; color: var(--clr-primary); flex-shrink: 0; }
.info-table .td-value { color: var(--clr-text); font-weight: 500; }
.info-table .td-value .badge-val {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(222,200,103,0.12);
  border: 1px solid rgba(222,200,103,0.22);
  padding: 2px 10px; border-radius: 20px;
  font-size: 0.82rem; color: var(--clr-secondary);
}

/* ===== ADVANTAGES ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 16px;
}
.adv-tile {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.adv-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,166,88,0.16);
  border-color: rgba(255,166,88,0.3);
}
.adv-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,166,88,0.18), rgba(222,200,103,0.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 1px solid rgba(255,166,88,0.25);
}
.adv-icon svg { width: 24px; height: 24px; color: var(--clr-primary); }
.adv-title { font-size: 0.93rem; font-weight: 700; color: #f0e8ff; margin-bottom: 6px; }
.adv-desc { font-size: 0.8rem; color: var(--clr-text-muted); line-height: 1.55; }

/* ===== PROS CONS ===== */
.pros-cons-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px; }
.pros-col, .cons-col {
  border-radius: var(--radius-md); padding: 24px;
  border: 1px solid;
}
.pros-col {
  background: rgba(46,232,138,0.04);
  border-color: rgba(46,232,138,0.2);
}
.cons-col {
  background: rgba(255,92,106,0.04);
  border-color: rgba(255,92,106,0.2);
}
.pc-header {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 18px;
}
.pros-col .pc-header { color: var(--clr-plus); }
.cons-col .pc-header { color: var(--clr-minus); }
.pc-header svg { width: 20px; height: 20px; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.9rem; color: var(--clr-text); line-height: 1.5;
}
.pc-list li .pc-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-top: 7px;
}
.pros-col .pc-dot { background: var(--clr-plus); }
.cons-col .pc-dot { background: var(--clr-minus); }

/* ===== BONUSES ===== */
.bonus-slider-wrap { position: relative; overflow: hidden; }
.bonus-track { display: flex; gap: 20px; transition: transform 0.38s cubic-bezier(.4,0,.2,1); }
.bonus-card {
  flex: 0 0 calc(33.333% - 14px);
  background: linear-gradient(135deg, rgba(255,166,88,0.08) 0%, rgba(8,0,24,0.9) 100%);
  border: 1px solid rgba(255,166,88,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,166,88,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
  background: rgba(255,166,88,0.18); color: var(--clr-primary);
  border: 1px solid rgba(255,166,88,0.28);
}
.bonus-amount {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #fff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bonus-name { font-size: 1rem; font-weight: 700; color: #f0e8ff; margin-bottom: 8px; }
.bonus-desc { font-size: 0.83rem; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 18px; }
.bonus-terms { font-size: 0.75rem; color: rgba(168,152,200,0.65); margin-top: 10px; }

/* Slider controls */
.slider-controls {
  display: none; justify-content: center; gap: 10px; margin-top: 18px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; transition: background var(--transition), transform var(--transition);
}
.slider-dot.active { background: var(--clr-primary); transform: scale(1.3); }
.slider-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--clr-border);
  color: var(--clr-text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.slider-arrow:hover { background: rgba(255,166,88,0.2); border-color: rgba(255,166,88,0.4); }

/* ===== GAMES ===== */
.games-slider-wrap { position: relative; overflow: hidden; }
.games-track { display: flex; gap: 18px; transition: transform 0.38s cubic-bezier(.4,0,.2,1); }
.game-card {
  flex: 0 0 calc(16.666% - 15px);
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.game-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(255,166,88,0.18); }
.game-thumb {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg, #1a0050, #2a0a00);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-thumb img { transform: scale(1.06); }
.game-thumb .game-overlay {
  position: absolute; inset: 0;
  background: rgba(8,0,24,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 12px 10px; }
.game-name { font-size: 0.83rem; font-weight: 600; color: #f0e8ff; margin-bottom: 4px; }
.game-provider { font-size: 0.73rem; color: var(--clr-text-muted); }

/* ===== REVIEW CONTENT ===== */
.review-content {
  line-height: 1.75; font-size: 0.97rem; color: var(--clr-text);
}
.review-content h2 { margin: 30px 0 14px; color: #f0e8ff; }
.review-content h3 { margin: 24px 0 12px; color: #f0e8ff; }
.review-content h4 { margin: 20px 0 10px; color: var(--clr-secondary); }
.review-content p { margin-bottom: 14px; }
.review-content ul, .review-content ol { margin: 12px 0 16px 22px; }
.review-content li { margin-bottom: 6px; }
.review-content table { width: 100%; border-collapse: collapse; margin: 18px 0; overflow-x: auto; display: block; }
.review-content table th,
.review-content table td { border: 1px solid var(--clr-border); padding: 10px 14px; text-align: left; font-size: 0.9rem; }
.review-content table th { background: rgba(255,255,255,0.05); color: var(--clr-secondary); font-weight: 600; }
.review-content table tr:hover td { background: rgba(255,166,88,0.04); }
.review-content a { color: var(--clr-secondary); border-bottom: 1px solid rgba(222,200,103,0.3); }
.review-content a:hover { color: var(--clr-primary); border-color: var(--clr-primary); }
.review-content blockquote {
  margin: 18px 0; padding: 14px 20px;
  border-left: 4px solid var(--clr-primary);
  background: rgba(255,166,88,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: rgba(232,224,244,0.85); font-style: italic;
}
.review-content strong { color: #fff; }
.review-content code {
  background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 4px; font-size: 0.87em;
}
.review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }
.review-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 14px 0; }

/* ===== REGISTRATION STEPS ===== */
.steps-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps-list::before {
  content: ''; position: absolute; left: 25px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--clr-primary), var(--clr-secondary));
  opacity: 0.35;
}
.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 18px 0; position: relative;
}
.step-num {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #c85a00);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  box-shadow: 0 4px 14px rgba(255,125,42,0.38); z-index: 1;
  position: relative;
}
.step-body { flex: 1; }
.step-title { font-size: 1rem; font-weight: 700; color: #f0e8ff; margin-bottom: 5px; }
.step-desc { font-size: 0.87rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,166,88,0.35); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; cursor: pointer;
  font-size: 0.97rem; font-weight: 600; color: #f0e8ff;
  transition: color var(--transition);
  user-select: none;
}
.faq-q:hover { color: var(--clr-primary); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,166,88,0.18); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 22px;
  font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

/* ===== AUTHOR ===== */
.author-block {
  display: flex; gap: 24px; align-items: flex-start;
}
.author-avatar {
  flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #1a0050, #2a1a00);
  overflow: hidden;
  border: 3px solid rgba(222,200,103,0.3);
  display: flex; align-items: center; justify-content: center;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; }
.author-name { font-size: 1.1rem; font-weight: 800; color: #f0e8ff; margin-bottom: 3px; }
.author-role { font-size: 0.83rem; color: var(--clr-primary); margin-bottom: 8px; }
.author-bio { font-size: 0.87rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 12px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.author-links a {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--clr-secondary);
  border: 1px solid rgba(222,200,103,0.22);
  padding: 4px 12px; border-radius: 20px;
  transition: background var(--transition), border-color var(--transition);
}
.author-links a:hover { background: rgba(222,200,103,0.1); border-color: rgba(222,200,103,0.45); }
.author-links a svg { width: 14px; height: 14px; }
.author-date { font-size: 0.78rem; color: rgba(168,152,200,0.65); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}
.footer-top { padding: 48px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { height: 38px; width: auto; }
.footer-brand .logo-text {
  font-size: 1.3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-desc { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.6; }
.footer-flag { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 4px; }
.footer-social { display: flex; gap: 9px; margin-top: 4px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center; color: var(--clr-text-muted);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: rgba(222,200,103,0.15); color: var(--clr-secondary); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-col-title {
  font-size: 0.88rem; font-weight: 700; color: var(--clr-secondary);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-text); }
.footer-logos-row { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-top: 8px; }
.footer-logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px; font-size: 0.78rem; font-weight: 600; color: var(--clr-text-muted);
  display: flex; align-items: center; gap: 6px;
  transition: border-color var(--transition), color var(--transition);
}
.footer-logo-badge:hover { border-color: rgba(222,200,103,0.3); color: var(--clr-text); }
.footer-logo-badge svg { width: 14px; height: 14px; }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8rem; color: rgba(168,152,200,0.55); }
.footer-legal { font-size: 0.75rem; color: rgba(168,152,200,0.45); max-width: 640px; line-height: 1.55; }

/* ===== STICKY WIDGET ===== */
.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, #00000a 0%, #0d0024 100%);
  border-top: 1px solid rgba(255,166,88,0.3);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
}
.widget-text { font-size: 0.88rem; color: var(--clr-text); }
.widget-text strong { color: var(--clr-primary); font-weight: 800; }
.widget-right { display: flex; align-items: center; gap: 12px; }
.widget-bonus {
  font-size: 0.83rem; color: var(--clr-secondary); font-weight: 600;
  background: rgba(222,200,103,0.1);
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(222,200,103,0.22);
  white-space: nowrap;
}
.widget-close {
  background: none; border: none; color: rgba(255,255,255,0.35);
  cursor: pointer; padding: 4px; font-size: 1.2rem; line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover { color: rgba(255,255,255,0.7); }

/* ===== SCROLL-TO-TOP ===== */
.scroll-top {
  position: fixed; bottom: 75px; right: 20px; z-index: 998;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,166,88,0.18); border: 1px solid rgba(255,166,88,0.3);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); background: rgba(255,166,88,0.3); }
.scroll-top svg { width: 18px; height: 18px; color: var(--clr-primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.fade-in { animation: fadeIn 0.5s ease forwards; }
.anim-delay-1 { animation-delay: 0.1s; opacity: 0; }
.anim-delay-2 { animation-delay: 0.2s; opacity: 0; }
.anim-delay-3 { animation-delay: 0.3s; opacity: 0; }
.anim-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* ===== WP Compatibility (structural) ===== */
.wp-block-group { display: block; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; clip: rect(1px,1px,1px,1px); overflow: hidden; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-image-placeholder { display: none; }

/* Fake WP nonce field - not rendered */
.wpnonce-field { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .game-card { flex: 0 0 calc(33.333% - 12px); }
  .bonus-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  /* Nav is verborgen op mobiel: duw de burger naar de rechterhoek */
  .header-inner { justify-content: space-between; }
  .header-right { margin-left: auto; }
  /* Op mobiel staan de knoppen in het burgermenu */
  .header-right .btn,
  .header-right .online-badge { display: none; }
  .pros-cons-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .hero-content { padding: 56px 0 48px; }
  .bonus-card { flex: 0 0 calc(85% - 10px); }
  .game-card { flex: 0 0 calc(50% - 9px); }
  .slider-controls { display: flex; }
  .author-block { flex-direction: column; }
  .author-avatar { width: 64px; height: 64px; }
  .sticky-widget { flex-wrap: wrap; justify-content: center; text-align: center; }
  .adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toc-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .block-card { padding: 22px 18px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .game-card { flex: 0 0 calc(50% - 9px); }
  .bonus-card { flex: 0 0 calc(90% - 10px); }
  .toc-grid { grid-template-columns: minmax(0, 1fr); }
  .adv-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .widget-text { display: none; }
  .steps-list::before { left: 24px; }
  .info-table .td-label { width: 48%; }
  .online-badge { display: none; }
  .sticky-widget { padding: 10px 14px; }
  .widget-right { flex-wrap: wrap; justify-content: center; }
  .widget-bonus { display: none; }
}

@media (max-width: 400px) {
  .btn { white-space: normal; }
}

/* Global safety net: nothing is allowed to exceed the viewport width on mobile */
@media (max-width: 768px) {
  body, .wrapper, .container, main, section, header, footer {
    max-width: 100vw;
  }
  .header-inner, .hero-stats, .toc-grid, .adv-grid, .pros-cons-grid,
  .footer-grid, .pc-list li, .step-item, .author-block, .widget-right,
  .content-layout, .steps-list {
    min-width: 0;
  }
  img, svg, video, canvas, iframe, table {
    max-width: 100%;
  }
}
