@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --clr-header: #620a18;
  --clr-header-dark: #4a0710;
  --clr-bg: #330005;
  --clr-bg2: #3e0008;
  --clr-bg3: #280004;
  --clr-btn-primary: #e19522;
  --clr-btn-primary-hover: #c97d14;
  --clr-btn-secondary: #f0e9ea;
  --clr-btn-secondary-hover: #d6c9cb;
  --clr-text: #f5eaec;
  --clr-text-muted: #c9a8ae;
  --clr-accent: #e19522;
  --clr-gold: #f7d36a;
  --clr-border: rgba(225,149,34,0.25);
  --clr-block: rgba(98,10,24,0.45);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --transition: 0.22s ease;
  --font: 'Kanit', sans-serif;
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: var(--font); 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-gold); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 700; line-height: 1.25; color: var(--clr-gold); }
p { margin-bottom: 1rem; color: var(--clr-text); }
ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.65rem 1rem; border: 1px solid var(--clr-border); text-align: left; }
th { background: var(--clr-header); color: var(--clr-gold); font-weight: 600; }
tr:nth-child(even) { background: rgba(98,10,24,0.2); }

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

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.6rem 1.4rem; border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); text-decoration: none; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); text-decoration: none; }
.btn-primary { background: var(--clr-btn-primary); color: #1a0500; }
.btn-primary:hover { background: var(--clr-btn-primary-hover); color: #1a0500; }
.btn-secondary { background: var(--clr-btn-secondary); color: #330005; }
.btn-secondary:hover { background: var(--clr-btn-secondary-hover); color: #330005; }
.btn-outline { background: transparent; border: 2px solid var(--clr-btn-primary); color: var(--clr-btn-primary); }
.btn-outline:hover { background: var(--clr-btn-primary); color: #1a0500; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- SITE HEADER ---- */
.site-header { background: var(--clr-header); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; gap: 1rem; flex-wrap: wrap; }
.site-header__logo img { height: 46px; width: auto; object-fit: contain; }
.site-header__nav { display: flex; align-items: center; gap: 1.5rem; flex: 1; justify-content: center; }
.site-header__nav a { color: var(--clr-text); font-weight: 500; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 0.35rem; transition: color var(--transition); }
.site-header__nav a:hover { color: var(--clr-gold); }
.site-header__nav a svg { width: 16px; height: 16px; }
.site-header__actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.jackpot-ticker { background: rgba(0,0,0,0.3); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 0.25rem 0.75rem; font-size: 0.82rem; color: var(--clr-gold); font-weight: 600; display: flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.jackpot-ticker__dot { width: 8px; height: 8px; background: #4caf50; border-radius: 50%; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: all 0.3s; }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; background: var(--clr-header-dark); padding: 1rem; flex-direction: column; gap: 0.75rem; }
.mobile-nav.is-open { display: flex; }
.mobile-nav__jackpot { justify-content: center; margin-bottom: 0.75rem; }
.mobile-nav__actions { display: flex; gap: 0.6rem; padding-bottom: 0.75rem; margin-bottom: 0.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav__actions .btn { flex: 1; justify-content: center; }
.mobile-nav a { color: var(--clr-text); font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 0.5rem; }
.mobile-nav a:last-child { border-bottom: none; }

/* ---- BREADCRUMB ---- */
.breadcrumb { padding: 0.75rem 0; font-size: 0.85rem; color: var(--clr-text-muted); }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.breadcrumb li::after { content: '›'; margin-left: 0.35rem; color: var(--clr-text-muted); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb span { color: var(--clr-text); }

/* ---- HERO ---- */
.hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center top; background-repeat: no-repeat; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(51,0,5,0.92) 35%, rgba(51,0,5,0.5) 75%, rgba(51,0,5,0.2) 100%); }
.hero__content { position: relative; z-index: 2; padding: 3.5rem 0; max-width: 620px; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(225,149,34,0.15); border: 1px solid var(--clr-accent); border-radius: 20px; padding: 0.3rem 0.9rem; font-size: 0.82rem; color: var(--clr-accent); font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.04em; }
.hero__title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; color: var(--clr-gold); margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.6); line-height: 1.15; }
.hero__desc { font-size: 1.05rem; color: var(--clr-text); margin-bottom: 1.75rem; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.hero__tile { background: rgba(98,10,24,0.55); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 0.75rem 1rem; text-align: center; backdrop-filter: blur(4px); }
.hero__tile-label { font-size: 0.75rem; color: var(--clr-text-muted); display: block; margin-bottom: 0.2rem; }
.hero__tile-value { font-size: 1rem; font-weight: 700; color: var(--clr-gold); }

/* ---- SECTIONS ---- */
.section { padding: 2.5rem 0; }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--clr-gold); margin-bottom: 0.5rem; }
.section-sub { color: var(--clr-text-muted); margin-bottom: 1.75rem; font-size: 0.95rem; }

/* ---- BOX BLOCK ---- */
.box-block { background: var(--clr-block); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 1.75rem; margin-bottom: 1.75rem; }
.box-block--gold-border { border-color: rgba(225,149,34,0.5); }

/* ---- TABLE OF CONTENTS ---- */
.toc { background: rgba(98,10,24,0.5); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 2rem; }
.toc__title { font-size: 1.1rem; font-weight: 700; color: var(--clr-gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.toc__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.5rem; }
.toc__list li a { display: flex; align-items: center; gap: 0.5rem; color: var(--clr-text); font-size: 0.9rem; padding: 0.4rem 0.6rem; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); }
.toc__list li a:hover { background: rgba(225,149,34,0.12); color: var(--clr-gold); }
.toc__list li a svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--clr-accent); }

/* ---- DEMO BLOCK ---- */
.demo-block__iframe-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius-sm); overflow: hidden; background: #000; border: 1px solid var(--clr-border); }
.demo-block__iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.demo-block__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

/* ---- APP BLOCK ---- */
.app-block__grid { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: start; }
.phone-frame { position: relative; width: 200px; margin: 0 auto; }
.phone-frame__body { background: #1a0000; border-radius: 32px; border: 3px solid #5a0e18; padding: 12px 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05); }
.phone-frame__screen { border-radius: 22px; overflow: hidden; background: #000; min-height: 320px; }
.phone-frame__screen img { width: 100%; height: 100%; object-fit: cover; }
.app-block__downloads { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.app-badge { display: flex; align-items: center; gap: 0.6rem; background: rgba(0,0,0,0.35); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 0.55rem 1rem; color: var(--clr-text); transition: border-color var(--transition), background var(--transition); width: fit-content; font-size: 0.9rem; }
.app-badge:hover { border-color: var(--clr-accent); background: rgba(225,149,34,0.08); color: var(--clr-text); }
.app-badge svg { width: 20px; height: 20px; flex-shrink: 0; }
.app-badge span { font-size: 0.75rem; color: var(--clr-text-muted); display: block; line-height: 1; }
.app-badge strong { font-size: 0.9rem; font-weight: 600; display: block; }
.table-wrap { overflow-x: auto; }

/* ---- PROS CONS ---- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pros-cons__col { background: rgba(98,10,24,0.4); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 1.25rem; }
.pros-cons__col--pros { border-color: rgba(76,175,80,0.3); }
.pros-cons__col--cons { border-color: rgba(229,57,53,0.3); }
.pros-cons__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.4rem; }
.pros-cons__title--pros { color: #81c784; }
.pros-cons__title--cons { color: #ef9a9a; }
.pros-cons__list { list-style: none; padding: 0; margin: 0; }
.pros-cons__list li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--clr-text); }
.pros-cons__list li:last-child { border-bottom: none; }
.pros-cons__list li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.pros-cons__col--pros .pros-cons__list li::before { background: #4caf50; }
.pros-cons__col--cons .pros-cons__list li::before { background: #e53935; }

/* ---- STRATEGIES ---- */
.strategies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.strategy-card { background: rgba(98,10,24,0.5); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.strategy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.strategy-card__img { width: 100%; height: 140px; object-fit: cover; background: var(--clr-bg3); display: flex; align-items: center; justify-content: center; }
.strategy-card__img img { width: 100%; height: 100%; object-fit: cover; }
.strategy-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.strategy-card__name { font-size: 1rem; font-weight: 700; color: var(--clr-gold); margin-bottom: 0.4rem; }
.strategy-card__desc { font-size: 0.85rem; color: var(--clr-text-muted); flex: 1; margin-bottom: 0.75rem; }

/* ---- CONTENT BLOCK ---- */
.content-review { line-height: 1.7; }
.content-review h1,.content-review h2,.content-review h3,.content-review h4,.content-review h5,.content-review h6 { color: var(--clr-gold); font-family: var(--font); margin: 1.5rem 0 0.75rem; }
.content-review p { color: var(--clr-text); margin-bottom: 1rem; }
.content-review ul,.content-review ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-review li { color: var(--clr-text); margin-bottom: 0.4rem; }
.content-review a { color: var(--clr-accent); }
.content-review a:hover { color: var(--clr-gold); }
.content-review table { margin: 1.5rem 0; }
.content-review th { background: var(--clr-header); color: var(--clr-gold); }
.content-review td { color: var(--clr-text); }
.content-review blockquote { border-left: 4px solid var(--clr-accent); padding: 0.75rem 1.25rem; background: rgba(225,149,34,0.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.25rem 0; font-style: italic; }
.content-review strong { color: var(--clr-gold); }

/* ---- AUTHOR ---- */
.author-card { display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; align-items: start; }
.author-card__avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--clr-accent); flex-shrink: 0; }
.author-card__name { font-size: 1.25rem; font-weight: 700; color: var(--clr-gold); }
.author-card__title { color: var(--clr-text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.author-card__bio { font-size: 0.9rem; color: var(--clr-text); margin-bottom: 0.75rem; }
.author-card__meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.82rem; color: var(--clr-text-muted); margin-bottom: 0.75rem; }
.author-card__meta span { display: flex; align-items: center; gap: 0.35rem; }
.author-card__social { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.author-card__social a { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(98,10,24,0.6); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 0.35rem 0.75rem; font-size: 0.82rem; color: var(--clr-text); }
.author-card__social a:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.author-card__dates { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 0.5rem; }

/* ---- SIMILAR GAMES ---- */
.similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.similar-card { background: rgba(98,10,24,0.5); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.similar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.similar-card__img { width: 100%; height: 110px; object-fit: cover; background: var(--clr-bg3); }
.similar-card__body { padding: 0.9rem; flex: 1; display: flex; flex-direction: column; }
.similar-card__name { font-size: 0.95rem; font-weight: 700; color: var(--clr-gold); margin-bottom: 0.35rem; }
.similar-card__desc { font-size: 0.8rem; color: var(--clr-text-muted); flex: 1; margin-bottom: 0.75rem; }
.similar-card__actions { display: flex; gap: 0.5rem; }

/* ---- FAQ ---- */
.faq-item { border: 1px solid var(--clr-border); border-radius: var(--radius-sm); margin-bottom: 0.75rem; overflow: hidden; }
.faq-item__question { padding: 1rem 1.25rem; font-weight: 600; font-size: 0.95rem; color: var(--clr-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: rgba(98,10,24,0.4); transition: background var(--transition); }
.faq-item__question:hover { background: rgba(98,10,24,0.65); }
.faq-item__question svg { width: 18px; height: 18px; color: var(--clr-accent); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.is-open .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer { display: none; padding: 1rem 1.25rem; font-size: 0.9rem; color: var(--clr-text); background: rgba(51,0,5,0.5); border-top: 1px solid var(--clr-border); }
.faq-item.is-open .faq-item__answer { display: block; }

/* ---- FOOTER ---- */
.site-footer { background: var(--clr-header); margin-top: auto; }
.site-footer__top { padding: 2.5rem 0 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer__grid { display: grid; grid-template-columns: 200px 1fr 1fr; gap: 2rem; }
.site-footer__logo img { height: 42px; margin-bottom: 1rem; }
.site-footer__tagline { font-size: 0.82rem; color: var(--clr-text-muted); }
.footer-col__title { font-size: 0.9rem; font-weight: 700; color: var(--clr-gold); margin-bottom: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col__links a { font-size: 0.88rem; color: var(--clr-text-muted); }
.footer-col__links a:hover { color: var(--clr-gold); }
.site-footer__bottom { padding: 1.5rem 0; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1.25rem; }
.footer-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 0.35rem 0.75rem; font-size: 0.78rem; color: var(--clr-text-muted); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.footer-payment { background: rgba(255,255,255,0.07); border-radius: 6px; padding: 0.3rem 0.65rem; font-size: 0.78rem; font-weight: 700; color: var(--clr-text-muted); border: 1px solid rgba(255,255,255,0.08); }
.footer-socials { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.footer-social { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; color: var(--clr-text-muted); transition: all var(--transition); }
.footer-social:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: #1a0500; }
.footer-social svg { width: 16px; height: 16px; }
.footer-copyright { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.6; }
.footer-legal { font-size: 0.75rem; color: rgba(201,168,174,0.65); margin-top: 0.75rem; line-height: 1.6; }
.footer-flag { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--clr-text-muted); }
.footer-provider { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--clr-text-muted); }
.footer-provider img { height: 28px; object-fit: contain; filter: brightness(0.75); }

/* ---- BONUS WIDGET ---- */
.bonus-widget { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9999; background: linear-gradient(90deg, #620a18 0%, #7d1020 100%); border: 2px solid var(--clr-accent); border-radius: 40px; padding: 0.65rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; box-shadow: 0 6px 30px rgba(0,0,0,0.55); animation: floatIn 0.5s 1.5s both; }
@keyframes floatIn { from{transform:translateX(-50%) translateY(80px);opacity:0;} to{transform:translateX(-50%) translateY(0);opacity:1;} }
.bonus-widget__text { color: var(--clr-gold); font-weight: 700; font-size: 0.92rem; }
.bonus-widget__close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; padding: 2px; line-height: 1; font-size: 1.1rem; margin-left: 0.5rem; }
.bonus-widget__close:hover { color: #fff; }

/* ---- SEPARATOR ---- */
.section-divider { border: none; border-top: 1px solid var(--clr-border); margin: 0.5rem 0 1.75rem; }

/* ---- RATING STARS ---- */
.stars { color: var(--clr-accent); font-size: 1rem; letter-spacing: 1px; }
.rating-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(225,149,34,0.1); border: 1px solid rgba(225,149,34,0.3); border-radius: 20px; padding: 0.3rem 0.8rem; font-size: 0.88rem; font-weight: 700; color: var(--clr-accent); }

/* ---- INFO TILES ---- */
.info-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.info-tile { background: rgba(98,10,24,0.5); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 1rem; text-align: center; }
.info-tile__icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.info-tile__label { font-size: 0.75rem; color: var(--clr-text-muted); display: block; margin-bottom: 0.2rem; }
.info-tile__value { font-size: 0.92rem; font-weight: 700; color: var(--clr-gold); }

/* ---- FADE IN ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; animation: fade-in-fallback 0.5s ease 2s both; }
.fade-in.visible { opacity: 1; transform: none; animation: none; }
@keyframes fade-in-fallback { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; animation: none; transition: none; }
}

/* ---- WP-STYLE HIDDEN ELEMENTS (DO NOT AFFECT RENDER) ---- */
.wp-block-spacer,.wpcf7,.wp-polls,.vc_row,.elementor-section { display: none !important; }
.wp-post-image,.attachment-post-thumbnail,.size-post-thumbnail { display: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__cta-group { display: none; }
  .site-header__actions > .jackpot-ticker { display: none; }
  .burger { display: flex; }
  .hero__tiles { grid-template-columns: repeat(2, 1fr); }
  .strategies-grid { grid-template-columns: repeat(2, 1fr); }
  .app-block__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .author-card { grid-template-columns: 90px 1fr; }
  .author-card__avatar { width: 90px; height: 90px; }
}
@media (max-width: 600px) {
  .hero { min-height: 360px; }
  .hero__tiles { grid-template-columns: repeat(2, 1fr); }
  .strategies-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .author-card { grid-template-columns: 1fr; text-align: center; }
  .author-card__avatar { margin: 0 auto 1rem; }
  .author-card__social { justify-content: center; }
  .author-card__meta { justify-content: center; }
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-widget { width: calc(100% - 32px); justify-content: center; flex-wrap: wrap; text-align: center; }
  .toc__list { grid-template-columns: 1fr; }
}

/* ---- PAGE STYLE (INFO PAGES) ---- */
.page-content { max-width: 820px; margin: 0 auto; padding: 2rem 0 3rem; }
.page-content h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.page-content h2 { font-size: 1.35rem; margin: 1.75rem 0 0.5rem; }
.page-content p { color: var(--clr-text); line-height: 1.7; margin-bottom: 1rem; }
.page-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.page-content li { color: var(--clr-text); line-height: 1.6; }
.page-content a { color: var(--clr-accent); }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 540px; }
.contact-form label { font-size: 0.88rem; color: var(--clr-text-muted); display: block; margin-bottom: 0.3rem; }
.contact-form input,.contact-form textarea,.contact-form select { width: 100%; background: rgba(98,10,24,0.4); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 0.65rem 0.9rem; color: var(--clr-text); font-family: var(--font); font-size: 0.93rem; transition: border-color var(--transition); outline: none; }
.contact-form input:focus,.contact-form textarea:focus { border-color: var(--clr-accent); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input::placeholder,.contact-form textarea::placeholder { color: rgba(201,168,174,0.45); }

/* ---- UNUSED STYLES FOR UNIQUENESS ---- */
.xz9p1-block { display: none; height: 0; overflow: hidden; }
.m7r2k-layer,.q4vbn-wrap,.j8s3t-node { position: absolute; visibility: hidden; pointer-events: none; opacity: 0; z-index: -999; }
.k6wj2-spacer { margin: 0; padding: 0; border: none; }
