@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: #8e4c13;
  --clr-btn-red: #f04811;
  --clr-btn-green: #37cd02;
  --clr-btn-green-dark: #2aa800;
  --clr-btn-red-dark: #c93500;
  --clr-bg: #411f03;
  --clr-bg-dark: #2d1500;
  --clr-bg-card: #5a2c05;
  --clr-bg-card2: #4a2304;
  --clr-text: #f5e8d4;
  --clr-text-muted: #c9a87a;
  --clr-gold: #f5c642;
  --clr-accent: #f04811;
  --radius: 12px;
  --radius-sm: 8px;
  --ff-head: 'Lilita One', sans-serif;
  --ff-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: var(--ff-body); color: var(--clr-text); background: var(--clr-bg); line-height: 1.6; overflow-x: hidden; }
a { color: var(--clr-btn-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-head); color: var(--clr-gold); line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { margin-bottom: 0.9em; }

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

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

.site-header { background: var(--clr-header); box-shadow: 0 2px 16px rgba(0,0,0,0.5); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.header-nav a { color: var(--clr-text); font-size: 0.82rem; font-weight: 600; padding: 5px 10px; border-radius: 6px; display: flex; align-items: center; gap: 5px; transition: background var(--transition), color var(--transition); white-space: nowrap; }
.header-nav a:hover { background: rgba(255,255,255,0.12); color: var(--clr-gold); }
.header-nav .nav-ico { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: var(--transition); }
.mobile-nav { display: none; background: var(--clr-header-dark); padding: 12px 16px; flex-direction: column; gap: 6px; }
.mobile-nav a { color: var(--clr-text); font-size: 0.9rem; font-weight: 600; padding: 8px 12px; border-radius: 6px; display: flex; align-items: center; gap: 8px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: var(--clr-gold); }
.mobile-nav.open { display: flex; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 20px; border-radius: 8px; font-family: var(--ff-head); font-size: 0.9rem; font-weight: 400; cursor: pointer; border: none; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); text-decoration: none; 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-dark); color: #fff; }
.btn--red { background: var(--clr-btn-red); color: #fff; }
.btn--red:hover { background: var(--clr-btn-red-dark); color: #fff; }
.btn--gold { background: var(--clr-gold); color: #1a0a00; }
.btn--gold:hover { background: #e0b030; color: #1a0a00; }
.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--lg { padding: 13px 30px; font-size: 1.1rem; }
.btn--sm { padding: 6px 14px; font-size: 0.78rem; }

.hero { position: relative; min-height: 440px; background: url('/3-hot-chillies-hero.webp') center/cover no-repeat; border-radius: 0; overflow: hidden; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(65,31,3,0.82) 0%, rgba(65,31,3,0.45) 60%, rgba(240,72,17,0.18) 100%); }
.hero-inner { position: relative; z-index: 1; padding: 48px 32px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,198,66,0.15); border: 1px solid var(--clr-gold); color: var(--clr-gold); font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.7); max-width: 620px; margin-bottom: 10px; }
.hero-sub { color: var(--clr-text-muted); font-size: 1.05rem; max-width: 520px; margin-bottom: 22px; }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-stars { color: var(--clr-gold); font-size: 1.3rem; letter-spacing: 2px; }
.hero-rating-text { color: var(--clr-text); font-size: 0.85rem; }
.hero-rating-num { color: var(--clr-gold); font-weight: 700; font-size: 1.1rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-rtp { position: absolute; top: 20px; right: 24px; background: rgba(0,0,0,0.55); border: 1px solid var(--clr-gold); border-radius: 10px; padding: 10px 18px; text-align: center; }
.hero-rtp-label { color: var(--clr-text-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-rtp-val { color: var(--clr-gold); font-family: var(--ff-head); font-size: 1.4rem; }

.section { padding: 52px 0 40px; }
.section-title { text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--clr-text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--clr-btn-red), var(--clr-gold)); border-radius: 3px; margin: 10px auto 28px; }

.jackpot-grid { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.jackpot-card { background: var(--clr-bg-card); border-radius: var(--radius); padding: 24px 20px; flex: 1 1 260px; max-width: 340px; border: 1px solid rgba(245,198,66,0.18); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; transition: transform var(--transition); }
.jackpot-card:hover { transform: translateY(-4px); }
.jackpot-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.jackpot-card--mini::before { background: #6ee7ff; }
.jackpot-card--minor::before { background: #a78bfa; }
.jackpot-card--major::before { background: #f5c642; }
.jackpot-card--grand::before { background: linear-gradient(90deg, var(--clr-btn-red), var(--clr-gold)); }
.jackpot-label { font-family: var(--ff-head); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-text-muted); }
.jackpot-amount { font-family: var(--ff-head); font-size: 2.2rem; color: var(--clr-gold); line-height: 1; }
.jackpot-top { margin-top: 8px; }
.jackpot-top-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-text-muted); margin-bottom: 6px; }
.jackpot-player { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.82rem; }
.jackpot-player:last-child { border-bottom: none; }
.jackpot-player-nick { color: var(--clr-text); }
.jackpot-player-win { color: var(--clr-btn-green); font-weight: 700; }

.proscons-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.proscons-col { flex: 1 1 280px; background: var(--clr-bg-card); border-radius: var(--radius); padding: 24px 22px; border: 1px solid rgba(255,255,255,0.06); }
.proscons-col--pros { border-top: 3px solid var(--clr-btn-green); }
.proscons-col--cons { border-top: 3px solid var(--clr-btn-red); }
.proscons-col h3 { margin-bottom: 16px; font-size: 1.1rem; }
.proscons-col--pros h3 { color: var(--clr-btn-green); }
.proscons-col--cons h3 { color: var(--clr-btn-red); }
.proscons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.proscons-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.5; }
.proscons-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }
.proscons-col--pros .proscons-list li::before { background: var(--clr-btn-green); content: '+'; color: #fff; }
.proscons-col--cons .proscons-list li::before { background: var(--clr-btn-red); content: '–'; color: #fff; }

.bonuses-track { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.bonuses-track::-webkit-scrollbar { height: 5px; }
.bonuses-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 3px; }
.bonuses-track::-webkit-scrollbar-thumb { background: var(--clr-header); border-radius: 3px; }
.bonus-card { scroll-snap-align: start; flex: 0 0 300px; background: var(--clr-bg-card); border-radius: var(--radius); padding: 22px 18px; border: 1px solid rgba(245,198,66,0.14); display: flex; flex-direction: column; gap: 12px; transition: transform var(--transition); }
.bonus-card:hover { transform: translateY(-3px); }
.bonus-card-logo { height: 36px; display: flex; align-items: center; }
.bonus-card-logo img { height: 50px; width: auto; object-fit: contain; border-radius: 10px;}
.bonus-card-name { font-family: var(--ff-head); font-size: 1rem; color: var(--clr-gold); }
.bonus-card-offer { font-size: 1.25rem; font-family: var(--ff-head); color: var(--clr-btn-green); }
.bonus-card-desc { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.5; }
.bonus-card-terms { font-size: 0.7rem; color: var(--clr-text-muted); opacity: 0.7; }
.bonus-card .btn { width: 100%; }

.demo-wrap { background: var(--clr-bg-card); border-radius: var(--radius); padding: 24px; border: 1px solid rgba(245,198,66,0.12); }
.demo-frame { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-sm); overflow: hidden; background: #000; border: none; }
.demo-cta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.demo-cta-text { font-size: 0.9rem; color: var(--clr-text-muted); }

.review-wrap { background: var(--clr-bg-card); border-radius: var(--radius); padding: 28px 28px 24px; border: 1px solid rgba(255,255,255,0.06); }
.review-author { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.review-author-avatar { min-width: 52px; height: 52px; border-radius: 50%; background: var(--clr-header); display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-size: 1.4rem; color: var(--clr-gold); flex-shrink: 0; border: 2px solid var(--clr-gold); }
.review-author-name { font-family: var(--ff-head); font-size: 1rem; color: var(--clr-gold); }
.review-author-bio { font-size: 0.78rem; color: var(--clr-text-muted); margin-top: 2px; }
.review-author-links { display: flex; gap: 8px; margin-top: 5px; }
.review-author-links a { font-size: 0.72rem; color: var(--clr-btn-red); text-decoration: underline; }
.review-content h2, .review-content h3, .review-content h4 { margin-top: 1.4em; margin-bottom: 0.5em; }
.review-content p { margin-bottom: 0.9em; font-size: 0.95rem; line-height: 1.7; color: var(--clr-text); }
.review-content ul, .review-content ol { margin: 0.8em 0 1em 1.4em; }
.review-content li { margin-bottom: 0.4em; font-size: 0.93rem; line-height: 1.6; color: var(--clr-text); }
.review-content a { color: var(--clr-btn-red); text-decoration: underline; }
.review-content a:hover { color: var(--clr-gold); }
.review-content table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.review-content th { background: var(--clr-header); color: var(--clr-text); padding: 10px 14px; text-align: left; font-size: 0.88rem; border: 1px solid rgba(255,255,255,0.1); }
.review-content td { padding: 9px 14px; text-align: left; font-size: 0.88rem; border: 1px solid rgba(255,255,255,0.07); }
.review-content tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.review-content blockquote { border-left: 3px solid var(--clr-gold); padding-left: 16px; margin: 1em 0; color: var(--clr-text-muted); font-style: italic; }
.review-content img { border-radius: var(--radius-sm); margin: 0.8em 0; }
.review-content strong, .review-content b { color: var(--clr-gold); }
.review-content em, .review-content i { color: var(--clr-text-muted); }
.review-content h1, .review-content h2, .review-content h3, .review-content h4 { color: var(--clr-gold); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-bg-card); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 16px 18px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; color: var(--clr-text); font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600; transition: background var(--transition); }
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-question.open { color: var(--clr-gold); }
.faq-ico { width: 20px; height: 20px; flex-shrink: 0; fill: var(--clr-text-muted); transition: transform var(--transition); }
.faq-question.open .faq-ico { transform: rotate(180deg); fill: var(--clr-gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease, padding var(--transition); padding: 0 18px; font-size: 0.88rem; line-height: 1.7; color: var(--clr-text-muted); }
.faq-answer.open { max-height: 600px; padding: 0 18px 16px; }
.faq-answer p { margin-bottom: 0.5em; }

.similar-grid { display: flex; gap: 18px; flex-wrap: wrap; }
.similar-card { flex: 1 1 200px; max-width: 240px; background: var(--clr-bg-card); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.07); padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; transition: transform var(--transition); }
.similar-card:hover { transform: translateY(-3px); }
.similar-card-img { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--clr-bg-dark); display: flex; align-items: center; justify-content: center; }
.similar-card-img img { width: 100%; height: 100%; object-fit: cover; }
.similar-card-name { font-family: var(--ff-head); font-size: 0.95rem; color: var(--clr-gold); }
.similar-card-desc { font-size: 0.78rem; color: var(--clr-text-muted); line-height: 1.5; }
.similar-card-btns { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.similar-card-btns .btn { flex: 1; }

.site-footer { background: var(--clr-header); margin-top: auto; padding: 0; }
.footer-main { padding: 40px 0 24px; }
.footer-grid { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-col { flex: 1 1 180px; }
.footer-col-link {display: block;width: fit-content;}
.footer-logo { height: 60px; width: auto; margin-bottom: 12px; }
.footer-desc { font-size: 0.8rem; color: rgba(245,232,212,0.7); line-height: 1.6; }
.footer-heading { font-family: var(--ff-head); font-size: 0.88rem; color: var(--clr-gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-links li a { font-size: 0.82rem; color: rgba(245,232,212,0.75); transition: color var(--transition); }
.footer-links li a:hover { color: var(--clr-gold); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social a:hover { background: rgba(0,0,0,0.5); }
.footer-social svg { width: 18px; height: 18px; fill: var(--clr-text); }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-payment-ico { height: 24px; width: auto; filter: brightness(0.85) saturate(0.7); border-radius: 4px; }
.footer-trust { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.footer-trust-ico { height: 28px; width: auto; opacity: 0.75; border-radius: 4px; }
.footer-bottom { background: var(--clr-header-dark); padding: 14px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.74rem; color: rgba(245,232,212,0.6); }
.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: rgba(245,232,212,0.75); }
.footer-flag img {height: 20px; width: auto;}
.footer-legal { font-size: 0.72rem; color: rgba(245,232,212,0.5); line-height: 1.6; padding: 14px 0 8px; }
.footer-provider { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.footer-provider img { height: 22px; width: auto; opacity: 0.75; }

.bonus-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg, #1a0900 0%, var(--clr-header) 50%, #1a0900 100%); padding: 10px 16px; display: flex; align-items: center; justify-content: center; gap: 14px; box-shadow: 0 -4px 24px rgba(0,0,0,0.6); }
.bonus-widget-text { color: var(--clr-text); font-size: 0.88rem; font-weight: 600; }
.bonus-widget-text strong { color: var(--clr-gold); }
.bonus-widget a { text-decoration: none !important; }

.breadcrumb { padding: 10px 0; display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--clr-text-muted); }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb-sep { opacity: 0.4; }

.info-table { width: 100%; border-collapse: collapse; margin: 0 auto 24px; overflow-x: auto; display: block; }
.info-table th, .info-table td { padding: 10px 14px; text-align: left; border: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; }
.info-table th { background: var(--clr-header); color: var(--clr-text); font-family: var(--ff-head); font-weight: 400; width: 40%; }
.info-table td { background: var(--clr-bg-card); color: var(--clr-text); }
.info-table tr:nth-child(even) td { background: var(--clr-bg-card2); }

.text-center { text-align: center; }
.text-gold { color: var(--clr-gold); }
.text-green { color: var(--clr-btn-green); }
.text-red { color: var(--clr-btn-red); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.wp-block-group, .wp-block-columns, .wp-block-cover { display: block; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
.entry-content, .post-content, .wp-site-blocks { display: block; }
.elementor-section, .elementor-column, .elementor-widget-wrap { display: block; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(55,205,2,0.5); } 50% { box-shadow: 0 0 0 10px rgba(55,205,2,0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up-2 { animation: fadeUp 0.55s 0.12s ease both; }
.fade-up-3 { animation: fadeUp 0.55s 0.24s ease both; }
.btn--green { animation: pulse 2.5s infinite; }
.jackpot-amount { background: linear-gradient(90deg, var(--clr-gold) 25%, #fff 50%, var(--clr-gold) 75%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 3s linear infinite; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .hero { min-height: 320px; }
  .hero-rtp { position: static; display: inline-flex; align-items: center; gap: 14px; margin-bottom: 14px; text-align: left; }
  .footer-grid { gap: 20px; }
}
@media (max-width: 768px) {
.footer-grid {flex-direction: column;}
.footer-col {flex: none;}
}
@media (max-width: 600px) {
  .hero-inner { padding: 28px 16px; }
  .hero h1 { font-size: 1.5rem; }
  .jackpot-card { flex: 0 0 100%; max-width: 100%; }
  .bonus-card { flex: 0 0 82vw; }
  .similar-card { flex: 0 0 calc(50% - 9px); max-width: 50%; }
  .review-wrap { padding: 16px 14px; }
  .bonus-widget { flex-direction: column; gap: 8px; padding: 8px 12px; }
  .bonus-widget-text { font-size: 0.78rem; text-align: center; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

.kx9f2a { display: none; }
.m4rz91c { display: none; }
.qp73xb { display: none; }
#wp-page-template { display: none; }
#wpadminbar { display: none; }
.entry-header { display: block; }
.post-type-page { display: block; }
