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

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

:root {
  --clr-dark: #183306;
  --clr-dark2: #1e3e08;
  --clr-bg: #79a525;
  --clr-bg2: #6c9420;
  --clr-btn-orange: #ee5b07;
  --clr-btn-orange2: #d44e04;
  --clr-btn-gold: #edc61d;
  --clr-btn-gold2: #d4af0f;
  --clr-white: #ffffff;
  --clr-light: #f5f9ec;
  --clr-text: #1a2a0a;
  --clr-text-light: #f0f5e0;
  --clr-border: #4a7a10;
  --clr-card: #e8f2c8;
  --clr-card2: #d4e8a0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 18px rgba(24,51,6,0.18);
  --shadow-lg: 0 8px 32px rgba(24,51,6,0.25);
  --font-head: 'Alfa Slab One', serif;
  --font-body: 'Open Sans', sans-serif;
  --trans: 0.22s ease;
}

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

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.2; color: var(--clr-dark); }
h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { margin-bottom: 0.85em; }
a { color: var(--clr-btn-orange); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--clr-btn-gold); }
img { max-width: 100%; height: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 26px; border-radius: var(--radius-sm); font-family: var(--font-body);
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--clr-btn-gold); color: var(--clr-dark); }
.btn--gold:hover { background: var(--clr-btn-gold2); color: var(--clr-dark); }
.btn--orange { background: var(--clr-btn-orange); color: var(--clr-white); }
.btn--orange:hover { background: var(--clr-btn-orange2); color: var(--clr-white); }
.btn--dark { background: var(--clr-dark); color: var(--clr-white); }
.btn--dark:hover { background: var(--clr-dark2); color: var(--clr-white); }
.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: var(--clr-dark); }
.btn--lg { padding: 14px 36px; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: 0.82rem; }
.btn--pulse { animation: pulse-anim 2.2s infinite; }
@keyframes pulse-anim { 0%,100%{box-shadow:0 0 0 0 rgba(237,198,29,0.55)} 50%{box-shadow:0 0 0 10px rgba(237,198,29,0)} }

.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { color: var(--clr-dark); }
.section-title p {  max-width: 640px; margin: 0.5rem auto 0; }

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

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

.site-header {
  background: var(--clr-dark);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 10px 18px; max-width: 1200px; margin: 0 auto;
}
.header-logo img { height: 50px; width: auto; display: block; }
.header-jackpot {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.07); border-radius: var(--radius-sm);
  padding: 5px 14px; border: 1px solid rgba(237,198,29,0.3);
}
.header-jackpot__label { font-size: 0.68rem; color: var(--clr-btn-gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.header-jackpot__amount { font-family: var(--font-head); font-size: 1.2rem; color: var(--clr-btn-gold); }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { color: var(--clr-text-light); font-size: 0.88rem; font-weight: 600; padding: 6px 11px; border-radius: var(--radius-sm); transition: background var(--trans), color var(--trans); }
.header-nav a:hover { background: rgba(255,255,255,0.1); color: var(--clr-btn-gold); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-actions .btn { font-size: 0.85rem; padding: 9px 18px; }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; background: rgba(255,255,255,0.08); border: none; border-radius: var(--radius-sm); cursor: pointer; padding: 7px; }
.burger span { display: block; height: 2px; background: var(--clr-white); border-radius: 2px; transition: all var(--trans); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; background: var(--clr-dark2); border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.open { display: block; animation: slideDown 0.22s ease; }
@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 2px; padding: 12px 18px 6px; }
.mobile-menu__nav a { color: var(--clr-text-light); font-size: 0.93rem; font-weight: 600; padding: 10px 12px; border-radius: var(--radius-sm); display: block; }
.mobile-menu__nav a:hover { background: rgba(255,255,255,0.07); color: var(--clr-btn-gold); }
.mobile-menu__actions { display: flex; gap: 10px; padding: 10px 18px 14px; flex-wrap: wrap; }

.hero {
  position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: center;
  background: var(--clr-dark) center/cover no-repeat;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,51,6,0.88) 0%, rgba(24,51,6,0.55) 60%, rgba(24,51,6,0.15) 100%); z-index: 1; }
