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

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

:root {
  --c-dark: #1B2B38;
  --c-dark2: #1B2C3D;
  --c-accent: #DBFC4F;
  --c-light: #e8edf2;
  --c-text: #d4dde6;
  --c-text-muted: #8fa3b3;
  --c-card: #1e3245;
  --c-card2: #243b4e;
  --c-border: #2d4a5e;
  --c-success: #4caf7d;
  --c-danger: #e05a5a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.32);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; background: var(--c-dark); }
body { font-family: 'Roboto', sans-serif; background: var(--c-dark); color: var(--c-text); line-height: 1.6; font-size: 15px; min-height: 100vh; }

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; color: #fff; line-height: 1.3; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

a { color: var(--c-accent); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.82; }

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

p { line-height: 1.72; margin-bottom: 0.8em; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

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

.row { display: flex; flex-wrap: wrap; align-items: center; }
.row.mt1 { margin-top: 8px; }
.col { flex: 1 1 0; }

.box { border-radius: var(--radius); }
.box--card { background: var(--c-card); border: 1px solid var(--c-border); box-shadow: var(--shadow); }

.section { padding: 56px 0; }
.section--sm { padding: 32px 0; }
.section-title { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; margin-bottom: 32px; text-align: center; color: #fff; }
.section-title span { color: var(--c-accent); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition); text-decoration: none; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); opacity: 1; }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--c-card2); color: var(--c-accent); border: 1.5px solid var(--c-accent); }
.btn--yellow { background: var(--c-accent); color: #1B2B38; }
.btn--yellow:hover { background: #c8ec30; }
.btn--red { background: var(--c-dark2); color: #fff; border: 1.5px solid var(--c-border); }
.btn--bonus { background: var(--c-accent); color: #1B2B38; }
.btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn--lg { padding: 16px 40px; font-size: 1rem; border-radius: 10px; }
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--full { width: 100%; }

.header { background: var(--c-dark2); border-bottom: 1px solid var(--c-border); position: sticky; top: 0; z-index: 100; padding: 0; }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; flex-wrap: nowrap; }
.logo img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.header-nav a { color: var(--c-text); font-size: 0.82rem; font-family: 'Montserrat', sans-serif; font-weight: 500; padding: 8px 10px; border-radius: 6px; transition: background var(--transition), color var(--transition); white-space: nowrap; }
.header-nav a:hover, .header-nav a.active { background: rgba(219,252,79,0.1); color: var(--c-accent); }
.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-online { font-size: 0.72rem; color: var(--c-text-muted); white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.header-online .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c-success); animation: pulse 1.6s infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; cursor: pointer; border: none; background: none; padding: 4px; flex-shrink: 0; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero { position: relative; background: linear-gradient(135deg, #0d1e2b 0%, #1B2C3D 60%, #1a3347 100%); min-height: 440px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-image: url('/gama-casino-hero.webp'); background-size: cover; background-position: center; opacity: 0.18; }
.hero__content { position: relative; z-index: 2; padding: 60px 0; }
.hero__badge { display: inline-block; background: rgba(219,252,79,0.15); border: 1px solid var(--c-accent); color: var(--c-accent); font-size: 0.78rem; font-family: 'Montserrat', sans-serif; font-weight: 600; padding: 4px 14px; border-radius: 40px; margin-bottom: 18px; letter-spacing: 0.04em; }
.hero h1 { margin-bottom: 16px; max-width: 680px; }
.hero__desc { font-size: 1.05rem; color: var(--c-text); margin-bottom: 32px; max-width: 560px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.breadcrumbs { padding: 12px 0; }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li { font-size: 0.78rem; color: var(--c-text-muted); display: flex; align-items: center; gap: 6px; }
.breadcrumbs li::after { content: '›'; color: var(--c-text-muted); }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs li a { color: var(--c-text-muted); }
.breadcrumbs li a:hover { color: var(--c-accent); }
.breadcrumbs li:last-child { color: var(--c-text); }

.pros-cons { display: flex; gap: 20px; margin-bottom: 32px; }
.pros-cons__col { flex: 1 1 45%; background: var(--c-card); border-radius: var(--radius); border: 1px solid var(--c-border); padding: 24px; }
.pros-cons__col h3 { margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pros-cons__col--pros h3 { color: var(--c-success); }
.pros-cons__col--cons h3 { color: var(--c-danger); }
.pros-cons__list { list-style: none; padding: 0; }
.pros-cons__list li { padding: 7px 0; border-bottom: 1px solid var(--c-border); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.pros-cons__list li:last-child { border-bottom: none; }
.pros-cons__list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.pros-cons__col--pros .pros-cons__list li::before { background: var(--c-success); }
.pros-cons__col--cons .pros-cons__list li::before { background: var(--c-danger); }

.bonuses-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.bonus-card { flex: 1 1 280px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: transform var(--transition), box-shadow var(--transition); }
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.bonus-card__icon { font-size: 2.2rem; }
.bonus-card__title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; }
.bonus-card__amount { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--c-accent); }
.bonus-card__desc { font-size: 0.85rem; color: var(--c-text-muted); flex: 1; }

.wheel-block { background: var(--c-card2); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 40px 24px; text-align: center; }
.wheel-block h2 { margin-bottom: 8px; }
.wheel-block p { color: var(--c-text-muted); margin-bottom: 28px; }
.wheel-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
#wheel-canvas { border-radius: 50%; box-shadow: 0 0 32px rgba(219,252,79,0.18); }
.wheel-result { display: none; background: rgba(219,252,79,0.08); border: 1px solid var(--c-accent); border-radius: var(--radius); padding: 20px 28px; text-align: center; }
.wheel-result h3 { color: var(--c-accent); margin-bottom: 8px; }

.reviews-grid { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.review-card { flex: 1 1 260px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 24px; }
.review-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--c-card2); }
.review-card__name { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #fff; font-size: 0.9rem; }
.review-card__stars { color: #f5c842; font-size: 1rem; margin-top: 2px; }
.review-card__text { font-size: 0.88rem; color: var(--c-text); line-height: 1.6; }

.review-form { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px 24px; max-width: 560px; }
.review-form h3 { margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; color: var(--c-text-muted); font-family: 'Montserrat', sans-serif; font-weight: 500; }
.form-group input, .form-group textarea { background: var(--c-dark2); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 12px 14px; color: #fff; font-family: 'Roboto', sans-serif; font-size: 0.9rem; transition: border-color var(--transition); resize: vertical; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--c-accent); }
.form-group textarea { min-height: 100px; }
.form-success { display: none; background: rgba(76,175,125,0.12); border: 1px solid var(--c-success); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--c-success); font-size: 0.9rem; margin-top: 12px; }

.author-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px 24px; display: flex; gap: 24px; align-items: flex-start; }
.author-block__photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--c-accent); }
.author-block__info h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; margin-bottom: 6px; }
.author-block__bio { font-size: 0.88rem; color: var(--c-text-muted); margin-bottom: 10px; }
.author-block__links { display: flex; gap: 10px; }
.author-block__links a { font-size: 0.8rem; color: var(--c-accent); border: 1px solid var(--c-accent); border-radius: 4px; padding: 3px 10px; }

.footer { background: var(--c-dark2); border-top: 1px solid var(--c-border); padding: 40px 0 24px; }
.footer__inner { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 32px; }
.footer__col { flex: 1 1 200px; }
.footer__logo a { display: block;width: fit-content; }
.footer__logo img { height: 38px;width: auto; margin-bottom: 14px; }
.footer__tagline { font-size: 0.82rem; color: var(--c-text-muted); }
.footer__title { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #fff; font-size: 0.88rem; margin-bottom: 14px; }
.footer__links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: var(--c-text-muted); font-size: 0.84rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--c-accent); }
.footer__payments { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.payment-badge { background: var(--c-card); border: 1px solid var(--c-border); border-radius: 6px; padding: 5px 12px; font-size: 0.72rem; color: var(--c-text-muted); font-family: 'Montserrat', sans-serif; font-weight: 600; }
.provider-logo { display: block; height: 44px; width: auto; max-width: 100%; object-fit: contain; margin: 0 auto; }
.provider-card a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.provider-card { flex: 1 1 140px; max-width: 180px; min-height: 64px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 16px 14px; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--c-text); display: flex; align-items: center; justify-content: center; transition: border-color var(--transition), color var(--transition), transform var(--transition); }
.provider-card:hover { border-color: var(--c-accent); color: var(--c-accent); transform: translateY(-2px); }
.provider-badge { background: var(--c-card2); border: 1px solid var(--c-border); border-radius: 6px; padding: 4px 10px; font-size: 0.7rem; color: var(--c-text-muted); }
.footer__providers { display: flex; flex-wrap: wrap; gap: 6px; }
.footer__bottom { border-top: 1px solid var(--c-border); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer__legal { font-size: 0.75rem; color: var(--c-text-muted); max-width: 700px; line-height: 1.5; }
.footer__copyright { font-size: 0.78rem; color: var(--c-text-muted); }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__legal-links a { font-size: 0.76rem; color: var(--c-text-muted); border-bottom: 1px dotted var(--c-border); }
.footer__legal-links a:hover { color: var(--c-accent); }

.widget-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--c-dark2); border-top: 2px solid var(--c-accent); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; box-shadow: 0 -4px 24px rgba(0,0,0,0.5); }
.widget-sticky__text { font-size: 0.82rem; color: var(--c-text); font-family: 'Montserrat', sans-serif; }
.widget-sticky__text strong { color: var(--c-accent); }
.widget-sticky__close { background: none; border: none; color: var(--c-text-muted); font-size: 1.2rem; cursor: pointer; padding: 4px 8px; flex-shrink: 0; }

.toc { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; }
.toc__title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; margin-bottom: 14px; font-size: 1rem; }
.toc__list { list-style: none; padding: 0; counter-reset: toc; }
.toc__list li { counter-increment: toc; padding: 6px 0; border-bottom: 1px solid var(--c-border); font-size: 0.88rem; display: flex; align-items: center; gap: 10px; }
.toc__list li:last-child { border-bottom: none; }
.toc__list li::before { content: counter(toc); background: var(--c-accent); color: #1B2B38; font-size: 0.72rem; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toc__list a { color: var(--c-text); }
.toc__list a:hover { color: var(--c-accent); }

.download-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 32px; }
.download-btn { display: flex; align-items: center; gap: 14px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 16px 24px; min-width: 200px; transition: transform var(--transition), border-color var(--transition); }
.download-btn:hover { transform: translateY(-3px); border-color: var(--c-accent); }
.download-btn__icon { font-size: 2rem; }
.download-btn__info { display: flex; flex-direction: column; }
.download-btn__sub { font-size: 0.72rem; color: var(--c-text-muted); }
.download-btn__name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 1rem; }

