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

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

:root {
  --c-bg: #1C202D;
  --c-header: #2A3040;
  --c-btn-primary: #63D377;
  --c-btn-secondary: #1C202D;
  --c-text: #E8EAF0;
  --c-text-muted: #9BA3B8;
  --c-accent: #63D377;
  --c-border: rgba(255,255,255,0.08);
  --c-card: #242837;
  --c-card-hover: #2C3147;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.2);
  --transition: 0.25s ease;
  --font: 'Montserrat', sans-serif;
}

html { background: var(--c-bg); scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--c-bg); color: var(--c-text); line-height: 1.6; font-size: 15px; overflow-x: hidden; }

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

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

.x3f9a { display: none; visibility: hidden; height: 0; overflow: hidden; }
.k7m2p { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.wp-content-ref, .wp-nonce-field, .elementor-hidden { display: none !important; }

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

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 22px; border-radius: var(--radius-sm); font-family: var(--font); font-weight: 700; font-size: 13px; cursor: pointer; border: none; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); letter-spacing: 0.4px; white-space: nowrap; line-height: 1; text-transform: uppercase; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--c-btn-primary); color: #0E1118; }
.btn--primary:hover { background: #74e589; box-shadow: 0 6px 20px rgba(99,211,119,0.35); }
.btn--secondary { background: rgba(255,255,255,0.07); color: var(--c-text); border: 1px solid var(--c-border); }
.btn--secondary:hover { background: rgba(255,255,255,0.12); }
.btn--lg { padding: 14px 32px; font-size: 15px; }
.btn--sm { padding: 7px 16px; font-size: 12px; }

.site-header { background: var(--c-header); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--c-border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; flex-wrap: nowrap; }
.header-logo img { height: 44px; width: auto; display: block; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--radius-sm); color: var(--c-text-muted); font-size: 13px; font-weight: 600; transition: color var(--transition), background var(--transition); white-space: nowrap; }
.header-nav a:hover, .header-nav a.active { color: var(--c-text); background: rgba(255,255,255,0.06); }
.header-nav a svg { width: 15px; height: 15px; opacity: 0.75; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-online { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--c-text-muted); white-space: nowrap; margin-right: 4px; }
.header-online .dot { width: 7px; height: 7px; background: var(--c-accent); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.3); } }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,32,45,0.92) 0%, rgba(28,32,45,0.65) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 60px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(99,211,119,0.15); border: 1px solid rgba(99,211,119,0.3); color: var(--c-accent); padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.hero-content h1 span { color: var(--c-accent); }
.hero-content p { font-size: 16px; color: rgba(232,234,240,0.85); margin-bottom: 28px; line-height: 1.7; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-bonus-tag { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 8px 16px; font-size: 13px; color: var(--c-text-muted); margin-top: 20px; }
.hero-bonus-tag strong { color: var(--c-accent); }

.breadcrumbs-wrap { padding: 12px 0; background: rgba(42,48,64,0.5); border-bottom: 1px solid var(--c-border); }
.breadcrumbs { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--c-text-muted); flex-wrap: wrap; }
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--c-text); }

.section { padding: 56px 0; }
.section-title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; margin-bottom: 8px; color: #fff; }
.section-sub { color: var(--c-text-muted); font-size: 14px; margin-bottom: 32px; }
.section-head { margin-bottom: 36px; }