.hero-img { position: absolute; right: 0; top: 0; height: 100%; width: 55%; object-fit: cover; z-index: 0; }
.hero-content { position: relative; z-index: 2; padding: 60px 0; max-width: 560px; }
.hero-content .eyebrow { color: var(--clr-btn-gold); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.hero-content h1 { color: var(--clr-white); margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 24px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(237,198,29,0.3); border-radius: var(--radius-sm); padding: 8px 14px; }
.hero-badge__val { font-family: var(--font-head); font-size: 1.1rem; color: var(--clr-btn-gold); }
.hero-badge__lbl { font-size: 0.68rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

.main-content { padding: 40px 0 60px; }
.content-block {
  background: var(--clr-light); border-radius: var(--radius-lg);
  padding: 32px 30px; margin-bottom: 28px; box-shadow: var(--shadow);
}
.content-block--dark { background: var(--clr-dark); color: var(--clr-text-light); }
.content-block--dark h2, .content-block--dark h3 { color: var(--clr-btn-gold); }
.content-block--green { background: var(--clr-dark2); color: var(--clr-text-light); }
.content-block--green h2, .content-block--green h3 { color: var(--clr-btn-gold); }

.game-details-table { width: 100%; border-collapse: collapse; margin: 0 auto; }
.game-details-table tr { border-bottom: 1px solid var(--clr-border); transition: background var(--trans); }
.game-details-table tr:last-child { border-bottom: none; }
.game-details-table tr:hover { background: rgba(121,165,37,0.12); }
.game-details-table td { padding: 10px 14px; font-size: 0.92rem; text-align: left; vertical-align: middle; }
.game-details-table td:first-child { font-weight: 700; color: var(--clr-dark2); width: 46%; display: flex; align-items: center; gap: 9px; }
.game-details-table td:last-child { color: var(--clr-text); }
.gdt-icon { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; background: var(--clr-dark); border-radius: 50%; flex-shrink: 0; }
.gdt-icon svg { width: 13px; height: 13px; fill: var(--clr-btn-gold); }
.table-scroll { overflow-x: auto; border-radius: var(--radius-md); border: 2px solid var(--clr-border); }

.app-info-grid { display: flex; gap: 24px; flex-wrap: wrap; }
.app-info-table-wrap { flex: 1; min-width: 260px; }
.app-info-table { width: 100%; border-collapse: collapse; border: 2px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; }
.app-info-table td { padding: 9px 14px; border-bottom: 1px solid var(--clr-border); font-size: 0.9rem; text-align: left; }
.app-info-table td:first-child { font-weight: 700;  }
.app-info-table tr:last-child td { border-bottom: none; }
.app-download-btns { display: flex; flex-direction: column; gap: 12px; justify-content: center; flex-shrink: 0; min-width: 180px; }
.app-dl-btn {border: 2px solid var(--clr-border); display: flex; align-items: center; gap: 12px; background: var(--clr-dark); color: var(--clr-white); border-radius: var(--radius-md); padding: 11px 18px; text-decoration: none; transition: background var(--trans), transform var(--trans); }
.app-dl-btn:hover { background: var(--clr-dark2); transform: translateX(3px); color: var(--clr-btn-gold); }
.app-dl-btn svg { width: 28px; height: 28px; flex-shrink: 0; fill: var(--clr-btn-gold); }
.app-dl-btn__text { display: flex; flex-direction: column; }
.app-dl-btn__sub { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.7; }
.app-dl-btn__name { font-weight: 700; font-size: 0.95rem; }

.demo-container { position: relative; border-radius: var(--radius-md); overflow: hidden; background: #000; }
.demo-container iframe { display: block; width: 100%; height: 520px; border: none; }
.demo-overlay-btn { display: flex; justify-content: center; margin-top: 18px; }
@media (max-width: 600px) { .demo-container iframe { height: 300px; } }

.bonuses-grid { display: flex; gap: 20px; }
.bonus-card {
  flex: 1; background: var(--clr-dark); border-radius: var(--radius-lg);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 14px;
  border: 2px solid rgba(237,198,29,0.25); box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  min-width: 220px;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bonus-card__logo img { height: 60px;width: auto; object-fit: contain; border-radius: 10px;}
.bonus-card__name { font-family: var(--font-head); font-size: 1.1rem; color: var(--clr-btn-gold); }
.bonus-card__offer { font-size: 1.4rem; font-family: var(--font-head); color: var(--clr-white); line-height: 1.2; }
.bonus-card__desc { font-size: 0.83rem; color: rgba(255,255,255,0.7); flex: 1; }
.bonus-card__terms { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.bonus-card .btn { align-self: flex-start; }
.bonuses-slider-wrap { position: relative; overflow: hidden; }
.bonuses-slider-nav { display: none; justify-content: center; gap: 8px; margin-top: 14px; }
.slider-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: background var(--trans); }
.slider-dot.active { background: var(--clr-btn-gold); }

.review-body { font-size: 0.95rem; line-height: 1.7; color: var(--clr-text); }
.review-author-card { display: flex; align-items: center; gap: 16px; background: var(--clr-card); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 20px; border-left: 4px solid var(--clr-btn-orange); }
.review-author-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--clr-btn-gold); }
.review-author-card__info h4 { font-size: 1rem; color: var(--clr-dark); }
.review-author-card__info p { font-size: 0.8rem; color: #555; margin-bottom: 0; }
.review-author-card__info a { color: var(--clr-btn-orange); font-size: 0.78rem; }
.review-body h2 { color: var(--clr-dark); margin: 1.2em 0 0.5em; }
.review-body h3 { color: var(--clr-dark2); margin: 1em 0 0.4em; }
.review-body p { margin-bottom: 0.9em; }
.review-body ul, .review-body ol { margin: 0.6em 0 1em 1.4em; }
.review-body ul li, .review-body ol li { margin-bottom: 0.4em; }
.review-body table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.review-body table th, .review-body table td { border: 1px solid var(--clr-border); padding: 9px 12px; text-align: left; }
.review-body table th { background: var(--clr-dark); color: var(--clr-btn-gold); font-weight: 700; }
.review-body table tr:nth-child(even) td { background: rgba(121,165,37,0.1); }
.review-body a { color: var(--clr-btn-orange); }
.review-body strong { color: var(--clr-dark); }
.review-body blockquote { border-left: 4px solid var(--clr-btn-gold); padding: 10px 18px; margin: 1em 0; background: var(--clr-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-card); border-radius: var(--radius-md); border: 1px solid var(--clr-border); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 16px 20px;
  background: none; border: none; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-body); font-size: 0.97rem; font-weight: 700;
  color: var(--clr-dark); transition: background var(--trans);
}
.faq-question:hover { background: rgba(121,165,37,0.15); }
.faq-question[aria-expanded="true"] { background: var(--clr-dark); color: var(--clr-btn-gold); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform var(--trans); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-icon svg { width: 22px; height: 22px; }
.faq-answer { display: none; padding: 10px 20px 16px; font-size: 0.9rem; color: var(--clr-text); line-height: 1.65; }
.faq-answer.open { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(-4px)} to{opacity:1;transform:translateY(0)} }

.reviews-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.review-card {
  flex: 1; min-width: 250px; max-width: 360px;
  background: var(--clr-card); border-radius: var(--radius-lg);
  padding: 22px 20px; box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
  transition: transform var(--trans);
}
.review-card:hover { transform: translateY(-3px); }
.review-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.review-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--clr-btn-gold); flex-shrink: 0; }
.review-card__name { font-weight: 700; font-size: 0.97rem; color: var(--clr-dark); }
.review-card__stars { color: var(--clr-btn-gold); font-size: 0.9rem; letter-spacing: 1px; }
.review-card__date { font-size: 0.73rem; color: #666; }
.review-card__text { font-size: 0.86rem; color: var(--clr-text); line-height: 1.6; }

.review-form-wrap { background: var(--clr-dark); border-radius: var(--radius-lg); padding: 30px; margin-top: 30px; }
.review-form-wrap h3 { color: var(--clr-btn-gold); margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 0.85rem; font-weight: 700; color: var(--clr-text-light); }
.form-field input, .form-field textarea {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); padding: 11px 14px; font-family: var(--font-body);
  font-size: 0.92rem; color: var(--clr-white); transition: border-color var(--trans), background var(--trans);
  outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--clr-btn-gold); background: rgba(255,255,255,0.12); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-star-select { display: flex; gap: 6px; }