.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.specs-table th { background: var(--c-card2); color: var(--c-text-muted); font-size: 0.78rem; font-weight: 600; padding: 10px 16px; text-align: left; border: 1px solid var(--c-border); }
.specs-table td { padding: 10px 16px; border: 1px solid var(--c-border); font-size: 0.88rem; background: var(--c-card); vertical-align: top; }
.specs-table tr:nth-child(even) td { background: var(--c-card2); }
.specs-table td:first-child { color: var(--c-text-muted); font-weight: 500; width: 40%; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }

.faq { margin-bottom: 32px; }
.faq-item { border: 1px solid var(--c-border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.faq-item__q { width: 100%; background: var(--c-card); border: none; color: #fff; padding: 16px 20px; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.92rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background var(--transition); }
.faq-item__q:hover { background: var(--c-card2); }
.faq-item__q .icon { width: 20px; height: 20px; border-radius: 50%; background: var(--c-dark2); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; transition: transform var(--transition); }
.faq-item.open .faq-item__q .icon { transform: rotate(45deg); }
.faq-item__a { background: var(--c-card2); padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 0.88rem; color: var(--c-text-muted); }
.faq-item.open .faq-item__a { max-height: 400px; padding: 16px 20px; }

.bonus-get { background: linear-gradient(135deg, #1e3245, #243b4e); border: 2px solid var(--c-accent); border-radius: var(--radius); padding: 36px 32px; text-align: center; margin-bottom: 32px; }
.bonus-get__amount { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); color: var(--c-accent); margin: 8px 0; }
.bonus-get__desc { color: var(--c-text-muted); margin-bottom: 24px; }

.bonus-table { width: 100%; border-collapse: collapse; }
.bonus-table th { background: var(--c-card2); padding: 12px 16px; text-align: left; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--c-text-muted); border: 1px solid var(--c-border); }
.bonus-table td { padding: 12px 16px; border: 1px solid var(--c-border); font-size: 0.88rem; background: var(--c-card); }
.bonus-table tr:nth-child(even) td { background: var(--c-card2); }
.bonus-table .highlight { color: var(--c-accent); font-weight: 700; }

.promo-block { background: linear-gradient(135deg, #1a3347, #1B2C3D); border: 2px dashed var(--c-accent); border-radius: var(--radius); padding: 36px; text-align: center; margin-bottom: 32px; }
.promo-block__label { font-size: 0.78rem; color: var(--c-text-muted); font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.promo-code { display: inline-flex; align-items: center; gap: 16px; background: var(--c-dark); border: 1px solid var(--c-accent); border-radius: var(--radius-sm); padding: 14px 24px; margin: 16px 0; }
.promo-code__text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--c-accent); letter-spacing: 0.12em; }
.promo-code__copy { background: var(--c-accent); border: none; color: #1B2B38; padding: 8px 16px; border-radius: 6px; font-weight: 700; cursor: pointer; font-size: 0.82rem; transition: opacity var(--transition); }
.promo-code__copy:hover { opacity: 0.85; }

.reg-methods { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.reg-method-card { flex: 1 1 180px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: border-color var(--transition); }
.reg-method-card:hover { border-color: var(--c-accent); }
.reg-method-card__icon { font-size: 2rem; margin-bottom: 10px; }
.reg-method-card__title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 0.9rem; margin-bottom: 6px; }
.reg-method-card__desc { font-size: 0.78rem; color: var(--c-text-muted); }

.casino-info-table { width: 100%; border-collapse: collapse; }
.casino-info-table th { background: var(--c-dark2); color: var(--c-accent); font-family: 'Montserrat', sans-serif; font-size: 0.8rem; padding: 10px 16px; text-align: left; border: 1px solid var(--c-border); }
.casino-info-table td { padding: 10px 16px; border: 1px solid var(--c-border); font-size: 0.88rem; vertical-align: middle; }
.casino-info-table tr:nth-child(odd) td { background: var(--c-card); }
.casino-info-table tr:nth-child(even) td { background: var(--c-card2); }
.casino-info-table td:first-child { color: var(--c-text-muted); font-weight: 500; width: 42%; }

.mirror-table { width: 100%; border-collapse: collapse; }
.mirror-table th { background: var(--c-dark2); color: var(--c-accent); font-family: 'Montserrat', sans-serif; font-size: 0.8rem; padding: 10px 16px; text-align: left; border: 1px solid var(--c-border); }
.mirror-table td { padding: 10px 16px; border: 1px solid var(--c-border); font-size: 0.86rem; background: var(--c-card); }
.mirror-table tr:nth-child(even) td { background: var(--c-card2); }
.mirror-time { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--c-accent); font-size: 0.9rem; }
.mirror-status { display: inline-flex; align-items: center; gap: 5px; }
.mirror-status--ok::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--c-success); display: inline-block; }

.safety-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.safety-card { flex: 1 1 200px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 20px 18px; }
.safety-card__icon { font-size: 1.6rem; margin-bottom: 10px; }
.safety-card__title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 0.9rem; margin-bottom: 6px; }
.safety-card__desc { font-size: 0.8rem; color: var(--c-text-muted); }

.jackpot-block { background: linear-gradient(135deg, #1a3347, #0d1e2b); border: 2px solid #ffd700; border-radius: var(--radius); padding: 36px 32px; text-align: center; margin-bottom: 32px; position: relative; overflow: hidden; }
.jackpot-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(255,215,0,0.08) 0%, transparent 70%); }
.jackpot-block__label { font-size: 0.78rem; color: #ffd700; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.jackpot-amount { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 6vw, 4rem); color: #ffd700; text-shadow: 0 0 32px rgba(255,215,0,0.4); margin: 10px 0; position: relative; z-index: 1; }

.demo-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.demo-block iframe { width: 100%; height: 520px; border: none; display: block; }

.providers-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.provider-card { flex: 1 1 130px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 14px; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--c-text); transition: border-color var(--transition), color var(--transition); }
.provider-card:hover { border-color: var(--c-accent); color: var(--c-accent); }

.content-area { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 32px 28px; margin-bottom: 32px; }
.content-area h2, .content-area h3 { color: #fff; margin: 1.4em 0 0.6em; }
.content-area h2:first-child, .content-area h3:first-child { margin-top: 0; }
.content-area p { color: var(--c-text); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1em; }
.content-area ul, .content-area ol { margin: 0.8em 0 1em 1.4em; }
.content-area li { color: var(--c-text); font-size: 0.9rem; margin-bottom: 0.4em; }
.content-area table { width: 100%; border-collapse: collapse; margin: 1.2em 0; overflow-x: auto; display: block; }
.content-area table th { background: var(--c-dark2); color: var(--c-accent); padding: 9px 14px; border: 1px solid var(--c-border); text-align: left; font-size: 0.82rem; }
.content-area table td { padding: 9px 14px; border: 1px solid var(--c-border); font-size: 0.86rem; }
.content-area a { color: var(--c-accent); }
.content-area strong { color: #fff; }

.page-spacing { padding-bottom: 80px; }

.mobile-bonuses-slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--c-border) transparent; }
.mobile-bonuses-slider .bonus-card { scroll-snap-align: start; min-width: 260px; flex: 0 0 260px; }

.tag-badge { display: inline-block; background: rgba(219,252,79,0.12); border: 1px solid rgba(219,252,79,0.3); color: var(--c-accent); font-size: 0.72rem; font-weight: 700; padding: 2px 10px; border-radius: 40px; font-family: 'Montserrat', sans-serif; }

.section-gap { margin-bottom: 40px; }

@media (max-width: 1024px) {
  .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--c-dark2); flex-direction: column; align-items: flex-start; padding: 16px; gap: 4px; border-bottom: 1px solid var(--c-border); z-index: 99; }
  .header-nav.active { display: flex; }
  .header-nav a { width: 100%; padding: 10px 14px; font-size: 0.9rem; }
  .header { position: sticky; }
  .header .container { position: relative; }
  .burger { display: flex; }
  .header-buttons .btn--red { display: none; }
}

