@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@400;600;700;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --clr-header: #8e73a8;
  --clr-header-dark: #7a5f96;
  --clr-btn-gold: #efc33b;
  --clr-btn-blue: #424586;
  --clr-btn-blue-hover: #353771;
  --clr-bg: #6f1611;
  --clr-bg-dark: #5a1009;
  --clr-bg-light: #8a1e18;
  --clr-text: #f5e6d0;
  --clr-text-muted: #d4b896;
  --clr-white: #fff8f0;
  --clr-gold: #efc33b;
  --clr-block-bg: rgba(0,0,0,0.35);
  --clr-block-bg2: rgba(142,115,168,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: url('/wp-content/uploads/bg-texture.png');
  background-repeat: repeat;
  padding-bottom: 58px;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Grenze Gotisch', serif;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

ul, ol { padding-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: 0.3em; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.col { flex: 1 1 0; }

.box { background: var(--clr-block-bg); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow); border: 1px solid rgba(239,195,59,0.12); }
.box--alt { background: var(--clr-block-bg2); }
.box--dark { background: rgba(0,0,0,0.5); }

.section-title { display: flex; align-items: center; gap: 10px; margin-bottom: 1.2em; }
.section-title svg { width: 28px; height: 28px; flex-shrink: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none; text-decoration: none; transition: all var(--transition);
  white-space: nowrap; letter-spacing: 0.02em;
}
.btn--gold { background: var(--clr-btn-gold); color: #1a0a00; box-shadow: 0 2px 12px rgba(239,195,59,0.35); }
.btn--gold:hover { background: #f9d84a; color: #1a0a00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(239,195,59,0.5); }
.btn--blue { background: var(--clr-btn-blue); color: #fff; box-shadow: 0 2px 12px rgba(66,69,134,0.4); }
.btn--blue:hover { background: var(--clr-btn-blue-hover); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; border: 2px solid var(--clr-gold); color: var(--clr-gold); }
.btn--outline:hover { background: var(--clr-gold); color: #1a0a00; transform: translateY(-2px); }
.btn--sm { padding: 7px 16px; font-size: 0.85rem; }
.btn--lg { padding: 14px 34px; font-size: 1.1rem; }
.btn--pulse { animation: pulse-glow 2.2s infinite; }

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 8px rgba(239,195,59,0.4); }
  50% { box-shadow: 0 0 28px rgba(239,195,59,0.85), 0 0 60px rgba(239,195,59,0.3); }
}

.site-header {
  background: var(--clr-header);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
  border-bottom: 2px solid rgba(239,195,59,0.3);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px; max-width: 1200px; margin: 0 auto;
}

.header-logo img { height: 52px; width: auto; object-fit: contain; }
.header-logo { flex-shrink: 0; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  display: flex; align-items: center; gap: 6px; padding: 7px 11px;
  color: var(--clr-white); font-size: 0.88rem; font-weight: 600;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.header-nav a:hover { background: rgba(255,255,255,0.12); color: var(--clr-gold); }
.header-nav svg { width: 16px; height: 16px; }

.header-btns { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.lang-picker { position: relative; }
.lang-picker__toggle {
  display: flex; align-items: center; gap: 5px; padding: 7px 12px;
  background: rgba(0,0,0,0.25); border-radius: var(--radius-sm);
  color: var(--clr-white); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}
.lang-picker__toggle:hover { background: rgba(0,0,0,0.4); }
.lang-picker__dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #3d2c52; border-radius: var(--radius-sm); min-width: 110px;
  box-shadow: var(--shadow); border: 1px solid rgba(239,195,59,0.2); z-index: 200;
}
.lang-picker__dropdown a {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  color: var(--clr-white); font-size: 0.85rem; font-weight: 500;
}
.lang-picker__dropdown a:hover { background: rgba(239,195,59,0.1); }
.lang-picker.open .lang-picker__dropdown { display: block; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-white); border-radius: 2px; transition: all var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative; overflow: hidden; min-height: 480px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #2a0a08 0%, #6f1611 50%, #3d1a40 100%);
}
.hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-image: url('/images/gates-of-olympus-super-scatter-game-hero.avif');
  opacity: 0.55; z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.hero__content { position: relative; z-index: 2; padding: 60px 0; max-width: 600px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(239,195,59,0.15);
  border: 1px solid var(--clr-gold); border-radius: 50px; padding: 5px 14px;
  font-size: 0.82rem; font-weight: 700; color: var(--clr-gold); margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero__title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 16px; color: var(--clr-white); text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.hero__desc { font-size: 1.05rem; color: var(--clr-text); margin-bottom: 28px; max-width: 480px; }
.hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero__rating { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
.hero__stars { display: flex; gap: 3px; }
.hero__stars svg { width: 20px; height: 20px; fill: var(--clr-gold); }
.hero__rating-text { font-size: 0.9rem; color: var(--clr-text-muted); }
.hero__rating-text strong { color: var(--clr-gold); font-size: 1.1rem; }

.breadcrumbs { padding: 12px 0; }
.breadcrumbs__list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.breadcrumbs__list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--clr-text-muted); }
.breadcrumbs__list li:not(:last-child)::after { content: '/'; color: rgba(255,255,255,0.3); }
.breadcrumbs__list a { color: var(--clr-text-muted); }
.breadcrumbs__list a:hover { color: var(--clr-gold); }
.breadcrumbs__list li:last-child { color: var(--clr-gold); }

.toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.toc-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: rgba(0,0,0,0.25); border-radius: var(--radius-sm);
  color: var(--clr-gold); font-size: 0.9rem; font-weight: 600;
  border: 1px solid rgba(239,195,59,0.15); transition: all var(--transition);
}
.toc-item:hover { background: rgba(239,195,59,0.12); transform: translateX(3px); }
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.toc-num { font-size: 0.75rem; color: var(--clr-text-muted); margin-right: 2px; }

.game-section { display: grid; grid-template-columns: 1fr 340px; gap: 20px; align-items: start; }
.game-frame-wrap { position: relative; border-radius: var(--radius-md); overflow: hidden; border: 2px solid rgba(239,195,59,0.25); background: #000; aspect-ratio: 16/10; }
.game-frame-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.game-frame-cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; background: rgba(0,0,0,0.4); border-top: 1px solid rgba(239,195,59,0.15); flex-wrap: wrap; }
.game-frame-outer { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); }

.game-details-table { width: 100%; border-collapse: collapse; }
.game-details-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); transition: background var(--transition); }
.game-details-table tr:hover { background: rgba(239,195,59,0.06); }
.game-details-table td { padding: 9px 10px; font-size: 0.875rem; vertical-align: middle; }
.game-details-table td:first-child { color: var(--clr-text-muted); font-weight: 500; width: 42%; }
.game-details-table td:last-child { color: var(--clr-white); font-weight: 600; }
.game-details-table .td-icon { display: inline-flex; align-items: center; gap: 7px; }
.game-details-table svg { width: 16px; height: 16px; color: var(--clr-gold); flex-shrink: 0; }
.rtp-badge { background: rgba(239,195,59,0.15); color: var(--clr-gold); padding: 2px 8px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; }
.vol-badge { background: rgba(220,50,50,0.2); color: #f87171; padding: 2px 8px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros-block, .cons-block { border-radius: var(--radius-md); padding: 20px; }
.pros-block { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); }
.cons-block { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); }
.pros-block h3 { color: #4ade80; }
.cons-block h3 { color: #f87171; }
.pros-cons-list { list-style: none; padding: 0; }
.pros-cons-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; }
.pros-cons-list li:last-child { border-bottom: none; }
.pros-cons-list .icon-check { color: #4ade80; flex-shrink: 0; margin-top: 2px; }
.pros-cons-list .icon-x { color: #f87171; flex-shrink: 0; margin-top: 2px; }

.jackpot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.jackpot-card {
  border-radius: var(--radius-lg); padding: 24px 18px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.jackpot-card--bronze { background: linear-gradient(145deg, #7a4010, #5a2d08); border: 2px solid #cd7f32; }
.jackpot-card--silver { background: linear-gradient(145deg, #444, #2a2a2a); border: 2px solid #aaa; }
.jackpot-card--gold { background: linear-gradient(145deg, #7a5c00, #4a3800); border: 2px solid var(--clr-gold); }
.jackpot-card__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; opacity: 0.8; }
.jackpot-card--bronze .jackpot-card__label { color: #cd7f32; }
.jackpot-card--silver .jackpot-card__label { color: #ccc; }
.jackpot-card--gold .jackpot-card__label { color: var(--clr-gold); }
.jackpot-card__amount { font-family: 'Grenze Gotisch', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 4px; }
.jackpot-card--bronze .jackpot-card__amount { color: #cd7f32; }
.jackpot-card--silver .jackpot-card__amount { color: #eee; }
.jackpot-card--gold .jackpot-card__amount { color: var(--clr-gold); }
.jackpot-card__subtitle { font-size: 0.78rem; color: var(--clr-text-muted); margin-bottom: 16px; }
.jackpot-winners { list-style: none; padding: 0; }
.jackpot-winners li { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.jackpot-winners li:last-child { border-bottom: none; }
.jackpot-winners .winner-nick { color: var(--clr-text); }
.jackpot-winners .winner-win { font-weight: 700; }
.jackpot-card--gold .jackpot-winners .winner-win { color: var(--clr-gold); }
.jackpot-card--silver .jackpot-winners .winner-win { color: #ccc; }
.jackpot-card--bronze .jackpot-winners .winner-win { color: #cd7f32; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border-radius: var(--radius-sm); border: 1px solid rgba(239,195,59,0.15); overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; cursor: pointer; background: rgba(0,0,0,0.3);
  font-weight: 600; font-size: 0.97rem; color: var(--clr-white);
  transition: background var(--transition); user-select: none;
}
.faq-question:hover { background: rgba(239,195,59,0.1); }
.faq-item.open .faq-question { background: rgba(239,195,59,0.1); color: var(--clr-gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 10px 18px 16px; font-size: 0.9rem; color: var(--clr-text); background: rgba(0,0,0,0.15); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.author-card { display: flex; gap: 24px; align-items: flex-start; }
.author-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--clr-gold); flex-shrink: 0; }
.author-avatar-placeholder { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-header), var(--clr-btn-blue)); border: 3px solid var(--clr-gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Grenze Gotisch', serif; font-size: 2.2rem; color: var(--clr-white); font-weight: 900; }
.author-info { flex: 1; }
.author-name { font-family: 'Grenze Gotisch', serif; font-size: 1.5rem; font-weight: 700; color: var(--clr-white); margin-bottom: 4px; }
.author-title { color: var(--clr-gold); font-size: 0.88rem; font-weight: 600; margin-bottom: 10px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.author-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; color: var(--clr-text-muted); }
.author-meta-item svg { width: 15px; height: 15px; color: var(--clr-gold); }
.author-bio { font-size: 0.9rem; color: var(--clr-text); line-height: 1.7; margin-bottom: 12px; }
.author-socials { display: flex; gap: 10px; }
.author-socials a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; transition: all var(--transition); }
.author-socials a:hover { background: var(--clr-gold); }
.author-socials svg { width: 18px; height: 18px; fill: var(--clr-white); }
.article-dates { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; font-size: 0.82rem; color: var(--clr-text-muted); }
.article-dates span { display: flex; align-items: center; gap: 5px; }
.article-dates svg { width: 14px; height: 14px; color: var(--clr-gold); }

.similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.game-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(239,195,59,0.12);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); border-color: rgba(239,195,59,0.35); }
.game-card__thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; background: #1a0a0a; }
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-card__thumb img { transform: scale(1.06); }
.game-card__body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; }
.game-card__title { font-family: 'Grenze Gotisch', serif; font-size: 1rem; font-weight: 700; color: var(--clr-white); margin-bottom: 6px; }
.game-card__desc { font-size: 0.8rem; color: var(--clr-text-muted); line-height: 1.5; margin-bottom: 12px; flex: 1; }
.game-card__btns { display: flex; gap: 8px; }
.game-card__provider { font-size: 0.72rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }

.site-footer { background: var(--clr-header); border-top: 2px solid rgba(239,195,59,0.2); padding-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 52px; width: auto; margin-bottom: 14px; }
.footer-about-link {display: block;width: fit-content;}
.footer-about p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.footer-nav h4 { color: var(--clr-gold); font-family: 'Grenze Gotisch', serif; margin-bottom: 14px; font-size: 1.1rem; }
.footer-nav-links { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; padding: 0; }
.footer-nav-links a { font-size: 0.85rem; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-nav-links a:hover { color: var(--clr-gold); }
.footer-contact h4 { color: var(--clr-gold); font-family: 'Grenze Gotisch', serif; margin-bottom: 14px; font-size: 1.1rem; }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.footer-contact a { color: var(--clr-gold); }
.footer-contact-link {display: block;width: fit-content;}
.footer-trust { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-trust-row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 600; }
.trust-badge svg { width: 28px; height: 28px; }

.footer-payments { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-payments-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.payment-logo { height: 28px; opacity: 0.8; filter: grayscale(0.2) brightness(1.1); transition: opacity var(--transition); }
.payment-logo:hover { opacity: 1; }
.payment-text-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 4px 10px; border-radius: var(--radius-sm);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  transition: opacity var(--transition); opacity: 0.85;
}
.payment-text-badge:hover { opacity: 1; }
.payment-text-badge--mc { background: rgba(235,80,40,0.25); color: #f97316; }
.payment-text-badge--pp { background: rgba(30,100,200,0.25); color: #60a5fa; }
.payment-text-badge--btc { background: rgba(247,147,26,0.2); color: #f59e0b; }
.payment-text-badge--ne { background: rgba(200,20,60,0.2); color: #f87171; }
.payment-text-badge--sk { background: rgba(130,60,200,0.2); color: #c084fc; }

.footer-socials { display: flex; align-items: center; gap: 12px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; transition: all var(--transition); }
.footer-socials a:hover { background: var(--clr-gold); }
.footer-socials svg { width: 18px; height: 18px; fill: #fff; }

.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 700px; }
.footer-flag { width: 28px; height: 20px; border-radius: 3px; }
.footer-license { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.license-badge { display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.25); border-radius: var(--radius-sm); padding: 5px 10px; font-size: 0.75rem; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.1); }
.license-badge svg { width: 16px; height: 16px; color: var(--clr-gold); }

.bonus-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: linear-gradient(90deg, #2a1040, #6f1611 40%, #3d2960 100%);
  border-top: 2px solid var(--clr-gold);
  padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.bonus-widget__text { color: var(--clr-white); font-size: 0.92rem; font-weight: 600; }
.bonus-widget__text strong { color: var(--clr-gold); }
.bonus-widget__close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1.2rem; padding: 4px 8px; transition: color var(--transition); }
.bonus-widget__close:hover { color: var(--clr-white); }
.bonus-widget a { text-decoration: none; }

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  font-family: 'Grenze Gotisch', serif; color: var(--clr-white); margin: 1.4em 0 0.6em; line-height: 1.25;
}
.content-body h2 { font-size: 1.6rem; border-bottom: 1px solid rgba(239,195,59,0.2); padding-bottom: 8px; }
.content-body h3 { font-size: 1.25rem; }
.content-body p { color: var(--clr-text); margin-bottom: 1em; line-height: 1.75; }
.content-body a { color: var(--clr-gold); text-decoration: underline; }
.content-body ul, .content-body ol { padding-left: 1.5em; margin-bottom: 1em; color: var(--clr-text); }
.content-body li { margin-bottom: 0.4em; line-height: 1.65; }
.content-body strong, .content-body b { color: var(--clr-white); font-weight: 700; }
.content-body em { color: var(--clr-text-muted); font-style: italic; }
.content-body table { width: 100%; border-collapse: collapse; margin: 1.2em 0; overflow-x: auto; display: block; }
.content-body th { background: rgba(239,195,59,0.12); color: var(--clr-gold); padding: 10px 12px; font-weight: 700; text-align: left; border: 1px solid rgba(239,195,59,0.2); }
.content-body td { padding: 9px 12px; color: var(--clr-text); border: 1px solid rgba(255,255,255,0.08); text-align: left; }
.content-body tr:nth-child(even) td { background: rgba(0,0,0,0.2); }
.content-body blockquote { border-left: 4px solid var(--clr-gold); padding: 12px 18px; background: rgba(239,195,59,0.07); color: var(--clr-text-muted); font-style: italic; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.2em 0; }
.content-body hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5em 0; }
.content-body img { border-radius: var(--radius-sm); max-width: 100%; }

#review .box h1,
#review .box h2,
#review .box h3,
#review .box h4,
#review .box h5,
#review .box h6 {
  font-family: 'Grenze Gotisch', serif;
  color: var(--clr-white);
  margin: 1.4em 0 0.6em;
  line-height: 1.25;
}

#review .box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(239, 195, 59, 0.2);
  padding-bottom: 8px;
}

#review .box h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

#review .box h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

#review .box .section-title + h1,
#review .box .section-title + h2 {
  margin-top: 0;
}

#review .box p {
  color: var(--clr-text);
  margin-bottom: 1em;
  line-height: 1.75;
}

#review .box strong,
#review .box b {
  color: var(--clr-white);
  font-weight: 700;
}

#review .box em {
  color: var(--clr-text-muted);
  font-style: italic;
}

#review .box a {
  color: var(--clr-gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

#review .box a:hover {
  color: var(--clr-white);
}

#review .box ul,
#review .box ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
  color: var(--clr-text);
}

#review .box li {
  margin-bottom: 0.4em;
  line-height: 1.65;
}

#review .box table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#review .box th {
  background: rgba(239, 195, 59, 0.12);
  color: var(--clr-gold);
  padding: 10px 12px;
  font-weight: 700;
  text-align: left;
  border: 1px solid rgba(239, 195, 59, 0.2);
  font-size: 0.9rem;
  white-space: nowrap;
}

#review .box td {
  padding: 9px 12px;
  color: var(--clr-text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  font-size: 0.9rem;
}

#review .box tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.2);
}

#review .box tr:hover td {
  background: rgba(239, 195, 59, 0.06);
}

#review .box blockquote {
  border-left: 4px solid var(--clr-gold);
  padding: 12px 18px;
  background: rgba(239, 195, 59, 0.07);
  color: var(--clr-text-muted);
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.2em 0;
}

#review .box hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5em 0;
}

#review .box img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
}

