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

:root {
  --clr-header: #531809;
  --clr-header-dark: #3a1006;
  --clr-btn-green: #077700;
  --clr-btn-green-h: #055f00;
  --clr-btn-blue: #1675af;
  --clr-btn-blue-h: #115e8e;
  --clr-bg: #edda96;
  --clr-bg-dark: #e2cc7a;
  --clr-text: #1a1a1a;
  --clr-text-light: #f5e9c8;
  --clr-gold: #c8a84b;
  --clr-gold-light: #f0d878;
  --clr-white: #fff;
  --clr-block-bg: #fffaec;
  --clr-block-border: #d4b86a;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(83,24,9,0.10);
  --shadow-md: 0 4px 18px rgba(83,24,9,0.15);
  --shadow-lg: 0 8px 32px rgba(83,24,9,0.18);
  --font-head: 'Cinzel', serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--clr-btn-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-blue-h); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }

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

.box { width: 100%; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.25; color: var(--clr-header); }
h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 0.6em; }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.05rem, 2.2vw, 1.4rem); margin-bottom: 0.4em; }
p { margin-bottom: 0.9em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.93rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px 22px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--green { background: var(--clr-btn-green); color: #fff; }
.btn--green:hover { background: var(--clr-btn-green-h); color: #fff; }
.btn--blue { background: var(--clr-btn-blue); color: #fff; }
.btn--blue:hover { background: var(--clr-btn-blue-h); color: #fff; }
.btn--gold { background: linear-gradient(135deg, #c8a84b 0%, #f0d878 50%, #c8a84b 100%); color: #1a1a1a; }
.btn--gold:hover { filter: brightness(1.08); color: #1a1a1a; }
.btn--outline { background: transparent; border: 2px solid var(--clr-btn-blue); color: var(--clr-btn-blue); }
.btn--outline:hover { background: var(--clr-btn-blue); color: #fff; }
.btn--sm { padding: 7px 14px; font-size: 0.83rem; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; }

.site-header {
  background: var(--clr-header);
  box-shadow: 0 3px 16px rgba(83,24,9,0.28);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 54px; width: auto; }
.header-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--clr-gold-light);
  letter-spacing: 0.06em;
  line-height: 1;
}
.header-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--clr-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-text-light);
  font-family: var(--font-head);
  font-size: 0.83rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,0.1); color: var(--clr-gold-light); text-decoration: none; }
.header-nav svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

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

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger-btn:hover { background: rgba(255,255,255,0.1); }
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text-light);
  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-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-nav-overlay.active { display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: min(300px, 80vw);
  height: 100%;
  background: var(--clr-header-dark);
  z-index: 999;
  flex-direction: column;
  padding: 24px 0;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,0.3);
}
.mobile-nav.active { left: 0; }
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-light);
  font-family: var(--font-head);
  font-size: 0.95rem;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-list a:hover { background: rgba(255,255,255,0.08); color: var(--clr-gold-light); text-decoration: none; }
.mobile-nav-list svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-light);
  font-size: 1.5rem;
  padding: 0 24px 16px;
  text-align: right;
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a0a02;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/book-of-dead-hero.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(83,24,9,0.82) 0%, rgba(83,24,9,0.45) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 48px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-gold);
  color: #1a0a02;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--clr-gold-light);
  line-height: 1.15;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
  margin-bottom: 14px;
}
.hero-desc {
  color: var(--clr-text-light);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
  opacity: 0.92;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-stars { display: flex; gap: 3px; }
.hero-stars svg { width: 20px; height: 20px; fill: var(--clr-gold-light); }
.hero-rating-text {
  color: var(--clr-text-light);
  font-size: 0.9rem;
}
.hero-rating-score {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-gold-light);
}

