@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: #8f4c13;
  --clr-btn-primary: #37cd02;
  --clr-btn-primary-hover: #2daa00;
  --clr-btn-secondary: #f04811;
  --clr-btn-secondary-hover: #d03a0a;
  --clr-bg: #411f03;
  --clr-bg-card: #2e1502;
  --clr-bg-card2: #4e2808;
  --clr-text: #f5e6d3;
  --clr-text-muted: #c4a07a;
  --clr-gold: #ffc843;
  --clr-gold-dark: #e6a800;
  --clr-accent: #f04811;
  --font-heading: 'Lilita One', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --shadow-card: 0 2px 16px rgba(0,0,0,.35);
  --transition: .25s ease;
}

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

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

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

.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); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--clr-gold); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-bottom: .75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: .5rem; }
p { margin-bottom: .9rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-heading); font-size: .95rem; text-transform: uppercase;
  letter-spacing: .04em; padding: 10px 22px; border-radius: 8px; border: none;
  cursor: pointer; 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,.4); }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--clr-btn-primary); color: #fff; box-shadow: 0 3px 12px rgba(55,205,2,.35); }
.btn--green:hover { background: var(--clr-btn-primary-hover); color: #fff; }
.btn--red { background: var(--clr-btn-secondary); color: #fff; box-shadow: 0 3px 12px rgba(240,72,17,.35); }
.btn--red:hover { background: var(--clr-btn-secondary-hover); color: #fff; }
.btn--gold { background: var(--clr-gold); color: #1a0a00; }
.btn--gold:hover { background: var(--clr-gold-dark); color: #1a0a00; }
.btn--outline { background: transparent; border: 2px solid var(--clr-btn-secondary); color: var(--clr-btn-secondary); }
.btn--outline:hover { background: var(--clr-btn-secondary); color: #fff; }
.btn--lg { padding: 14px 32px; font-size: 1.1rem; border-radius: 10px; }
.btn--sm { padding: 7px 16px; font-size: .82rem; }

.section { padding: 56px 0; }
.section-title { text-align: center; font-family: var(--font-heading); font-size: clamp(1.5rem,3.5vw,2.3rem); color: var(--clr-gold); margin-bottom: 2rem; }
.section-title span { color: var(--clr-btn-secondary); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

.site-header { background: var(--clr-header); box-shadow: 0 2px 12px rgba(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 { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; border-radius: 6px; }
.header-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.header-nav a { color: #fff; font-family: var(--font-heading); font-size: .88rem; padding: 6px 10px; border-radius: 6px; display: flex; align-items: center; gap: 5px; transition: background var(--transition), color var(--transition); }
.header-nav a:hover { background: rgba(255,255,255,.15); color: var(--clr-gold); }
.header-nav a svg { flex-shrink: 0; }
.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-winner { background: rgba(0,0,0,.25); border-radius: 20px; padding: 4px 12px; font-size: .78rem; color: #fff; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.header-winner span.winner-icon { color: var(--clr-gold); font-size: 1rem; }
.header-winner .winner-name { font-weight: 700; color: var(--clr-gold); }
.header-winner .winner-amount { color: var(--clr-btn-primary); font-weight: 700; }

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

.hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('/images/3-hot-chillies-hero.webp') center/cover no-repeat; filter: brightness(.55); z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(65,31,3,.85) 0%, rgba(65,31,3,.3) 60%, transparent 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 600px; padding: 60px 16px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,72,17,.25); border: 1px solid var(--clr-btn-secondary); border-radius: 20px; padding: 4px 14px; font-size: .82rem; color: var(--clr-gold); margin-bottom: 18px; }
.hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.7); margin-bottom: .6rem; }
.hero h1 span { color: var(--clr-gold); }
.hero-sub { font-size: 1.05rem; color: var(--clr-text); margin-bottom: 1.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 1.5rem; }
.hero-rating { display: flex; align-items: center; gap: 8px; }
.hero-rating .stars { color: var(--clr-gold); font-size: 1.2rem; letter-spacing: 2px; }
.hero-rating .rating-text { color: var(--clr-text-muted); font-size: .88rem; }
.hero-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-feature-tag { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 6px; padding: 4px 12px; font-size: .8rem; color: #fff; }

.jackpots-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.jackpot-card { flex: 1 1 260px; max-width: 340px; background: var(--clr-bg-card2); border-radius: var(--radius-lg); padding: 24px 20px; box-shadow: var(--shadow-card); border: 2px solid transparent; transition: border-color var(--transition), transform var(--transition); position: relative; overflow: hidden; }
.jackpot-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.jackpot-card.mini::before { background: #7bc8ff; }
.jackpot-card.minor::before { background: #aaffaa; }
.jackpot-card.major::before { background: var(--clr-gold); }
.jackpot-card.grand::before { background: linear-gradient(90deg, #ff6a00, var(--clr-gold), #ff6a00); animation: shimmer-bar 2s linear infinite; background-size: 200% 100%; }
.jackpot-card:hover { border-color: var(--clr-gold); transform: translateY(-4px); }
.jackpot-label { font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.jackpot-card.mini .jackpot-label { color: #7bc8ff; }
.jackpot-card.minor .jackpot-label { color: #aaffaa; }
.jackpot-card.major .jackpot-label { color: var(--clr-gold); }
.jackpot-card.grand .jackpot-label { color: #ff8c00; }
.jackpot-amount { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 14px; }
.jackpot-amount.grand-amount { font-size: 2.4rem; color: var(--clr-gold); text-shadow: 0 0 20px rgba(255,200,67,.5); animation: pulse-glow .9s ease-in-out infinite alternate; }
.jackpot-winners-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--clr-text-muted); margin-bottom: 8px; }
.jackpot-winner-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .85rem; }
.jackpot-winner-row:last-child { border-bottom: none; }
.jackpot-winner-nick { color: var(--clr-text); }
.jackpot-winner-win { color: var(--clr-btn-primary); font-weight: 700; }

.leaderboard-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.leaderboard-table { width: 100%; min-width: 480px; border-collapse: collapse; text-align: left; }
.leaderboard-table thead th { background: var(--clr-header); color: #fff; font-family: var(--font-heading); padding: 12px 14px; font-size: .92rem; position: sticky; top: 0; }
.leaderboard-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.06); transition: background var(--transition); }
.leaderboard-table tbody tr:hover { background: rgba(255,255,255,.05); }
.leaderboard-table tbody td { padding: 10px 14px; font-size: .9rem; color: var(--clr-text); }
.leaderboard-table tbody td:first-child { font-family: var(--font-heading); color: var(--clr-gold); width: 40px; text-align: center; }
.rank-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: .85rem; font-family: var(--font-heading); }
.rank-badge.r1 { background: #ffd700; color: #1a0a00; }
.rank-badge.r2 { background: #c0c0c0; color: #1a0a00; }
.rank-badge.r3 { background: #cd7f32; color: #fff; }
.amount-win { color: var(--clr-btn-primary); font-weight: 700; }

.demo-wrap { background: var(--clr-bg-card); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.demo-frame-container { position: relative; width: 100%; max-width: 768px; margin: 0 auto 20px; background: #000; border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; }
.demo-frame-container iframe { width: 100%; height: 100%; border: none; display: block; }
.demo-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.demo-note { text-align: center; color: var(--clr-text-muted); font-size: .82rem; margin-top: 10px; }

.strategies-grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.strategy-card { flex: 1 1 270px; max-width: 360px; background: var(--clr-bg-card2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.strategy-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.strategy-img { height: 160px; object-fit: cover; width: 100%; }
.strategy-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.strategy-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--clr-gold); margin-bottom: .5rem; }
.strategy-desc { font-size: .88rem; color: var(--clr-text-muted); flex: 1; margin-bottom: 14px; line-height: 1.55; }
.strategy-badge { display: inline-block; background: rgba(240,72,17,.2); border: 1px solid var(--clr-btn-secondary); color: var(--clr-btn-secondary); border-radius: 4px; font-size: .75rem; padding: 2px 8px; margin-bottom: 8px; }

.content-review { background: var(--clr-bg-card); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-card); margin: 0 4px; }
.content-review h2, .content-review h3, .content-review h4 { color: var(--clr-gold); font-family: var(--font-heading); margin-top: 1.4em; margin-bottom: .6em; }
.content-review h2 { font-size: 1.5rem; }
.content-review h3 { font-size: 1.2rem; }
.content-review p { color: var(--clr-text); line-height: 1.7; margin-bottom: .9em; }
.content-review a { color: var(--clr-btn-secondary); text-decoration: underline; }
.content-review ul, .content-review ol { margin: .8em 0 .8em 1.4em; }
.content-review li { margin-bottom: .4em; color: var(--clr-text); line-height: 1.6; }
.content-review table { width: 100%; border-collapse: collapse; margin: 1.2em 0; overflow-x: auto; display: block; }
.content-review table th { background: var(--clr-header); color: #fff; padding: 10px 14px; text-align: left; font-family: var(--font-heading); font-size: .9rem; }
.content-review table td { padding: 9px 14px; border-bottom: 1px solid rgba(255,255,255,.08); color: var(--clr-text); font-size: .9rem; }
.content-review table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.content-review blockquote { border-left: 4px solid var(--clr-gold); padding: 10px 18px; background: rgba(255,200,67,.07); border-radius: 0 8px 8px 0; margin: 1em 0; color: var(--clr-text-muted); font-style: italic; }
.content-review strong, .content-review b { color: var(--clr-gold); font-weight: 700; }
.content-review em, .content-review i { color: var(--clr-text-muted); font-style: italic; }
.content-review hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 1.5em 0; }
.content-review img { border-radius: 8px; margin: .8em 0; max-width: 100%; }
.content-review code { background: rgba(255,255,255,.1); border-radius: 4px; padding: 1px 6px; font-size: .9em; font-family: monospace; color: var(--clr-gold); }
.content-review pre { background: rgba(0,0,0,.3); border-radius: 8px; padding: 14px; overflow-x: auto; margin: 1em 0; }
.content-review pre code { background: none; padding: 0; }

.faq-list { margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-bg-card2); border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); }
.faq-question { width: 100%; text-align: left; background: none; border: none; color: var(--clr-text); font-family: var(--font-heading); font-size: 1rem; padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color var(--transition); }
.faq-question:hover { color: var(--clr-gold); }
.faq-question.open { color: var(--clr-gold); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: transform var(--transition), background var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--clr-btn-secondary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 0 20px 16px; color: var(--clr-text-muted); font-size: .93rem; line-height: 1.65; border-top: 1px solid rgba(255,255,255,.06); padding-top: 12px; }

.author-card { background: var(--clr-bg-card2); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-card); display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.author-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--clr-gold); flex-shrink: 0; }
.author-info { flex: 1; min-width: 200px; }
.author-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--clr-gold); margin-bottom: 2px; }
.author-title { font-size: .85rem; color: var(--clr-btn-secondary); margin-bottom: 6px; font-weight: 600; }
.author-location { font-size: .82rem; color: var(--clr-text-muted); display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.author-bio { font-size: .9rem; color: var(--clr-text); line-height: 1.65; margin-bottom: 12px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .82rem; color: var(--clr-text-muted); margin-bottom: 12px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social-link { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); border-radius: 6px; padding: 6px 12px; font-size: .82rem; color: var(--clr-text); transition: background var(--transition), color var(--transition); }
.author-social-link:hover { background: var(--clr-btn-secondary); color: #fff; }
.author-dates { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; color: var(--clr-text-muted); }

.site-footer { background: var(--clr-header); margin-top: auto; }
.footer-top { padding: 40px 0 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.footer-grid { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-col { flex: 1 1 180px; }
.footer-col h4 { font-family: var(--font-heading); color: var(--clr-gold); font-size: 1rem; margin-bottom: 12px; }
.footer-logo img { height: 60px; width: auto; border-radius: 6px; margin-bottom: 10px; }
.footer-logo-link {display: block;width: fit-content;}
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-nav a { color: rgba(255,255,255,.8); font-size: .88rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--clr-gold); }
.footer-payments, .footer-socials, .footer-trust { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-payments img, .footer-trust img { height: 28px; width: auto; opacity: .8; filter: brightness(1.2); }
.footer-payments img:hover, .footer-trust img:hover { opacity: 1; }
.footer-social-icon { display: inline-flex; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.15); align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social-icon:hover { background: var(--clr-btn-secondary); }
.footer-social-icon img { width: 18px; height: 18px;}
.footer-email { font-size: .88rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.footer-provider { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.footer-provider img { height: 28px; width: auto; filter: brightness(2) invert(1); opacity: .7; }
.footer-flag {height: 20px;width: auto;}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 20px 0; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.55); line-height: 1.55; margin-top: 10px; }
.footer-copyright { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.trust-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(0,0,0,.2); border-radius: 4px; padding: 3px 8px; font-size: .75rem; color: rgba(255,255,255,.6); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

.sticky-widget { position: fixed; bottom: 20px; right: 20px; z-index: 999; max-width: 230px; background: var(--clr-bg-card); border-radius: var(--radius-lg); box-shadow: 0 6px 30px rgba(0,0,0,.6); border: 2px solid var(--clr-gold); padding: 14px; text-align: center; }
.widget-close { position: absolute; top: 6px; right: 8px; background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: 1rem; line-height: 1; transition: color var(--transition); }
.widget-close:hover { color: #fff; }
.widget-logo { height: 36px; width: auto; margin: 0 auto 8px; border-radius: 4px; }
.widget-bonus { font-size: .78rem; color: var(--clr-text-muted); margin-bottom: 8px; line-height: 1.4; }
.widget-bonus strong { color: var(--clr-gold); display: block; font-size: 1rem; font-family: var(--font-heading); }

.wave-divider { height: 60px; overflow: hidden; margin: 0; }
.wave-divider svg { width: 100%; height: 100%; display: block; }

@keyframes pulse-glow {
  from { text-shadow: 0 0 10px rgba(255,200,67,.3); }
  to { text-shadow: 0 0 28px rgba(255,200,67,.8); }
}
@keyframes shimmer-bar {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 1100px) {
.header-winner {display: none;}
}
@media (max-width: 900px) {
  .jackpots-grid { gap: 12px; }
  .strategies-grid { gap: 14px; }
  .footer-grid { gap: 20px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--clr-header-dark); flex-direction: column; align-items: stretch; padding: 12px 16px 16px; gap: 4px; box-shadow: 0 8px 20px rgba(0,0,0,.4); border-top: 1px solid rgba(255,255,255,.15); }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 10px 14px; border-radius: 8px; }
  .burger { display: flex; }
  .hero { min-height: 420px; }
  .hero-content { padding: 40px 16px; }
  .author-card { flex-direction: column; }
  .author-photo { width: 70px; height: 70px; }
  .sticky-widget { right: 12px; bottom: 12px; max-width: 200px; }
  .content-review { padding: 20px 14px; }
  .footer-grid { flex-direction: column; }

}

@media (max-width: 480px) {
  .hero-actions .btn--lg { padding: 11px 22px; font-size: .95rem; }
  .jackpot-card { min-width: 100%; }
  .strategy-card { min-width: 100%; }
  .footer-col { min-width: 140px; }
  .sticky-widget { max-width: 180px; font-size: .8rem; }
}

.wp-block-cover__inner-container { position: relative; }
.wp-block-group { display: block; }
.elementor-widget-container { display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85em; color: rgba(255,255,255,.5); }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.aligncenter { text-align: center; margin: 0 auto; display: block; }
.alignleft { float: left; margin: 0 18px 10px 0; }
.alignright { float: right; margin: 0 0 10px 18px; }
.wp-image-thumb { border-radius: 4px; }
#wpadminbar { display: none; }
.entry-meta { font-size: .8em; color: rgba(255,255,255,.4); }
.post-thumbnail { display: block; overflow: hidden; }
.wp-block-separator { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 2em 0; }

.info-page-content { background: var(--clr-bg-card); border-radius: var(--radius-lg); padding: 32px 28px; max-width: 860px; margin: 0 auto; box-shadow: var(--shadow-card); }
.info-page-content h1 { color: var(--clr-gold); margin-bottom: 1.2rem; }
.info-page-content h2, .info-page-content h3 { color: var(--clr-gold); font-family: var(--font-heading); margin-top: 1.4em; margin-bottom: .6em; }
.info-page-content p, .info-page-content li { color: var(--clr-text); line-height: 1.7; }
.info-page-content ul, .info-page-content ol { margin: .8em 0 .8em 1.4em; }
.info-page-content a { color: var(--clr-btn-secondary); text-decoration: underline; }

.game-stats-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 16px; }
.stat-chip { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 8px 16px; font-size: .83rem; color: var(--clr-text-muted); display: flex; flex-direction: column; align-items: center; min-width: 100px; }
.stat-chip strong { color: var(--clr-gold); font-size: 1.05rem; font-family: var(--font-heading); }

.breadcrumb { font-size: .82rem; color: var(--clr-text-muted); padding: 10px 0; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

.section--alt { background: rgba(0,0,0,.2); }
.section--card { background: var(--clr-bg-card); border-radius: var(--radius-lg); padding: 32px; margin: 0 4px; box-shadow: var(--shadow-card); }
