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

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

:root {
  --clr-header: #b1621b;
  --clr-header-dark: #8c4c13;
  --clr-btn-red: #f04811;
  --clr-btn-green: #37cd02;
  --clr-btn-green-hover: #2eb502;
  --clr-btn-red-hover: #d13a08;
  --clr-bg: #411f03;
  --clr-bg-card: #5a2d06;
  --clr-bg-card2: #3a1a02;
  --clr-text: #f5e8d0;
  --clr-text-muted: #c8a87a;
  --clr-accent: #f04811;
  --clr-gold: #f0c040;
  --clr-border: #7a3c10;
  --font-head: 'Lilita One', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: var(--font-body); background: var(--clr-bg); color: var(--clr-text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }

a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-green); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.2; color: var(--clr-gold); }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 0.85em; }
p:last-child { margin-bottom: 0; }

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

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

.box { border-radius: var(--radius); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 10px 22px; border-radius: 50px; border: none; cursor: pointer;
  text-decoration: none; transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--clr-btn-green); color: #fff; }
.btn--green:hover { background: var(--clr-btn-green-hover); color: #fff; }
.btn--red { background: var(--clr-btn-red); color: #fff; }
.btn--red:hover { background: var(--clr-btn-red-hover); color: #fff; }
.btn--outline { background: transparent; border: 2px solid var(--clr-btn-red); color: var(--clr-btn-red); }
.btn--outline:hover { background: var(--clr-btn-red); color: #fff; }
.btn--ghost { background: rgba(255,255,255,0.1); color: var(--clr-text); border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost:hover { background: rgba(255,255,255,0.18); color: #fff; }
.btn--sm { padding: 7px 14px; font-size: 0.82rem; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; }

.site-header {
  background: var(--clr-header);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 3px 16px rgba(0,0,0,0.5);
}
.site-header .container { padding-top: 0; padding-bottom: 0; }
.header-inner { display: flex; align-items: center; gap: 16px; height: 64px; justify-content: space-between;}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 50px; width: auto; object-fit: contain; }
.header-logo-text { font-family: var(--font-head); font-size: 1.25rem; color: #fff; line-height: 1.1; }
.header-logo-text span { color: var(--clr-gold); display: block; font-size: 0.7rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; }

.header-nav { flex: 1; }
.header-nav ul { display: flex; list-style: none; padding: 0; margin: 0; gap: 4px; justify-content: center;}
.header-nav ul li a {
  display: flex; align-items: center; gap: 5px;
  color: #ffe4c0; font-weight: 600; font-size: 0.85rem;
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav ul li a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.header-nav ul li a svg { width: 15px; height: 15px; flex-shrink: 0; }

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

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; 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-section { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('/images/3-super-hot-chillies-hero.png') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,10,0,0.85) 0%, rgba(65,31,3,0.65) 60%, rgba(65,31,3,0.3) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 0; max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(240,72,17,0.85); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 14px; }
.hero-title { font-family: var(--font-head); font-size: clamp(1.8rem, 5vw, 3.2rem); color: #fff; line-height: 1.1; margin-bottom: 10px; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
.hero-title span { color: var(--clr-gold); }
.hero-desc { font-size: 1rem; color: #f5e8d0; line-height: 1.6; margin-bottom: 20px; max-width: 440px; text-shadow: 1px 1px 4px rgba(0,0,0,0.6); }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-stars { display: flex; gap: 3px; }
.hero-stars svg { width: 20px; height: 20px; fill: var(--clr-gold); }
.hero-rating-text { color: var(--clr-text-muted); font-size: 0.88rem; }
.hero-rating-score { font-family: var(--font-head); font-size: 1.5rem; color: var(--clr-gold); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-rtp { position: absolute; bottom: 24px; right: 24px; z-index: 1; background: rgba(0,0,0,0.6); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 12px 18px; text-align: center; }
.hero-rtp-val { font-family: var(--font-head); font-size: 1.6rem; color: var(--clr-gold); line-height: 1; }
.hero-rtp-label { font-size: 0.72rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.section { padding: 40px 0; }
.section-title { font-family: var(--font-head); color: var(--clr-gold); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.section-title::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, var(--clr-border), transparent); }

.game-main-wrap { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.game-iframe-col { flex: 0 0 340px; max-width: 340px; }
.game-details-col { flex: 1; min-width: 260px; }
@media (max-width: 900px) {
  .game-main-wrap { flex-direction: column; }
  .game-iframe-col { flex: 0 0 auto; max-width: 100%; width: 100%; }
}

.demo-frame-wrap { background: var(--clr-bg-card); border: 2px solid var(--clr-border); border-radius: var(--radius); overflow: hidden; position: relative; }
.demo-frame-wrap iframe { width: 100%; height: 320px; border: none; display: block; }
.demo-overlay-btn { display: flex; justify-content: center; padding: 12px; background: var(--clr-bg-card2); }

.game-details-table { width: 100%; border-collapse: collapse; background: var(--clr-bg-card); border-radius: var(--radius); overflow: hidden; }
.game-details-table tr { border-bottom: 1px solid var(--clr-border); transition: background var(--transition); }
.game-details-table tr:last-child { border-bottom: none; }
.game-details-table tr:hover { background: rgba(255,255,255,0.04); }
.game-details-table td { padding: 9px 14px; font-size: 0.88rem; }
.game-details-table td:first-child { color: var(--clr-text-muted); white-space: nowrap; display: flex; align-items: center; gap: 7px; width: 180px; }
.game-details-table td:last-child { color: var(--clr-text); font-weight: 600; }
.param-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.85; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.styled-table { width: 100%; border-collapse: collapse; min-width: 480px; }
table.styled-table th { background: var(--clr-header); color: #fff; padding: 10px 14px; text-align: left; font-family: var(--font-head); font-size: 0.9rem; }
table.styled-table td { padding: 9px 14px; text-align: left; font-size: 0.88rem; border-bottom: 1px solid var(--clr-border); }
table.styled-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
table.styled-table tr:hover td { background: rgba(255,255,255,0.06); }

.pros-cons-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.pros-card, .cons-card { flex: 1; min-width: 220px; background: var(--clr-bg-card); border-radius: var(--radius); padding: 20px; border-top: 4px solid; }
.pros-card { border-color: var(--clr-btn-green); }
.cons-card { border-color: var(--clr-btn-red); }
.pros-card h3 { color: var(--clr-btn-green); margin-bottom: 14px; font-size: 1rem; display: flex; align-items: center; gap: 7px; }
.cons-card h3 { color: var(--clr-btn-red); margin-bottom: 14px; font-size: 1rem; display: flex; align-items: center; gap: 7px; }
.pros-list, .cons-list { list-style: none; padding: 0; }
.pros-list li, .cons-list li { padding: 6px 0; border-bottom: 1px solid var(--clr-border); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; background: var(--clr-btn-green); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; margin-top: 2px; }
.cons-list li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; background: var(--clr-btn-red); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; margin-top: 2px; }

.similar-games-grid { display: flex; gap: 16px; flex-wrap: wrap;justify-content: center; }
.game-card { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 16px; flex: 1; min-width: 200px; max-width: 280px; display: flex; flex-direction: column; gap: 10px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.45); border-color: var(--clr-btn-red); }
.game-card-img { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--clr-bg-card2); display: flex; align-items: center; justify-content: center; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; }
.game-card-name { font-family: var(--font-head); font-size: 0.95rem; color: var(--clr-gold); }
.game-card-desc { font-size: 0.8rem; color: var(--clr-text-muted); line-height: 1.5; flex: 1; }
.game-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.game-card-actions .btn { flex: 1; font-size: 0.78rem; padding: 7px 10px; }

.content-block { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 28px 24px; }
.content-block h2 { color: var(--clr-gold); margin-bottom: 14px; }
.content-block h3 { color: var(--clr-gold); margin: 18px 0 8px; }
.content-block h4 { color: var(--clr-text-muted); margin: 14px 0 6px; }
.content-block p { color: var(--clr-text); line-height: 1.7; margin-bottom: 12px; }
.content-block ul, .content-block ol { color: var(--clr-text); margin-bottom: 12px; }
.content-block li { line-height: 1.6; margin-bottom: 6px; }
.content-block a { color: var(--clr-btn-red); }
.content-block a:hover { color: var(--clr-btn-green); }
.content-block table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.content-block table th { background: var(--clr-header); color: #fff; padding: 8px 12px; text-align: left; }
.content-block table td { padding: 7px 12px; border-bottom: 1px solid var(--clr-border); }
.content-block table tr:hover td { background: rgba(255,255,255,0.04); }
.content-block blockquote { border-left: 4px solid var(--clr-btn-red); padding: 10px 16px; background: rgba(240,72,17,0.08); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 14px 0; color: var(--clr-text-muted); font-style: italic; }
.content-block strong { color: var(--clr-gold); }
.content-block em { color: var(--clr-text-muted); }
.content-block img { border-radius: var(--radius-sm); max-width: 100%; margin: 10px 0; }
.content-block hr { border: none; border-top: 1px solid var(--clr-border); margin: 20px 0; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-size: 0.95rem; color: var(--clr-gold);
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-question svg { flex-shrink: 0; width: 18px; height: 18px; transition: transform var(--transition); stroke: var(--clr-text-muted); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 20px; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 20px 16px; }
.faq-answer p { color: var(--clr-text); font-size: 0.9rem; line-height: 1.7; }

.author-block { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 28px 24px; }
.author-inner { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.author-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--clr-header); }
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; min-width: 200px; }
.author-name { font-family: var(--font-head); font-size: 1.2rem; color: var(--clr-gold); margin-bottom: 2px; }
.author-title { color: var(--clr-text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.author-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--clr-text-muted); }
.author-meta-item svg { width: 14px; height: 14px; opacity: 0.7; }
.author-bio { font-size: 0.88rem; color: var(--clr-text); line-height: 1.6; margin-bottom: 14px; }
.author-social { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social a { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--clr-text-muted); background: rgba(255,255,255,0.07); padding: 5px 12px; border-radius: 50px; transition: background var(--transition), color var(--transition); }
.author-social a:hover { background: var(--clr-btn-red); color: #fff; }
.author-dates { margin-top: 14px; display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.78rem; color: var(--clr-text-muted); border-top: 1px solid var(--clr-border); padding-top: 12px; }

.site-footer { background: var(--clr-header); margin-top: auto; }
.footer-top { padding: 36px 0 24px; }
.footer-grid { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 180px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo-link {display: block;width: fit-content;}
.footer-logo img { height: 50px; width: auto; }
.footer-logo-text { font-family: var(--font-head); font-size: 1rem; color: #fff; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-col h4 { font-family: var(--font-head); color: var(--clr-gold); font-size: 0.88rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li a { color: rgba(255,255,255,0.75); font-size: 0.84rem; transition: color var(--transition); display: block; padding: 3px 0; }
.footer-col ul li a:hover { color: var(--clr-gold); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-payments-badge { background: rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 700; letter-spacing: 0.03em; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social a:hover { background: var(--clr-btn-red); }
.footer-social a svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 16px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-trust-badge { background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 4px 10px; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.04em; text-transform: uppercase; }
.footer-trust-badge.badge-18 { background: var(--clr-btn-red); color: #fff; border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; padding: 0; }
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-align: center; }
.footer-legal { font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.5; margin-top: 8px; text-align: center; }
.footer-flag { width: 28px; border-radius: 3px; }

.sticky-widget {
  position: fixed; bottom: 20px; right: 20px; z-index: 998;
  background: var(--clr-bg-card); border: 2px solid var(--clr-header);
  border-radius: var(--radius); padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  max-width: 220px; min-width: 180px;
  animation: slideInWidget 0.5s ease 2s both;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.widget-close { position: absolute; top: 6px; right: 8px; background: transparent; border: none; cursor: pointer; color: var(--clr-text-muted); font-size: 1rem; line-height: 1; padding: 2px; }
.widget-close:hover { color: var(--clr-btn-red); }
.widget-logo { width: 70px; height: 70px; object-fit: contain; border-radius: var(--radius-sm); }
.widget-bonus { font-size: 0.78rem; color: var(--clr-gold); font-family: var(--font-head); text-align: center; line-height: 1.3; }
.widget-bonus strong { display: block; font-size: 1.1rem; }
@keyframes slideInWidget { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 0 0 rgba(55,205,2,0.6); } 50% { box-shadow: 0 0 0 10px rgba(55,205,2,0); } }
.btn--green.pulse { animation: pulse-green 2s ease-in-out infinite; }

.breadcrumb { padding: 10px 0; display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--clr-text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb span { color: var(--clr-text-muted); opacity: 0.5; }

.jackpot-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.jackpot-badge { background: linear-gradient(135deg, #7a3c10 0%, var(--clr-header) 100%); border: 1px solid var(--clr-gold); border-radius: var(--radius); padding: 10px 16px; text-align: center; flex: 1; min-width: 80px; }
.jackpot-badge span { display: block; font-family: var(--font-head); color: var(--clr-gold); font-size: 0.85rem; }
.jackpot-badge small { font-size: 0.7rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.rtp-bar-wrap { margin: 16px 0; }
.rtp-bar-label { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--clr-text-muted); margin-bottom: 5px; }
.rtp-bar-bg { background: rgba(255,255,255,0.1); border-radius: 50px; height: 8px; overflow: hidden; }
.rtp-bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--clr-btn-green), var(--clr-gold)); animation: fillBar 1.2s ease 0.5s both; }
@keyframes fillBar { from { width: 0; } }

.info-page { padding: 48px 0; }
.info-page h1 { margin-bottom: 24px; }
.info-page .text-content { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 32px 28px; }
.info-page .text-content h2 { margin-top: 24px; margin-bottom: 10px; font-size: 1.2rem; }
.info-page .text-content p { line-height: 1.7; margin-bottom: 12px; color: var(--clr-text); }
.info-page .text-content ul { color: var(--clr-text); }

.mobile-nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
}
.mobile-nav-drawer.open { display: flex; flex-direction: column; }
.mobile-nav-panel {
  background: var(--clr-header-dark); width: 100%; padding: 20px 16px;
  border-bottom: 2px solid var(--clr-border);
  max-height: 85vh; overflow-y: auto;
}
.mobile-nav-panel ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; margin: 12px 0; }
.mobile-nav-panel ul li a { display: flex; align-items: center; gap: 8px; color: #ffe4c0; font-weight: 600; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.95rem; }
.mobile-nav-panel ul li a:hover { background: rgba(255,255,255,0.1); }
.mobile-nav-panel ul li a svg { width: 18px; height: 18px; }
.mobile-nav-cta { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.mobile-nav-cta .btn { flex: 1; }

.wp-content-placeholder { display: none; }
.elementor-section { display: none !important; }

@media (max-width: 900px) {
.header-nav ul svg {display: none;}
.game-details-col {width: 100%;}
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .hero-rtp { position: static; margin-top: 20px; display: inline-block; }
  .hero-content { padding: 40px 0 30px; max-width: 100%; }
  .hero-title { font-size: 1.8rem; }
  .game-main-wrap { flex-direction: column; }
  .game-iframe-col { max-width: 100%; }
  .game-details-table td:first-child { width: 140px; }
  .footer-grid { flex-direction: column; gap: 20px; }
  .sticky-widget { max-width: 180px; min-width: 150px; bottom: 12px; right: 12px; }
  .similar-games-grid .game-card { min-width: 160px; }
  .pros-cons-grid { flex-direction: column; }
  h1 { font-size: 1.5rem; }
  .content-block {padding: 24px 20px;}
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .btn--lg { padding: 12px 22px; font-size: 0.95rem; }
  .author-inner { flex-direction: column; align-items: center; text-align: center; }
  .author-social { justify-content: center; }
  .author-meta { justify-content: center; }
  .content-block {padding: 20px 16px;}
}
@media (max-width: 400px) {
.header-cta .btn--green {display: none;}
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.nxz7k2a { display: none; }
.q9mfb3 { visibility: hidden; position: absolute; width: 0; height: 0; overflow: hidden; }
.wp-block-unstyled { font-size: inherit; }
.entry-content-asset { display: none; }

.divider { height: 2px; background: linear-gradient(90deg, transparent, var(--clr-border), transparent); margin: 8px 0; }