.section-block {
  margin: 28px 0;
  background: var(--clr-block-bg);
  border: 1px solid var(--clr-block-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.section-block--dark {
  background: var(--clr-header);
  border-color: var(--clr-header-dark);
  color: var(--clr-text-light);
}
.section-block--dark h2, .section-block--dark h3 { color: var(--clr-gold-light); }
.section-block--alt {
  background: linear-gradient(135deg, #fff9e6 0%, #fdf3cc 100%);
}
.section-inner { padding: 28px 32px; }
.section-inner--sm { padding: 20px 24px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  color: var(--clr-header);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title svg { width: 26px; height: 26px; fill: var(--clr-gold); flex-shrink: 0; }
.section-subtitle {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.game-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.game-demo-wrap { flex: 1 1 380px; min-width: 0; }
.game-details-wrap { flex: 1 1 320px; min-width: 0; }

.demo-frame {
  position: relative;
  background: #0d0506;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-md);
}
.demo-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-play-money {
  margin-top: 12px;
  text-align: center;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.details-table tr { border-bottom: 1px solid rgba(212,184,106,0.3); }
.details-table tr:last-child { border-bottom: none; }
.details-table td {
  padding: 7px 10px;
  vertical-align: middle;
  text-align: left;
}
.details-table td:first-child {
  color: var(--clr-header);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 0.82rem;
  white-space: nowrap;
  width: 46%;
  display: flex;
  align-items: center;
  gap: 7px;
}
.details-table td:first-child svg { width: 15px; height: 15px; fill: var(--clr-gold); flex-shrink: 0; }
.details-table td:last-child { color: var(--clr-text); font-weight: 500; }
.rtp-highlight { color: var(--clr-btn-green); font-weight: 700; }

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.feature-tile {
  flex: 1 1 180px;
  background: linear-gradient(135deg, #fff9e6, #fdf1c0);
  border: 1px solid var(--clr-block-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-tile svg { width: 36px; height: 36px; fill: var(--clr-header); margin: 0 auto 10px; }
.feature-tile h4 { font-family: var(--font-head); font-size: 0.92rem; color: var(--clr-header); margin-bottom: 6px; }
.feature-tile p { font-size: 0.84rem; color: #555; margin: 0; line-height: 1.45; }

.bonuses-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.bonus-card {
  flex: 1 1 220px;
  background: var(--clr-block-bg);
  border: 2px solid var(--clr-block-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bonus-card-header {
  background: var(--clr-header);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bonus-card-header img { width: 40px; height: 40px; object-fit: contain; border-radius: 6px; background: #fff; padding: 4px; }
.bonus-card-header .casino-name { font-family: var(--font-head); font-size: 0.95rem; color: var(--clr-gold-light); }
.bonus-card-header .casino-rating { font-size: 0.8rem; color: rgba(240,216,120,0.8); }
.bonus-card-body { padding: 16px 18px; flex: 1; }
.bonus-amount {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-btn-green);
  margin-bottom: 4px;
}
.bonus-desc { font-size: 0.85rem; color: #555; margin-bottom: 12px; line-height: 1.45; }
.bonus-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.bonus-tag {
  font-size: 0.72rem;
  background: rgba(7,119,0,0.1);
  color: var(--clr-btn-green);
  border: 1px solid rgba(7,119,0,0.25);
  border-radius: 30px;
  padding: 2px 10px;
  font-weight: 600;
}
.bonus-card-footer { padding: 0 18px 18px; display: flex; flex-direction: column; gap: 8px; }

.bonuses-slider-wrap { position: relative; }
.bonuses-slider-nav { display: none; justify-content: center; gap: 8px; margin-top: 14px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-block-border); border: none; cursor: pointer; padding: 0; transition: background var(--transition), transform var(--transition); }
.slider-dot.active { background: var(--clr-header); transform: scale(1.3); }

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: linear-gradient(90deg, rgba(83,24,9,0.07), transparent);
  border-bottom: 1px solid var(--clr-block-border);
  margin-bottom: 20px;
}
.review-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-gold);
}
.review-author-name { font-family: var(--font-head); font-size: 1rem; color: var(--clr-header); font-weight: 700; }
.review-author-bio { font-size: 0.82rem; color: #666; line-height: 1.4; margin: 0; }
.review-author-link { font-size: 0.8rem; color: var(--clr-btn-blue); }

.content-area { padding: 0 28px 24px; }
.content-area h2 { font-size: 1.4rem; color: var(--clr-header); margin: 1.2em 0 0.5em; }
.content-area h3 { font-size: 1.15rem; color: var(--clr-header); margin: 1em 0 0.4em; }
.content-area h4 { font-size: 1rem; color: var(--clr-header); margin: 0.9em 0 0.35em; }
.content-area p { font-size: 0.96rem; line-height: 1.7; color: var(--clr-text); margin-bottom: 1em; }
.content-area ul, .content-area ol { font-size: 0.96rem; line-height: 1.7; margin-bottom: 1em; padding-left: 1.6em; }
.content-area li { margin-bottom: 0.35em; }
.content-area a { color: var(--clr-btn-blue); }
.content-area a:hover { color: var(--clr-btn-blue-h); }
.content-area strong, .content-area b { color: var(--clr-header); }
.content-area table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: 0.9rem; }
.content-area table th { background: var(--clr-header); color: var(--clr-text-light); padding: 9px 12px; text-align: left; font-family: var(--font-head); }
.content-area table td { padding: 8px 12px; border: 1px solid var(--clr-block-border); text-align: left; }
.content-area table tr:nth-child(even) td { background: rgba(237,218,150,0.3); }
.content-area blockquote { border-left: 4px solid var(--clr-gold); padding: 10px 16px; background: rgba(200,168,75,0.08); margin: 1em 0; font-style: italic; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item {
  border-bottom: 1px solid var(--clr-block-border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--clr-header);
  line-height: 1.35;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-btn-blue); }
.faq-question svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.93rem;
  color: #444;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 16px; }

.similar-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.game-card {
  flex: 1 1 200px;
  background: var(--clr-block-bg);
  border: 1px solid var(--clr-block-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.game-card-img { width: 100%; height: 130px; object-fit: cover; }
.game-card-body { padding: 12px 14px; flex: 1; }
.game-card-title { font-family: var(--font-head); font-size: 0.92rem; color: var(--clr-header); margin-bottom: 5px; }
.game-card-desc { font-size: 0.82rem; color: #666; line-height: 1.45; margin: 0 0 12px; }
.game-card-actions { display: flex; gap: 8px; padding: 0 14px 14px; }

.site-footer {
  background: var(--clr-header-dark);
  color: var(--clr-text-light);
  margin-top: 32px;
}
.footer-top {
  padding: 36px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-col { flex: 1 1 200px; }
.footer-logo {height: 54px;width: auto;}
.footer-logo-wrap { margin-bottom: 12px; }
.footer-logo-wrap-link {display: block;width: fit-content;}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--clr-gold-light);
  letter-spacing: 0.06em;
}
.footer-tagline { font-size: 0.82rem; color: rgba(245,233,200,0.7); margin: 4px 0 16px; line-height: 1.5; }
.footer-flag { width: 28px; height: 20px; border-radius: 3px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--clr-gold-light);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 6px; }
.footer-nav a { color: rgba(245,233,200,0.8); font-size: 0.88rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--clr-gold-light); text-decoration: none; }
.footer-email { font-size: 0.88rem; color: rgba(245,233,200,0.8); display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.footer-email svg { width: 15px; height: 15px; fill: var(--clr-gold); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.footer-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: rgba(245,233,200,0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-badge--green { background: rgba(7,119,0,0.2); border-color: rgba(7,119,0,0.3); color: #8de88d; }

.footer-bottom {
  padding: 18px 0;
}
.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(245,233,200,0.55);
  line-height: 1.6;
  max-width: 700px;
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(245,233,200,0.6);
  font-family: var(--font-head);
}

.sticky-widget {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 900;
  width: 230px;
}
.widget-toggle {
  background: var(--clr-header);
  color: var(--clr-gold-light);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 100%;
  transition: background var(--transition);
}
.widget-toggle:hover { background: #6e2010; }
.widget-toggle svg { width: 14px; height: 14px; fill: var(--clr-gold-light); transition: transform 0.25s; }
.widget-toggle.open svg { transform: rotate(180deg); }

.widget-panel {
  background: var(--clr-block-bg);
  border: 2px solid var(--clr-gold);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.widget-panel.open { max-height: 500px; }
.widget-casino-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(212,184,106,0.3);
}
.widget-casino-item:last-child { border-bottom: none; }
.widget-casino-rank {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--clr-gold);
  width: 22px;
  flex-shrink: 0;
}
.widget-casino-info { flex: 1; min-width: 0; }
.widget-casino-name { font-family: var(--font-head); font-size: 0.82rem; color: var(--clr-header); font-weight: 700; }
.widget-casino-bonus { font-size: 0.72rem; color: var(--clr-btn-green); font-weight: 600; }
.widget-casino-btn { flex-shrink: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #888;
  padding: 10px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-btn-blue); }
.breadcrumb span { color: #aaa; }

.age-warning {
  background: var(--clr-header);
  color: var(--clr-text-light);
  text-align: center;
  font-size: 0.78rem;
  padding: 7px 16px;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll table { min-width: 540px; }

.wp-content { display: none; }
.wp-post-image { display: none; }
.post-thumbnail { display: none; }
.entry-meta { display: none; }
.widget-area { display: none; }
.elementor-hidden { display: none !important; }
.wp-block-spacer { display: none; }

.v8k2x { color: transparent; font-size: 0; height: 0; overflow: hidden; position: absolute; }
.xp93z { display: none; }
.r7q1m { visibility: hidden; height: 0; }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .game-layout { flex-direction: column; }
  .game-demo-wrap, .game-details-wrap { flex: none; width: 100%; }
  .section-inner { padding: 20px 18px; }
  .content-area { padding: 0 18px 20px; }
  .review-author { padding: 16px 18px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .mobile-nav { display: flex; }
  .header-inner { padding: 8px 0; }
  .hero-section { min-height: 360px; }
  .hero-content { padding: 32px 0; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .features-grid .feature-tile { flex: 1 1 140px; }
  .bonuses-grid { flex-direction: column; }
  .bonuses-slider-nav { display: flex; }
  .bonus-card { flex: none; width: 100%; }
  .similar-games-grid .game-card { flex: 1 1 160px; }
  .footer-grid { gap: 20px; }
  .sticky-widget { width: 210px; right: 10px; bottom: 14px; }
  .footer-grid {flex-direction: column;}
}

@media (max-width: 480px) {
  .container { padding: 0 10px; }
  .section-inner { padding: 16px 14px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .game-card-actions { flex-direction: column; }
  .game-card-actions .btn { width: 100%; justify-content: center; }
  .bonus-card-footer .btn { width: 100%; justify-content: center; }
  .footer-bottom-row { flex-direction: column; gap: 8px; text-align: center; }
  .sticky-widget { display: none; }
}
@media (max-width: 420px) {
.header-cta .btn--blue{display: none;}
}