.scroll-top {
  position: fixed; bottom: 70px; right: 20px; z-index: 800;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--clr-btn-blue); border: 2px solid rgba(239,195,59,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none; transition: all var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--clr-gold); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; stroke: #fff; }

.section { padding: 28px 0; }
.section + .section { padding-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.text-gold { color: var(--clr-gold); }
.text-muted { color: var(--clr-text-muted); }
.text-center { text-align: center; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.55s ease forwards; }

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.jackpot-amount-shimmer {
  background: linear-gradient(90deg, var(--clr-gold) 0%, #fff 50%, var(--clr-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2.5s linear infinite;
}

.wpc-comment-form, .wpc-widget-area, .elementor-hidden-phone { display: none !important; }

@media (max-width: 992px) {
  .game-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .jackpot-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(50,30,70,0.97); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 8px; overflow-y: auto; padding-top: 60px; }
  .header-nav.active { display: flex; }
  .header-nav a { font-size: 1.05rem; padding: 12px 20px; width: 100%; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .burger { display: flex; z-index: 1000; }
  .burger.active { position: fixed; top: 16px; right: 16px; }
  .pros-cons { grid-template-columns: 1fr; }
  .jackpot-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; }
  .author-avatar-placeholder { width: 80px; height: 80px; font-size: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 380px; }
  .hero__content { padding: 40px 0; }
  .bonus-widget { padding: 8px 14px; }
  .bonus-widget__text { font-size: 0.82rem; }

  #review .box table {
    font-size: 0.82rem;
  }
  .box {padding: 20px;}
  #review .box th,
  #review .box td {
    padding: 7px 10px;
  }
}

@media (max-width: 480px) {
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .similar-grid { grid-template-columns: 1fr 1fr; }
  .header-btns .btn--lg { display: none; }
  .header-btns .btn--blue{display: none;}
  .box {padding: 16px;}
}