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

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;background:#09393f}
body{font-family:'Manrope',sans-serif;background:#09393f;color:#e8f4f2;line-height:1.6;min-height:100vh;overflow-x:hidden}
a{color:#f5ba16;text-decoration:none;transition:color .25s ease}
a:hover{color:#ffd04a}
img{max-width:100%;height:auto;display:block}
button{cursor:pointer;font-family:'Manrope',sans-serif}
ul,ol{list-style:none}

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

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 24px;border-radius:8px;font-weight:700;font-size:14px;border:none;transition:all .25s ease;text-decoration:none;white-space:nowrap;letter-spacing:.3px;position:relative;overflow:hidden}
.btn::after{content:'';position:absolute;inset:0;background:rgba(255,255,255,.08);opacity:0;transition:opacity .2s}
.btn:hover::after{opacity:1}
.btn--play{background:#e46f21;color:#fff;box-shadow:0 4px 18px rgba(228,111,33,.4)}
.btn--play:hover{background:#f07d2e;color:#fff;box-shadow:0 6px 24px rgba(228,111,33,.55);transform:translateY(-1px)}
.btn--bonus{background:#f5ba16;color:#09393f;box-shadow:0 4px 18px rgba(245,186,22,.35)}
.btn--bonus:hover{background:#ffd04a;color:#09393f;box-shadow:0 6px 24px rgba(245,186,22,.5);transform:translateY(-1px)}
.btn--demo{background:transparent;color:#f5ba16;border:2px solid #f5ba16}
.btn--demo:hover{background:rgba(245,186,22,.1);color:#ffd04a;border-color:#ffd04a}
.btn--outline{background:transparent;color:#e8f4f2;border:2px solid rgba(232,244,242,.3)}
.btn--outline:hover{border-color:#f5ba16;color:#f5ba16}
.btn--sm{padding:8px 16px;font-size:13px}
.btn--lg{padding:15px 32px;font-size:16px}

.header{background:#255b52;position:sticky;top:0;z-index:1000;box-shadow:0 2px 20px rgba(0,0,0,.35)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.header-logo img{height:50px;width:auto}
.header-nav{display:flex;align-items:center;gap:4px}
.header-nav__item{position:relative}
.header-nav__link{display:flex;align-items:center;gap:6px;padding:8px 12px;color:#e8f4f2;font-size:14px;font-weight:500;border-radius:6px;transition:all .2s;white-space:nowrap}
.header-nav__link:hover{background:rgba(245,186,22,.12);color:#f5ba16}
.header-nav__link svg{width:16px;height:16px;flex-shrink:0}
.header-actions{display:flex;align-items:center;gap:8px;flex-shrink:0}
.burger{display:none;flex-direction:column;gap:5px;background:none;border:none;padding:6px;cursor:pointer;z-index:1100}
.burger span{display:block;width:24px;height:2px;background:#e8f4f2;border-radius:2px;transition:all .3s ease}
.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)}

.lang-picker{position:relative}
.lang-picker__btn{display:flex;align-items:center;gap:6px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);color:#e8f4f2;padding:7px 12px;border-radius:6px;font-size:13px;font-weight:600;cursor:pointer;transition:all .2s}
.lang-picker__btn:hover{background:rgba(255,255,255,.14)}
.lang-picker__dropdown{position:absolute;top:calc(100% + 6px);right:0;background:#1a5048;border:1px solid rgba(255,255,255,.12);border-radius:8px;overflow:hidden;min-width:120px;box-shadow:0 8px 24px rgba(0,0,0,.35);opacity:0;visibility:hidden;transform:translateY(-6px);transition:all .2s}
.lang-picker:hover .lang-picker__dropdown,.lang-picker__dropdown.open{opacity:1;visibility:visible;transform:translateY(0)}
.lang-picker__option{display:flex;align-items:center;gap:8px;padding:9px 14px;font-size:13px;color:#e8f4f2;cursor:pointer;transition:background .15s}
.lang-picker__option:hover{background:rgba(245,186,22,.1)}

.hero{position:relative;overflow:hidden;padding:80px 0 60px;background:#09393f}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center top}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(9,57,63,.92) 0%,rgba(37,91,82,.75) 50%,rgba(9,57,63,.88) 100%)}
.hero-inner{position:relative;z-index:1;display:flex;align-items:center;gap:40px}
.hero-content{flex:1;max-width:620px}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:rgba(245,186,22,.15);border:1px solid rgba(245,186,22,.3);color:#f5ba16;padding:6px 14px;border-radius:20px;font-size:12px;font-weight:700;letter-spacing:.8px;text-transform:uppercase;margin-bottom:20px}
.hero h1{font-size:clamp(2rem,4.5vw,3.2rem);font-weight:800;line-height:1.15;color:#fff;margin-bottom:18px;text-shadow:0 2px 20px rgba(0,0,0,.4)}
.hero h1 span{color:#f5ba16}
.hero-desc{font-size:1.05rem;color:rgba(232,244,242,.85);line-height:1.65;margin-bottom:28px;max-width:520px}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:36px}
.hero-tiles{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.hero-tile{background:rgba(37,91,82,.55);border:1px solid rgba(245,186,22,.2);border-radius:10px;padding:14px 12px;text-align:center;backdrop-filter:blur(6px)}
.hero-tile__val{font-size:1.3rem;font-weight:800;color:#f5ba16;line-height:1.2;margin-bottom:4px}
.hero-tile__lbl{font-size:11px;color:rgba(232,244,242,.65);text-transform:uppercase;letter-spacing:.6px;font-weight:600}

.section{padding:70px 0}
.section--alt{background:rgba(37,91,82,.18)}
.section-title{font-size:clamp(1.5rem,3vw,2.1rem);font-weight:800;color:#fff;margin-bottom:8px;line-height:1.25}
.section-subtitle{font-size:1rem;color:rgba(232,244,242,.65);margin-bottom:40px;max-width:580px}
.section-header{margin-bottom:40px}
.section-header--center{text-align:center}
.section-header--center .section-subtitle{margin-left:auto;margin-right:auto}

.jackpots-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.jackpot-card{border-radius:14px;padding:28px 20px;text-align:center;position:relative;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease}
.jackpot-card:hover{transform:translateY(-4px)}
.jackpot-card--bronze{background:linear-gradient(145deg,#2a1a0a,#3d2510);border:2px solid rgba(205,127,50,.5)}
.jackpot-card--bronze:hover{box-shadow:0 12px 40px rgba(205,127,50,.25)}
.jackpot-card--silver{background:linear-gradient(145deg,#131a22,#1e2a35);border:2px solid rgba(170,180,195,.5)}
.jackpot-card--silver:hover{box-shadow:0 12px 40px rgba(170,180,195,.2)}
.jackpot-card--gold{background:linear-gradient(145deg,#2a1f00,#3d2e00);border:2px solid rgba(245,186,22,.6)}
.jackpot-card--gold:hover{box-shadow:0 12px 40px rgba(245,186,22,.3)}
.jackpot-card__badge{display:inline-block;padding:4px 12px;border-radius:20px;font-size:11px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;margin-bottom:12px}
.jackpot-card--bronze .jackpot-card__badge{background:rgba(205,127,50,.2);color:#cd7f32;border:1px solid rgba(205,127,50,.4)}
.jackpot-card--silver .jackpot-card__badge{background:rgba(170,180,195,.15);color:#aab4c3;border:1px solid rgba(170,180,195,.35)}
.jackpot-card--gold .jackpot-card__badge{background:rgba(245,186,22,.15);color:#f5ba16;border:1px solid rgba(245,186,22,.4)}
.jackpot-card__amount{font-size:2.2rem;font-weight:800;margin-bottom:6px;line-height:1}
.jackpot-card--bronze .jackpot-card__amount{color:#e8983a}
.jackpot-card--silver .jackpot-card__amount{color:#c8d4e0}
.jackpot-card--gold .jackpot-card__amount{color:#f5ba16}
.jackpot-card__name{font-size:1rem;font-weight:700;color:#fff;margin-bottom:18px}
.jackpot-card__players{border-top:1px solid rgba(255,255,255,.08);padding-top:16px}
.jackpot-card__players-title{font-size:11px;text-transform:uppercase;letter-spacing:.7px;color:rgba(232,244,242,.5);margin-bottom:10px;font-weight:600}
.jackpot-player{display:flex;align-items:center;justify-content:space-between;padding:6px 0;font-size:13px}
.jackpot-player__nick{color:rgba(232,244,242,.8);font-weight:500}
.jackpot-player__win{font-weight:700}
.jackpot-card--bronze .jackpot-player__win{color:#e8983a}
.jackpot-card--silver .jackpot-player__win{color:#c8d4e0}
.jackpot-card--gold .jackpot-player__win{color:#f5ba16}

.game-details-table{width:100%;border-collapse:collapse;overflow:hidden;border-radius:12px;overflow-x:auto;}
.game-details-table thead th{background:#255b52;color:#fff;padding:14px 18px;font-size:13px;font-weight:700;text-align:left;white-space:nowrap}
.game-details-table tbody tr{border-bottom:1px solid rgba(255,255,255,.06);transition:background .15s}
.game-details-table tbody tr:hover{background:rgba(37,91,82,.3)}
.game-details-table tbody td{padding:13px 18px;font-size:14px;color:#e8f4f2;vertical-align:middle;white-space:nowrap}
.game-details-table tbody td:first-child{color:rgba(232,244,242,.65);font-weight:500;min-width:160px}
.game-details-table tbody td .td-icon{display:inline-flex;align-items:center;gap:8px}
.game-details-table tbody td .td-icon svg{width:16px;height:16px;color:#f5ba16;flex-shrink:0}
.table-wrap{overflow-x:auto;border-radius:12px;border:1px solid rgba(255,255,255,.08)}

.demo-block{background:rgba(37,91,82,.25);border:1px solid rgba(245,186,22,.15);border-radius:16px;overflow:hidden}
.demo-block__header{padding:24px 28px 20px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;border-bottom:1px solid rgba(255,255,255,.07)}
.demo-block__title{font-size:1.25rem;font-weight:700;color:#fff}
.demo-block__iframe-wrap{position:relative;background:#000;aspect-ratio:16/9}
.demo-block__iframe-wrap iframe{width:100%;height:100%;border:none;display:block}
.demo-block__footer{padding:18px 28px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;background:rgba(0,0,0,.2)}
.demo-block__note{font-size:13px;color:rgba(232,244,242,.5)}

.content-review{background:rgba(37,91,82,.2);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:36px;line-height:1.7}
.content-review h2,.content-review h3,.content-review h4{color:#fff;margin:24px 0 12px;line-height:1.3}
.content-review h2{font-size:1.5rem;font-weight:800}
.content-review h3{font-size:1.2rem;font-weight:700}
.content-review p{color:rgba(232,244,242,.85);margin-bottom:14px;line-height:1.7}
.content-review ul,.content-review ol{margin:12px 0 16px 20px;display:flex;flex-direction:column;gap:6px}
.content-review ul li{list-style:disc;color:rgba(232,244,242,.8);padding-left:4px;line-height:1.6}
.content-review ol li{list-style:decimal;color:rgba(232,244,242,.8);padding-left:4px;line-height:1.6}
.content-review a{color:#f5ba16}
.content-review strong,.content-review b{color:#fff;font-weight:700}
.content-review table{width:100%;border-collapse:collapse;margin:20px 0;border-radius:8px;overflow:hidden}
.content-review table th{background:#255b52;color:#fff;padding:12px 16px;text-align:left;font-size:14px;font-weight:700}
.content-review table td{padding:11px 16px;border-bottom:1px solid rgba(255,255,255,.07);font-size:14px;color:rgba(232,244,242,.85)}
.content-review table tr:hover td{background:rgba(37,91,82,.3)}
.content-review blockquote{border-left:3px solid #f5ba16;padding:12px 20px;background:rgba(245,186,22,.08);border-radius:0 8px 8px 0;margin:16px 0;color:rgba(232,244,242,.85);font-style:italic}

.faq-list{display:flex;flex-direction:column;gap:10px}
.faq-item{background:rgba(37,91,82,.3);border:1px solid rgba(255,255,255,.08);border-radius:10px;overflow:hidden;transition:border-color .2s}
.faq-item.open{border-color:rgba(245,186,22,.3)}
.faq-question{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px 22px;cursor:pointer;font-size:15px;font-weight:600;color:#fff;user-select:none;transition:background .2s}
.faq-question:hover{background:rgba(37,91,82,.4)}
.faq-question svg{width:18px;height:18px;color:#f5ba16;flex-shrink:0;transition:transform .3s ease}
.faq-item.open .faq-question svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-item.open .faq-answer{max-height:400px}
.faq-answer__inner{padding:0 22px 18px;font-size:14px;color:rgba(232,244,242,.8);line-height:1.65}

.author-card{display:flex;gap:28px;align-items:flex-start;background:rgba(37,91,82,.25);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:28px}
.author-card__photo{width:100px;height:100px;border-radius:50%;object-fit:cover;border:3px solid rgba(245,186,22,.4);flex-shrink:0}
.author-card__info{flex:1}
.author-card__name{font-size:1.2rem;font-weight:800;color:#fff;margin-bottom:4px}
.author-card__role{font-size:13px;color:#f5ba16;font-weight:600;margin-bottom:10px}
.author-card__meta{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:12px;font-size:13px;color:rgba(232,244,242,.6)}
.author-card__meta span{display:flex;align-items:center;gap:5px}
.author-card__meta svg{width:14px;height:14px;color:#f5ba16}
.author-card__bio{font-size:14px;color:rgba(232,244,242,.8);line-height:1.65;margin-bottom:14px}
.author-card__links{display:flex;flex-wrap:wrap;gap:8px}
.author-card__link{display:inline-flex;align-items:center;gap:6px;padding:6px 14px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:6px;font-size:13px;color:#e8f4f2;transition:all .2s}
.author-card__link:hover{background:rgba(245,186,22,.12);border-color:#f5ba16;color:#f5ba16}
.author-card__link svg{width:14px;height:14px}
.author-dates{display:flex;gap:20px;margin-top:12px;font-size:12px;color:rgba(232,244,242,.45)}

.similar-games{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.game-card{background:rgba(37,91,82,.3);border:1px solid rgba(255,255,255,.08);border-radius:12px;overflow:hidden;transition:all .25s ease}
.game-card:hover{transform:translateY(-3px);border-color:rgba(245,186,22,.25);box-shadow:0 8px 30px rgba(0,0,0,.25)}
.game-card__img{width:100%;aspect-ratio:3/2;object-fit:cover}
.game-card__body{padding:16px}
.game-card__name{font-size:1rem;font-weight:700;color:#fff;margin-bottom:6px}
.game-card__desc{font-size:13px;color:rgba(232,244,242,.65);line-height:1.5;margin-bottom:14px}
.game-card__actions{display:flex;gap:8px}

.footer{background:#255b52;padding:48px 0 24px}
.footer-top{display:grid;grid-template-columns:280px 1fr 1fr;gap:32px;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-logo{margin-bottom:14px}
.footer-logo-link {display: block;width: fit-content;}
.footer-logo img{height:50px;width:auto}
.footer-desc{font-size:13px;color:rgba(232,244,242,.6);line-height:1.6;margin-bottom:16px}
.footer-contact{font-size:13px;color:rgba(232,244,242,.7);display:flex;align-items:center;gap:6px;margin-bottom:8px}
.footer-contact svg{width:14px;height:14px;color:#f5ba16;flex-shrink:0}
.footer-col__title{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:rgba(232,244,242,.5);margin-bottom:14px}
.footer-nav{display:flex;flex-direction:column;gap:8px}
.footer-nav a{font-size:14px;color:rgba(232,244,242,.75);transition:color .2s}
.footer-nav a:hover{color:#f5ba16}
.footer-bottom{padding-top:24px}
.footer-badges{display:flex;flex-wrap:wrap;align-items:center;gap:16px;margin-bottom:20px}
.footer-payments{display:flex;flex-wrap:wrap;align-items:center;gap:12px;margin-bottom:16px}
.payment-badge,.trust-badge{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:6px;padding:6px 14px;font-size:12px;font-weight:700;color:rgba(232,244,242,.7);white-space:nowrap}
.trust-badge--18{background:#e46f21;color:#fff;border-color:#e46f21;font-size:14px;font-weight:800;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:6px;padding:0;flex-shrink:0}
.footer-social{display:flex;gap:10px;margin-bottom:16px}
.footer-social a{width:36px;height:36px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);border-radius:8px;display:flex;align-items:center;justify-content:center;color:#e8f4f2;transition:all .2s}
.footer-social a:hover{background:#f5ba16;border-color:#f5ba16;color:#09393f}
.footer-social a svg{width:16px;height:16px}
.footer-provflag{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:16px}
.footer-flag{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(232,244,242,.6)}
.footer-flag img{width:24px;height:16px;object-fit:cover;border-radius:2px}
.footer-legal{font-size:12px;color:rgba(232,244,242,.4);line-height:1.6}
.footer-copyright{font-size:13px;color:rgba(232,244,242,.55);margin-bottom:8px}

.widget-casino{position:fixed;right:20px;bottom:20px;z-index:999;width:300px}
.widget-casino__toggle{background:#255b52;border:1px solid rgba(245,186,22,.4);border-radius:10px;padding:12px 16px;display:flex;align-items:center;justify-content:space-between;cursor:pointer;color:#fff;font-size:14px;font-weight:700;gap:8px;box-shadow:0 4px 20px rgba(0,0,0,.3)}
.widget-casino__toggle span{display:flex;align-items:center;gap:8px}
.widget-casino__toggle svg{width:16px;height:16px;color:#f5ba16;transition:transform .3s}
.widget-casino.open .widget-casino__toggle svg.arrow{transform:rotate(180deg)}
.widget-casino__panel{max-height:0;overflow:hidden;transition:max-height .35s ease}
.widget-casino.open .widget-casino__panel{max-height:600px}
.widget-casino__inner{background:#1a4f47;border:1px solid rgba(245,186,22,.25);border-top:none;border-radius:0 0 10px 10px;overflow:hidden}
.widget-casino-item{padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.06);display:flex;align-items:center;gap:12px}
.widget-casino-item:last-child{border-bottom:none}
.widget-casino-item__rank{font-size:1.1rem;font-weight:800;color:#f5ba16;min-width:22px;text-align:center}
.widget-casino-item__info{flex:1}
.widget-casino-item__name{font-size:13px;font-weight:700;color:#fff;margin-bottom:2px}
.widget-casino-item__bonus{font-size:11px;color:rgba(232,244,242,.6)}
.widget-casino-item__btn{padding:6px 12px;font-size:12px}

.mobile-only{display:none;margin-top: auto;
    padding-top: 20px;
    gap: 8px;
    flex-wrap: wrap;}
.desktop-only{display:block}

.breadcrumbs{padding:14px 0;font-size:13px;color:rgba(232,244,242,.5)}
.breadcrumbs a{color:rgba(232,244,242,.5);transition:color .2s}
.breadcrumbs a:hover{color:#f5ba16}
.breadcrumbs span{margin:0 6px}

.rating-stars{display:flex;gap:2px}
.rating-stars svg{width:16px;height:16px;fill:#f5ba16}

.badge{display:inline-flex;align-items:center;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;letter-spacing:.5px;text-transform:uppercase}
.badge--green{background:rgba(39,174,96,.15);color:#27ae60;border:1px solid rgba(39,174,96,.3)}
.badge--gold{background:rgba(245,186,22,.12);color:#f5ba16;border:1px solid rgba(245,186,22,.3)}
.badge--orange{background:rgba(228,111,33,.12);color:#e46f21;border:1px solid rgba(228,111,33,.3)}

.scroll-to-top{position:fixed;bottom:100px;right:20px;width:42px;height:42px;background:#255b52;border:1px solid rgba(245,186,22,.3);border-radius:8px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#f5ba16;opacity:0;visibility:hidden;transition:all .3s;z-index:998;box-shadow:0 4px 14px rgba(0,0,0,.25)}
.scroll-to-top.visible{opacity:1;visibility:visible}
.scroll-to-top:hover{background:#f5ba16;color:#09393f;transform:translateY(-2px)}
.scroll-to-top svg{width:18px;height:18px}

.xp5d3k9{display:none}.wp7b2m1{display:none}.zt8n4r6{visibility:hidden;height:0;overflow:hidden}

@media(max-width:1024px){
  .hero-tiles{grid-template-columns:repeat(2,1fr)}
  .jackpots-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .similar-games{grid-template-columns:repeat(2,1fr)}
  .content-review {padding: 32px;}
}
@media(max-width:900px){
.lang-picker {display: none;}
.content-review {padding: 28px;}
}
@media(max-width:768px){
  .header-nav{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:#09393f;z-index:1050;flex-direction:column;align-items:flex-start;justify-content:flex-start;padding:80px 24px 24px;overflow-y:auto;gap:2px}
  .header-nav.open{display:flex}
  .header-nav__link{font-size:15px;padding:12px 16px;width:100%;border-radius:8px}
  .burger{display:flex}
  .hero{padding:50px 0 40px}
  .hero-inner{flex-direction:column;gap:28px}
  .hero-tiles{grid-template-columns:repeat(2,1fr)}
  .section{padding:48px 0}
  .footer-top{grid-template-columns:1fr}
  .similar-games{grid-template-columns:1fr}
  .author-card{flex-direction:column;align-items:center;text-align:center}
  .author-card__meta{justify-content:center}
  .author-card__links{justify-content:center}
  .author-dates{justify-content:center}
  .demo-block__header{flex-direction:column;align-items:flex-start}
  .demo-block__footer{flex-direction:column}
  .widget-casino{right:12px;bottom:12px;width:280px}
  .mobile-only{display:flex}
  .desktop-only{display:none}
  .content-review {padding: 24px;}
}
@media(max-width:480px){
  .hero-tiles{grid-template-columns:repeat(2,1fr);gap:8px}
  .hero h1{font-size:1.8rem}
  .hero-tile__val{font-size:1.1rem}
  .jackpot-card__amount{font-size:1.8rem}
  .container{padding:0 14px}
  .content-review {padding: 20px;}
}
@media(max-width:400px){
.content-review {padding: 16px;}
}

@keyframes fadeInUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
@keyframes jackpotPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.04)}}
@keyframes shimmer{0%{background-position:-200% center}100%{background-position:200% center}}
.animate-fadeup{animation:fadeInUp .6s ease both}
.jackpot-card--gold .jackpot-card__amount{animation:jackpotPulse 2.5s ease-in-out infinite}

.section-divider{width:100%;height:60px;background:transparent;position:relative;overflow:hidden}
.section-divider::before{content:'';position:absolute;inset:0;background:linear-gradient(to bottom,transparent,rgba(37,91,82,.12))}