.advantages-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.adv-card { flex: 1 1 220px; background: var(--c-card); border-radius: var(--radius-md); padding: 24px 20px; border: 1px solid var(--c-border); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(99,211,119,0.25); }
.adv-icon { width: 44px; height: 44px; background: rgba(99,211,119,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.adv-icon svg { width: 22px; height: 22px; color: var(--c-accent); fill: currentColor; }
.adv-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.adv-card p { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; }

.mirrors-block { background: var(--c-card); border-radius: var(--radius-lg); border: 1px solid var(--c-border); overflow: hidden; }
.mirrors-header { background: var(--c-header); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.mirrors-header h3 { font-size: 15px; font-weight: 700; color: #fff; }
.mirror-time { font-size: 12px; color: var(--c-accent); display: flex; align-items: center; gap: 6px; }
.mirror-time::before { content: ''; display: block; width: 7px; height: 7px; background: var(--c-accent); border-radius: 50%; animation: pulse 2s infinite; }
.mirror-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mirror-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.mirror-table th { background: rgba(255,255,255,0.04); color: var(--c-text-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 12px 20px; text-align: left; border-bottom: 1px solid var(--c-border); }
.mirror-table td { padding: 14px 20px; border-bottom: 1px solid var(--c-border); font-size: 13px; color: var(--c-text); vertical-align: middle; }
.mirror-table tr:last-child td { border-bottom: none; }
.mirror-table tr:hover td { background: rgba(255,255,255,0.03); }
.mirror-table .status-ok { color: var(--c-accent); font-weight: 700; display: flex; align-items: center; gap: 5px; }
.mirror-table .status-ok::before { content: ''; display: block; width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%; }
.mirror-table .mirror-link { color: var(--c-accent); font-weight: 600; }
.mirror-table .mirror-link:hover { text-decoration: underline; }

.bonuses-grid { display: flex; gap: 20px; flex-wrap: nowrap; overflow: hidden; }
.bonus-card { flex: 0 0 calc(33.333% - 14px); background: var(--c-card); border-radius: var(--radius-lg); border: 1px solid var(--c-border); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bonus-card-top { background: linear-gradient(135deg, #2a3552 0%, #1e2a3f 100%); padding: 24px; text-align: center; position: relative; overflow: hidden; }
.bonus-card-top::before { content: ''; position: absolute; top: -40px; right: -40px; width: 130px; height: 130px; background: rgba(99,211,119,0.08); border-radius: 50%; }
.bonus-card-top .bonus-amount { font-size: 36px; font-weight: 800; color: var(--c-accent); line-height: 1; }
.bonus-card-top .bonus-label { font-size: 13px; color: rgba(232,234,240,0.7); margin-top: 4px; }
.bonus-card-top .bonus-tag { display: inline-block; background: rgba(99,211,119,0.15); color: var(--c-accent); border-radius: 50px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 3px 10px; margin-bottom: 10px; }
.bonus-card-body { padding: 20px; }
.bonus-card-body h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.bonus-card-body p { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 16px; }
.bonus-card-body .btn { width: 100%; }

.slot-block { background: var(--c-card); border-radius: var(--radius-lg); border: 1px solid var(--c-border); padding: 32px; text-align: center; }
.slot-reels { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 24px 0; }
.reel { width: 80px; height: 100px; background: #0E1118; border-radius: var(--radius-sm); border: 2px solid var(--c-border); display: flex; align-items: center; justify-content: center; font-size: 46px; transition: transform 0.1s; overflow: hidden; }
.reel.spinning { animation: reel-spin 0.1s linear infinite; }
@keyframes reel-spin { 0%{ transform:translateY(-4px); } 50%{ transform:translateY(4px); } 100%{ transform:translateY(-4px); } }
.slot-result { min-height: 56px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.slot-result.win { animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp { from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:translateY(0); } }
.slot-win-text { font-size: 18px; font-weight: 800; color: var(--c-accent); }
.slot-win-sub { font-size: 13px; color: var(--c-text-muted); }
.spin-btn { margin-top: 8px; }

.review-block { background: var(--c-card); border-radius: var(--radius-lg); border: 1px solid var(--c-border); padding: 36px; }
.review-author { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--c-border); }
.review-author-avatar { min-width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #2a4060, #1e2a3f); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: var(--c-accent); flex-shrink: 0; }
.review-author-info h4 { font-size: 15px; font-weight: 700; color: #fff; }
.review-author-info p { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
.review-author-info a { color: var(--c-accent); font-size: 12px; }
.review-content { line-height: 1.75; color: var(--c-text); }
.review-content h2, .review-content h3 { color: #fff; margin: 20px 0 10px; font-weight: 700; }
.review-content h2 { font-size: 20px; }
.review-content h3 { font-size: 17px; }
.review-content p { margin-bottom: 14px; color: var(--c-text); }
.review-content ul, .review-content ol { margin: 12px 0 16px 22px; }
.review-content li { margin-bottom: 7px; color: var(--c-text); }
.review-content table { width: 100%; border-collapse: collapse; margin: 18px 0; border: 1px solid var(--c-border); }
.review-content th { background: var(--c-header); color: var(--c-text); font-size: 13px; padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); }
.review-content td { padding: 10px 14px; border: 1px solid var(--c-border); color: var(--c-text); font-size: 13px; }
.review-content tr:hover td { background: rgba(255,255,255,0.03); }
.review-content a { color: var(--c-accent); }
.review-content strong { color: #fff; }
.review-content blockquote { border-left: 3px solid var(--c-accent); padding: 10px 18px; background: rgba(99,211,119,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 16px 0; font-style: italic; color: var(--c-text-muted); }
.review-placeholder { padding: 24px; background: rgba(255,255,255,0.03); border: 2px dashed var(--c-border); border-radius: var(--radius-sm); text-align: center; color: var(--c-text-muted); font-size: 13px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--c-card); border-radius: var(--radius-md); border: 1px solid var(--c-border); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: rgba(99,211,119,0.3); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; gap: 12px; user-select: none; }
.faq-q h3 { font-size: 14px; font-weight: 700; color: #fff; flex: 1; line-height: 1.4; }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(99,211,119,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--transition), background var(--transition); }
.faq-icon svg { width: 12px; height: 12px; color: var(--c-accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(99,211,119,0.25); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--transition); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 0 22px 18px; font-size: 13px; color: var(--c-text-muted); line-height: 1.7; }
.faq-a a { color: var(--c-accent); }

.comments-block { background: var(--c-card); border-radius: var(--radius-lg); border: 1px solid var(--c-border); padding: 32px; }
.comments-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.comment-item { background: rgba(255,255,255,0.03); border-radius: var(--radius-md); border: 1px solid var(--c-border); padding: 18px 20px; }
.comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.comment-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #2a4060, #1e2a3f); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--c-accent); flex-shrink: 0; }
.comment-meta { flex: 1; }
.comment-meta .name { font-size: 14px; font-weight: 700; color: #fff; }
.comment-meta .date { font-size: 11px; color: var(--c-text-muted); margin-top: 1px; }
.comment-stars { display: flex; gap: 2px; }
.comment-stars svg { width: 13px; height: 13px; fill: #F5C542; }
.comment-text { font-size: 13px; color: var(--c-text-muted); line-height: 1.65; }
.comment-form h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--c-text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--c-border); border-radius: var(--radius-sm); color: var(--c-text); font-family: var(--font); font-size: 14px; padding: 12px 16px; transition: border-color var(--transition), background var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--c-accent); background: rgba(99,211,119,0.04); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select option { background: #2A3040; }
.form-rating { display: flex; gap: 8px; }
.form-rating input[type=radio] { display: none; }
.form-rating label { cursor: pointer; font-size: 22px; color: rgba(255,255,255,0.15); transition: color var(--transition); }
.form-rating label:hover, .form-rating label.sel { color: #F5C542; }
.form-notice { font-size: 11px; color: var(--c-text-muted); margin-top: 10px; }

.site-footer { background: var(--c-header); border-top: 1px solid var(--c-border); margin-top: auto; }
.footer-main { padding: 48px 0 32px; }
.footer-grid { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col { flex: 1 1 200px; }
.footer-logo { display: block; margin-bottom: 14px; width: fit-content;}
.footer-logo img { height: 38px; width: auto;}
.footer-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-socials a:hover { background: rgba(99,211,119,0.15); }
.footer-socials svg { width: 16px; height: 16px; fill: var(--c-text-muted); }
.footer-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--c-text-muted); margin-bottom: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 13px; color: var(--c-text-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--c-text); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.footer-badge { background: rgba(255,255,255,0.06); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 11px; font-weight: 700; color: var(--c-text-muted); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.footer-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-divider { border: none; border-top: 1px solid var(--c-border); margin: 0; }
.footer-bottom { padding: 20px 0; display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.footer-flag { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--c-text-muted); flex-shrink: 0; }
.flag-au { width: 24px; height: 16px; display: inline-block; background: linear-gradient(135deg, #00008B 60%, #00008B 100%); border-radius: 2px; position: relative; overflow: hidden; flex-shrink: 0; }
.footer-legal { font-size: 11px; color: var(--c-text-muted); line-height: 1.7; flex: 1; }
.footer-legal a { color: var(--c-text-muted); text-decoration: underline; }
.footer-copyright { font-size: 11px; color: var(--c-text-muted); }

.widget-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 990; background: linear-gradient(90deg, #1C2235 0%, #232940 100%); border-top: 2px solid var(--c-accent); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -4px 24px rgba(0,0,0,0.4); }
.widget-cta-text { display: flex; flex-direction: column; }
.widget-cta-text .wt-label { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.6px; }
.widget-cta-text .wt-value { font-size: 15px; font-weight: 800; color: #fff; margin-top: 1px; }
.widget-cta-text .wt-value span { color: var(--c-accent); }
.widget-cta .widget-close { background: none; border: none; color: var(--c-text-muted); cursor: pointer; padding: 4px; line-height: 1; font-size: 18px; flex-shrink: 0; }
.widget-cta .widget-close:hover { color: var(--c-text); }

.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 899; }
.mobile-nav { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--c-header); z-index: 900; flex-direction: column; padding: 20px; border-left: 1px solid var(--c-border); transform: translateX(100%); transition: transform 0.3s ease; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: flex-end; margin-bottom: 24px; }
.mobile-nav .close-btn { background: none; border: none; color: var(--c-text-muted); cursor: pointer; font-size: 24px; line-height: 1; }
.mobile-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: var(--radius-sm); color: var(--c-text); font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--c-border); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { background: rgba(255,255,255,0.05); }
.mobile-nav a svg { width: 16px; height: 16px; }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--c-border), transparent); margin: 0; }

@media (max-width: 1024px) {
  .header-nav a svg {display: none;}
}
@media (max-width: 900px) {
  .bonuses-grid { gap: 16px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .bonus-card { flex: 0 0 82vw; max-width: 320px; scroll-snap-align: start; }
  .header-nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav-overlay { display: block; visibility: hidden; opacity: 0; transition: opacity 0.3s; }
  .mobile-nav-overlay.visible { visibility: visible; opacity: 1; }
  .advantages-grid { gap: 12px; }
  .adv-card { flex: 1 1 160px; }
}

@media (max-width: 640px) {
  .hero { min-height: 380px; }
  .hero-content { padding: 40px 0; }
  .section { padding: 40px 0; }
  .footer-grid { gap: 28px; }
  .footer-col { flex: 1 1 140px; }
  .widget-cta-text .wt-label { font-size: 10px; }
  .widget-cta-text .wt-value { font-size: 13px; }
  .slot-reels { gap: 6px; }
  .reel { width: 68px; height: 88px; font-size: 38px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .review-block { padding: 20px; }
  .comments-block { padding: 20px; }
}
@media (max-width: 480px) {
  .header-online {display: none;}
  .review-block { padding: 16px; }
  .hero { min-height: 250px; }
  .hero-bonus-tag {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .hero-actions .btn--lg {
    padding: 12px 20px;
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .header-actions .btn--secondary{display: none;}
}

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