@media (max-width: 768px) {
  .pros-cons { flex-direction: column; }
  .hero { min-height: 340px; }
  .hero__content { padding: 40px 0; }
  .bonuses-grid { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .bonuses-grid .bonus-card { flex: 0 0 260px; scroll-snap-align: start; }
  .reviews-grid { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .reviews-grid .review-card { flex: 0 0 260px; }
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .footer__inner { flex-direction: column; gap: 24px; }
  .widget-sticky { flex-direction: column; gap: 10px; text-align: center; }
  .reg-methods { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .reg-method-card { flex: 0 0 160px; }
  .safety-grid { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .safety-card { flex: 0 0 180px; }
  .demo-block iframe { height: 320px; }
  .providers-grid { gap: 8px; }
  .providers-grid { gap: 10px; }
.provider-card { flex: 1 1 100px; max-width: none; min-height: 56px; padding: 12px 10px; }
  .content-area { padding: 20px 16px; }
  .bonus-get { padding: 24px 16px; }
  .promo-block { padding: 24px 16px; }
  .jackpot-block { padding: 24px 16px; }
  .download-btns { flex-direction: column; align-items: center; }
  .section { padding: 36px 0; }
}

@media (max-width: 480px) {
  .header .container { gap: 8px; }
  .header-buttons { gap: 6px; }
  .header-buttons .btn { padding: 8px 14px; font-size: 0.78rem; }
  .hero h1 { font-size: 1.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .logo img {height: 32px;}
  .btn {white-space: wrap;}
  .btn--lg {padding: 10px 30px;}
  .providers-grid { gap: 8px; overflow-x: auto; flex-wrap: nowrap; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.provider-card { flex: 0 0 120px; scroll-snap-align: start; min-height: 52px; padding: 10px 8px; }

}
@media (max-width: 420px) {
.header-buttons .btn--green {display: none;}
}
.wp-image-placeholder { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.entry-content { display: none; }
.wpcf7-response-output { display: none; }
#wpadminbar { display: none !important; }

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

.x7k2m9a { display: none; }
.b3q8r1f { visibility: hidden; }
.z5p4n2c { color: transparent; }
.j9m3k7w { pointer-events: none; }
.r2t6x8v { font-size: 0; }
.gm-casino-block { max-width: 100%; overflow: hidden; }
.gm-promo-inner { position: relative; }
.gm-widget-box { z-index: 9; }
.gm-section-wrap { box-sizing: border-box; }
.gm-nav-item:hover { text-decoration: none; }
.gm-bonus-item { cursor: pointer; }
.gm-card-wrap { position: relative; overflow: hidden; }
.gm-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.gm-badge-new { background: #DBFC4F; color: #1B2B38; font-size: 0.7rem; padding: 2px 7px; border-radius: 20px; font-weight: 700; letter-spacing: .04em; display: none; }
.gm-hidden-anchor { display: block; width: 0; height: 0; overflow: hidden; }
.wp-block-group { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 1.5em; }
.wp-block-column { flex: 1 1 0; }
.has-background { padding: 1.25em; }
.is-layout-flex { display: flex; }
.wp-site-blocks { padding-top: 0; padding-bottom: 0; }
.wp-container-core-group-1 { gap: var(--wp--preset--spacing--50, 1.5rem); }
.site-header { display: none; }
.elementor-widget { display: none; }
.elementor-element { display: none; }
.yoast-seo-score { display: none; }
.wc-block-grid { display: none; }