.form-star-select input[type="radio"] { display: none; }
.form-star-select label { font-size: 1.5rem; cursor: pointer; color: rgba(255,255,255,0.3); transition: color var(--trans); }
.form-star-select label:hover, .form-star-select label.active { color: var(--clr-btn-gold); }
.form-success { display: none; background: rgba(121,165,37,0.2); border: 1.5px solid var(--clr-bg); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--clr-btn-gold); font-weight: 700; margin-top: 14px; text-align: center; }
.form-success.show { display: block; animation: fadeIn 0.3s ease; }

.site-footer { background: var(--clr-dark); color: var(--clr-text-light); padding: 48px 0 0; margin-top: 40px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 36px; padding-bottom: 32px; }
.footer-col { flex: 1; min-width: 180px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.95rem; color: var(--clr-btn-gold); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.84rem; transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--clr-btn-gold); }
.footer-logo img { height: 50px;width: auto; margin-bottom: 14px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); transition: background var(--trans), border-color var(--trans); }
.footer-social a:hover { background: var(--clr-btn-orange); border-color: var(--clr-btn-orange); }
.footer-social a svg { width: 17px; height: 17px; fill: var(--clr-white); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.footer-payment-logo { height: 28px; width: auto; background: rgba(255,255,255,0.9); border-radius: 5px; padding: 3px 8px; }
.footer-trust-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 8px; }
.footer-trust-logos a { opacity: 0.7; transition: opacity var(--trans); }
.footer-trust-logos a:hover { opacity: 1; }
.footer-trust-logos img { height: 26px; width: auto; }
.footer-trust-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); padding: 4px 10px; font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 700; display: flex; align-items: center; gap: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer-bottom__copy { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom__legal { font-size: 0.73rem; color: rgba(255,255,255,0.4); max-width: 640px; line-height: 1.5; }
.footer-flag { width: 26px; height: 18px; border-radius: 3px; }
.footer-age-badge { background: var(--clr-btn-orange); color: var(--clr-white); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; flex-shrink: 0; }
.provider-logo {height: 40px;width: auto;}

.sticky-widget {
  position: fixed; bottom: 22px; right: 22px; z-index: 999;
  background: var(--clr-dark); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px 18px;
  border: 2px solid var(--clr-btn-gold); max-width: 230px;
  animation: slideInRight 0.4s ease; transition: transform var(--trans);
}
.sticky-widget:hover { transform: scale(1.02); }
@keyframes slideInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
.sticky-widget__close { position: absolute; top: 6px; right: 8px; background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; line-height: 1; padding: 4px; }
.sticky-widget__close:hover { color: var(--clr-white); }
.sticky-widget__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.sticky-widget__logo { height: 40px;width: auto; object-fit: contain; display: block; }
.sticky-widget__offer { display: flex; flex-direction: column; gap: 2px; }
.sticky-widget__bonus { font-family: var(--font-head); font-size: 0.92rem; color: var(--clr-btn-gold); line-height: 1.2; }
.sticky-widget__sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.sticky-widget .btn { align-self: stretch; text-align: center; }

.breadcrumb-nav { margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 7px; padding: 8px 0; font-size: 0.8rem; list-style: none; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 7px; color: #555; }
.breadcrumb li + li::before { content: '/'; color: rgba(0,0,0,0.3); }
.breadcrumb a { color: var(--clr-dark2); }
.breadcrumb a:hover { color: var(--clr-btn-orange); }

.info-content-block { background: var(--clr-light); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); }
.info-content-block h1 { margin-bottom: 1rem; }
.info-body h2 { margin: 1.4em 0 0.5em; color: var(--clr-dark2); }
.info-body p { margin-bottom: 0.9em; font-size: 0.95rem; line-height: 1.7; }
.info-body ul, .info-body ol { margin: 0.5em 0 1em 1.5em; }
.info-body ul li, .info-body ol li { margin-bottom: 0.4em; font-size: 0.93rem; }
.info-body a { color: var(--clr-btn-orange); }
.info-body table { width: 100%; border-collapse: collapse; margin: 1em 0; border: 2px solid var(--clr-border); border-radius: var(--radius-sm); overflow: hidden; }
.info-body table th, .info-body table td { border: 1px solid var(--clr-border); padding: 9px 14px; text-align: left; font-size: 0.9rem; }
.info-body table th { background: var(--clr-dark); color: var(--clr-btn-gold); }

.wp-caption, .gallery-caption, .bypostauthor, .sticky { display: none; }
.alignleft, .alignright, .aligncenter { display: none; }
.screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; }
.widget, .widget-area, .wp-block-group { display: none; }

.fade-in { animation: fadeIn 0.5s ease both; }
.slide-up { animation: slideUp 0.5s ease both; }
@keyframes slideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
.text-gold { color: var(--clr-btn-gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
@media (max-width: 1024px) {
.header-jackpot {display: none;}
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .header-jackpot { display: none; }
  .hero-img { width: 100%; opacity: 0.35; }
  .bonuses-grid { flex-direction: column; }
  .bonuses-slider-nav { display: flex; }
  .reviews-grid .review-card { max-width: 100%; }
  .footer-inner { gap: 24px; }
}
@media (max-width: 640px) {
  .hero-content { padding: 40px 0 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .content-block { padding: 22px 16px; }
  .app-info-grid { flex-direction: column; }
  .app-download-btns { flex-direction: row; flex-wrap: wrap; min-width: unset; }
  .app-dl-btn { flex: 1; min-width: 140px; }
  .review-form-wrap { padding: 20px 16px; }
  .sticky-widget { bottom: 12px; right: 12px; max-width: 190px; }
  .hero-badges { gap: 10px; }
  .game-details-table td:first-child { width: 50%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner {flex-direction: column;}
}
@media (max-width: 400px) {
.header-actions .btn--orange{display: none;}
}