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

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

:root {
  --clr-header: #400d00;
  --clr-header-dark: #2a0800;
  --clr-btn-green: #66cc39;
  --clr-btn-green-hover: #55b52e;
  --clr-btn-gold: #f4b911;
  --clr-btn-gold-hover: #d9a30e;
  --clr-bg: #f46c2e;
  --clr-bg-dark: #e05c1e;
  --clr-text-light: #fff8f0;
  --clr-text-dark: #1a0800;
  --clr-card: rgba(64,13,0,0.82);
  --clr-card-border: rgba(244,185,17,0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(64,13,0,0.22);
  --shadow-btn: 0 2px 12px rgba(0,0,0,0.18);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: 'Manrope', sans-serif; font-size: 16px; line-height: 1.6; color: var(--clr-text-light); background: var(--clr-bg); min-height: 100vh; -webkit-font-smoothing: antialiased; }

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

.row { display: flex; flex-wrap: wrap; align-items: center; }
.row--gap { gap: 16px; }

.header { background: var(--clr-header); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.32); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; gap: 12px; }
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 50px; width: auto; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a { color: var(--clr-text-light); text-decoration: none; font-size: 13.5px; font-weight: 600; padding: 6px 11px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.header-nav a:hover { background: rgba(255,255,255,0.12); }
.header-nav svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.jackpot-badge { background: linear-gradient(135deg, #7a1a00, #400d00); border: 1.5px solid var(--clr-btn-gold); border-radius: var(--radius-sm); padding: 5px 12px; font-size: 12px; font-weight: 700; color: var(--clr-btn-gold); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.jackpot-badge span { font-size: 14px; }

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

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px; border-radius: var(--radius-sm); padding: 10px 20px; border: none; cursor: pointer; text-decoration: none; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); box-shadow: var(--shadow-btn); white-space: nowrap; line-height: 1.2; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--clr-btn-gold); color: #1a0800; }
.btn--gold:hover { background: var(--clr-btn-gold-hover); }
.btn--green { background: var(--clr-btn-green); color: #fff; }
.btn--green:hover { background: var(--clr-btn-green-hover); }
.btn--outline { background: transparent; border: 2px solid var(--clr-btn-gold); color: var(--clr-btn-gold); }
.btn--outline:hover { background: var(--clr-btn-gold); color: #1a0800; }
.btn--outline-green { background: transparent; border: 2px solid var(--clr-btn-green); color: var(--clr-btn-green); }
.btn--outline-green:hover { background: var(--clr-btn-green); color: #fff; }
.btn--lg { font-size: 16px; padding: 13px 28px; border-radius: var(--radius-md); }
.btn--sm { font-size: 12px; padding: 7px 14px; }
.btn--pulse { animation: pulse-btn 2s infinite; }
@keyframes pulse-btn { 0%,100% { box-shadow: 0 0 0 0 rgba(244,185,17,0.5); } 50% { box-shadow: 0 0 0 10px rgba(244,185,17,0); } }
.btn--pulse-green { animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 0 0 rgba(102,204,57,0.5); } 50% { box-shadow: 0 0 0 10px rgba(102,204,57,0); } }

.hero { position: relative; background: var(--clr-header) url('/dragon-link-hero.webp') center/cover no-repeat; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(64,13,0,0.92) 45%, rgba(64,13,0,0.35) 100%); }
.hero .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.hero-inner { max-width: 580px; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(244,185,17,0.18); border: 1px solid var(--clr-btn-gold); border-radius: 30px; padding: 4px 14px; font-size: 12px; font-weight: 700; color: var(--clr-btn-gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.hero h1 { font-size: clamp(26px, 4vw, 46px); font-weight: 800; line-height: 1.18; color: #fff; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); text-wrap: balance; }
.hero-desc { font-size: 16px; line-height: 1.65; color: rgba(255,248,240,0.88); margin-bottom: 24px; max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-tiles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.hero-tile { background: rgba(64,13,0,0.75); border: 1px solid rgba(244,185,17,0.3); border-radius: var(--radius-sm); padding: 10px 16px; display: flex; flex-direction: column; min-width: 100px; }
.hero-tile__label { font-size: 11px; font-weight: 600; color: rgba(255,248,240,0.6); text-transform: uppercase; letter-spacing: 0.07em; }
.hero-tile__value { font-size: 15px; font-weight: 700; color: var(--clr-btn-gold); margin-top: 2px; }

.section { padding: 56px 0; }
.section--dark { background: var(--clr-header); }
.section--semi { background: rgba(64,13,0,0.55); }
.section-title { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; text-align: center; margin-bottom: 8px; text-wrap: balance; }
.section-subtitle { font-size: 15px; color: rgba(255,248,240,0.72); text-align: center; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-title--left { text-align: left; }
.section-subtitle--left { text-align: left; margin-left: 0; }

.advantages-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.adv-card { background: var(--clr-card); border: 1px solid var(--clr-card-border); border-radius: var(--radius-md); padding: 24px 20px; flex: 1 1 200px; max-width: 260px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; transition: transform var(--transition), box-shadow var(--transition); }
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(64,13,0,0.45); }
.adv-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(244,185,17,0.15); display: flex; align-items: center; justify-content: center; }
.adv-icon svg { width: 24px; height: 24px; color: var(--clr-btn-gold); }
.adv-title { font-size: 15px; font-weight: 700; color: #fff; }
.adv-desc { font-size: 13px; color: rgba(255,248,240,0.72); line-height: 1.55; }

.demo-wrap { background: var(--clr-card); border: 1px solid var(--clr-card-border); border-radius: var(--radius-lg); overflow: hidden; }
.demo-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #1a0800; display: flex; align-items: center; justify-content: center; }
.demo-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.demo-overlay { position: absolute; inset: 0; background: rgba(64,13,0,0.82); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; cursor: pointer; transition: opacity var(--transition); }
.demo-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-overlay__icon { width: 72px; height: 72px; background: var(--clr-btn-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 0 rgba(244,185,17,0.6); animation: pulse-btn 1.8s infinite; }
.demo-overlay__icon svg { width: 32px; height: 32px; color: #1a0800; }
.demo-overlay__text { font-size: 18px; font-weight: 700; color: #fff; }
.demo-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 16px 20px; }
.demo-info { display: flex; gap: 20px; flex-wrap: wrap; }
.demo-stat { display: flex; flex-direction: column; }
.demo-stat__label { font-size: 11px; color: rgba(255,248,240,0.55); font-weight: 600; text-transform: uppercase; }
.demo-stat__val { font-size: 14px; font-weight: 700; color: var(--clr-btn-gold); }

.strategies-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.strategy-card { background: var(--clr-card); border: 1px solid var(--clr-card-border); border-radius: var(--radius-md); overflow: hidden; flex: 1 1 280px; max-width: 360px; display: flex; flex-direction: column; transition: transform var(--transition); }
.strategy-card:hover { transform: translateY(-4px); }
.strategy-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.strategy-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.strategy-tag { font-size: 11px; font-weight: 700; color: var(--clr-btn-gold); text-transform: uppercase; letter-spacing: 0.07em; }
.strategy-name { font-size: 17px; font-weight: 800; color: #fff; }
.strategy-desc { font-size: 13px; color: rgba(255,248,240,0.72); line-height: 1.55; flex: 1; }
.strategy-footer { padding: 0 18px 18px; }

.winners-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--clr-card-border); }
.winners-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.winners-table thead th { background: var(--clr-header-dark); color: var(--clr-btn-gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--clr-card-border); }
.winners-table tbody tr { border-bottom: 1px solid rgba(244,185,17,0.1); transition: background var(--transition); }
.winners-table tbody tr:last-child { border-bottom: none; }
.winners-table tbody tr:hover { background: rgba(244,185,17,0.06); }
.winners-table td { padding: 11px 16px; font-size: 14px; color: var(--clr-text-light); }
.winners-table td.rank { font-weight: 800; color: var(--clr-btn-gold); width: 40px; }
.winners-table td.prize { font-weight: 700; color: #66cc39; }
.rank-gold { color: #f4b911 !important; }
.rank-silver { color: #c0c0c0 !important; }
.rank-bronze { color: #cd7f32 !important; }
.live-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(102,204,57,0.15); border: 1px solid var(--clr-btn-green); border-radius: 30px; padding: 2px 8px; font-size: 11px; font-weight: 700; color: var(--clr-btn-green); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clr-btn-green); animation: blink 1.2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.games-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.game-card { background: var(--clr-card); border: 1px solid var(--clr-card-border); border-radius: var(--radius-md); overflow: hidden; flex: 1 1 220px; max-width: 270px; display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); }
.game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(64,13,0,0.45); }
.game-card__img { width: 100%; height: 120px; object-fit: cover; background: #2a0800; display: flex; align-items: center; justify-content: center; }
.game-card__img img { width: 100%; height: 100%; object-fit: cover; }
.game-card__body { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.game-card__name { font-size: 15px; font-weight: 700; color: #fff; }
.game-card__desc { font-size: 12.5px; color: rgba(255,248,240,0.65); line-height: 1.5; flex: 1; }
.game-card__btns { display: flex; gap: 8px; padding: 0 16px 14px; }

.review-block { background: var(--clr-card); border: 1px solid var(--clr-card-border); border-radius: var(--radius-lg); padding: 36px; }
.review-content { line-height: 1.7; color: rgba(255,248,240,0.9); }
.review-content h2 { font-size: 24px; font-weight: 800; color: #fff; margin: 28px 0 12px; }
.review-content h3 { font-size: 19px; font-weight: 700; color: var(--clr-btn-gold); margin: 22px 0 10px; }
.review-content h4 { font-size: 16px; font-weight: 700; color: #fff; margin: 16px 0 8px; }
.review-content p { margin-bottom: 14px; font-size: 15px; line-height: 1.7; }
.review-content ul, .review-content ol { margin: 12px 0 14px 22px; }
.review-content ul li, .review-content ol li { margin-bottom: 6px; font-size: 15px; }
.review-content ul li::marker { color: var(--clr-btn-gold); }
.review-content a { color: var(--clr-btn-green); text-decoration: underline; }
.review-content a:hover { color: var(--clr-btn-gold); }
.review-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.review-content table th { background: var(--clr-header-dark); color: var(--clr-btn-gold); padding: 10px 14px; text-align: left; border: 1px solid var(--clr-card-border); }
.review-content table td { padding: 9px 14px; border: 1px solid rgba(244,185,17,0.15); color: rgba(255,248,240,0.85); }
.review-content table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.review-content strong, .review-content b { color: #fff; font-weight: 700; }
.review-content em, .review-content i { color: rgba(255,248,240,0.8); }
.review-content blockquote { border-left: 3px solid var(--clr-btn-gold); padding: 10px 16px; margin: 14px 0; background: rgba(244,185,17,0.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }
.review-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 8px 0; }
.review-content hr { border: none; border-top: 1px solid rgba(244,185,17,0.2); margin: 20px 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-card); border: 1px solid var(--clr-card-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: 15px; color: #fff; gap: 12px; transition: background var(--transition); }
.faq-question:hover { background: rgba(244,185,17,0.07); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 20px 16px; font-size: 14px; line-height: 1.7; color: rgba(255,248,240,0.78); }

.author-card { background: var(--clr-card); border: 1px solid var(--clr-card-border); border-radius: var(--radius-lg); padding: 28px; }
.author-top { display: flex; align-items: flex-start; gap: 22px; flex-wrap: wrap; }
.author-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--clr-btn-gold); flex-shrink: 0; }
.author-meta { flex: 1; min-width: 220px; }
.author-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.author-role { font-size: 13px; color: var(--clr-btn-gold); font-weight: 600; margin-bottom: 6px; }
.author-loc { font-size: 13px; color: rgba(255,248,240,0.65); display: flex; align-items: center; gap: 5px; }
.author-loc svg { width: 14px; height: 14px; }
.author-bio { margin-top: 16px; font-size: 14px; line-height: 1.7; color: rgba(255,248,240,0.78); }
.author-stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.author-stat { display: flex; flex-direction: column; }
.author-stat__label { font-size: 11px; color: rgba(255,248,240,0.5); font-weight: 600; text-transform: uppercase; }
.author-stat__val { font-size: 14px; font-weight: 700; color: var(--clr-btn-gold); }
.author-socials { display: flex; gap: 10px; margin-top: 14px; }
.author-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.author-social:hover { background: var(--clr-btn-gold); }
.author-social svg { width: 16px; height: 16px; color: #fff; }
.author-dates { font-size: 12px; color: rgba(255,248,240,0.45); margin-top: 12px; display: flex; gap: 18px; flex-wrap: wrap; }

.footer { background: var(--clr-header); padding: 48px 0 0; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col { flex: 1 1 200px; }
.footer-logo img { height: 50px;width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,248,240,0.55); line-height: 1.6; }
.footer-col__title { font-size: 13px; font-weight: 700; color: var(--clr-btn-gold); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,248,240,0.65); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--clr-btn-gold); }
.footer-col p.info { font-size: 13px; color: rgba(255,248,240,0.55); line-height: 1.6; margin-bottom: 6px; }
.footer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 8px; }
.footer-logos img { height: 28px; width: auto; object-fit: contain; filter: brightness(0.8) grayscale(0.3); transition: filter var(--transition); }
.footer-logos img:hover { filter: brightness(1) grayscale(0); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.trust-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 5px 12px; font-size: 11px; font-weight: 700; color: rgba(255,248,240,0.65); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.trust-badge svg { width: 14px; height: 14px; }
.footer-legal { font-size: 11px; color: rgba(255,248,240,0.38); line-height: 1.6; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 4px; }
.footer-social { display: flex; gap: 8px; margin-top: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,0.09); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social a:hover { background: var(--clr-btn-gold); }
.footer-social svg { width: 15px; height: 15px; color: #fff; }
.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,248,240,0.55); }
.footer-flag img{height: 20px;width: auto;}

.sticky-widget { position: fixed; bottom: 20px; right: 18px; z-index: 999; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sticky-widget__card { background: var(--clr-header); border: 2px solid var(--clr-btn-gold); border-radius: var(--radius-md); padding: 12px 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); max-width: 180px; text-align: center; }
.sticky-widget__logo img { height: 36px; object-fit: contain; }
.sticky-widget__bonus { font-size: 11px; font-weight: 700; color: var(--clr-btn-gold); line-height: 1.4; }
.sticky-widget__close { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; background: var(--clr-header); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 12px; color: rgba(255,248,240,0.7); }
.sticky-widget { position: relative; } 
.sw-wrapper { position: fixed; bottom: 20px; right: 18px; z-index: 999; }
.sw-wrapper .sticky-widget__close { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; background: var(--clr-header-dark); border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 10px; color: rgba(255,248,240,0.7); line-height: 1; transition: background var(--transition); }
.sw-wrapper .sticky-widget__close:hover { background: #c00; }

.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(64,13,0,0.97); z-index: 998; flex-direction: column; padding: 80px 24px 32px; gap: 8px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--clr-text-light); text-decoration: none; font-size: 16px; font-weight: 600; padding: 12px 16px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 8px; transition: background var(--transition); }
.mobile-nav a:hover { background: rgba(255,255,255,0.1); }
.mobile-nav-cta { display: flex; gap: 10px; padding: 16px 0; margin-top: 8px; }
.mobile-nav-cta .btn { flex: 1; justify-content: center; }
.mobile-nav hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); }

.breadcrumbs { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,248,240,0.55); padding: 12px 0; flex-wrap: wrap; }
.breadcrumbs a { color: rgba(255,248,240,0.55); text-decoration: none; transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--clr-btn-gold); }
.breadcrumbs svg { width: 10px; height: 10px; }

.text-gold { color: var(--clr-btn-gold); }
.text-green { color: var(--clr-btn-green); }
.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mt3 { margin-top: 24px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }
.mb3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

.wp-block-group { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 16px; }
.wp-block-column { flex: 1 1 200px; }
.wp-block-image { max-width: 100%; }
.has-text-align-center { text-align: center; }
.wp-block-heading { margin: 0; }
.entry-content { display: block; }
.post-thumbnail { display: block; }
#wpcf7-f1-p2-o1 { display: none; }
.elementor-section { display: block; }
.elementor-widget-wrap { display: block; }
.yoast-seo-meta-tag { display: none; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .jackpot-badge { display: none; }
  .author-card {padding: 24px;}
}
@media (max-width: 768px) {
  .hero { min-height: 400px; }
  .hero .container { padding-top: 40px; padding-bottom: 40px; }
  .hero-tiles { gap: 8px; }
  .hero-tile { min-width: 80px; padding: 8px 12px; }
  .adv-card { max-width: 100%; flex: 1 1 calc(50% - 8px); }
  .strategy-card { max-width: 100%; }
  .game-card { max-width: calc(50% - 8px); }
  .review-block { padding: 20px; }
  .author-photo { width: 70px; height: 70px; }
  .footer-grid { gap: 20px; }
  .section { padding: 40px 0; }
  .author-card {padding: 20px;}
  .footer-grid {flex-direction: column;}
}
@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .adv-card { flex: 1 1 100%; max-width: 100%; }
  .game-card { max-width: 100%; flex: 1 1 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .demo-bar { flex-direction: column; align-items: flex-start; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .review-block { padding: 16px; }
  .author-card {padding: 16px;}
}
@media (max-width: 420px) {
.header-cta .btn--green{display: none;}
}
.xa9k2m { display: none; }
.bq7r3p { visibility: hidden; }
.lz5n8w::before { content: ''; }
.cj4v1x { opacity: 0; pointer-events: none; }
.wr6t0e { color: transparent; }
.ph2m5a { background: transparent; }
.qd8j7k::after { content: ''; }
.nh3s6f { position: absolute; left: -9999px; }
.vt1p4c { font-size: 0; }
.gk9m2n { width: 0; height: 0; overflow: hidden; }
