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

:root {
    --c-bg: #101010;
    --c-nav: #1a1b1d;
    --c-green: #29a90a;
    --c-green-hover: #22920a;
    --c-black-btn: #000000;
    --c-black-btn-hover: #1a1a1a;
    --c-text: #e8e8e8;
    --c-text-muted: #9a9a9a;
    --c-border: #2a2b2d;
    --c-card: #1e1f22;
    --c-card-hover: #232427;
    --c-accent: #29a90a;
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--c-green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-green-hover);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 0.75rem;
}

p:last-child {
    margin-bottom: 0;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.gx9f2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.btn--green {
    background: var(--c-green);
    color: #fff;
}

.btn--green:hover {
    background: var(--c-green-hover);
    color: #fff;
}

.btn--black {
    background: var(--c-black-btn);
    color: #fff;
    border: 1px solid #333;
}

.btn--black:hover {
    background: var(--c-black-btn-hover);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--c-green);
    border: 1.5px solid var(--c-green);
}

.btn--outline:hover {
    background: var(--c-green);
    color: #fff;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 7px 16px;
    font-size: 0.85rem;
}

.btn--pulse {
    animation: btn-pulse 2.2s infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(41, 169, 10, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(41, 169, 10, 0);
    }
}

.section-gap {
    padding: 56px 0;
}

.section-gap-sm {
    padding: 32px 0;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 8px;
    text-balance: balance;
}

.section-subtitle {
    color: var(--c-text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(41, 169, 10, 0.15);
    color: var(--c-green);
    border: 1px solid rgba(41, 169, 10, 0.35);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* HEADER */
.site-header {
    background: var(--c-nav);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: nowrap;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 44px;
    width: auto;
}

.header-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.header-logo .logo-text span {
    color: var(--c-green);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: var(--c-text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: currentColor;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.jackpot-badge {
    background: rgba(41, 169, 10, 0.12);
    border: 1px solid rgba(41, 169, 10, 0.4);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.jackpot-badge .jackpot-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--c-text-muted);
}

.jackpot-badge .jackpot-val {
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--c-green);
    font-variant-numeric: tabular-nums;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: transparent;
    border-radius: 6px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

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

/*  */
.hero-section {
    background: var(--c-nav);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/aviator-banner.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.22;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 27, 29, 0.97) 0%, rgba(16, 16, 16, 0.85) 55%, rgba(16, 16, 16, 0.5) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 64px 0 56px;
}

.hero-content {
    max-width: 680px;
}

.hero-content h1 {
    margin-bottom: 16px;
    color: #fff;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.hero-tile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 14px 12px;
    text-align: center;
    transition: background var(--transition), border-color var(--transition);
}

.hero-tile:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(41, 169, 10, 0.3);
}

.hero-tile .tile-val {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--c-green);
    display: block;
}

.hero-tile .tile-label {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* BREADCRUMBS */
.breadcrumbs-bar {
    background: var(--c-nav);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
    font-size: 0.82rem;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    flex-wrap: wrap;
    color: var(--c-text-muted);
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
}

.breadcrumbs-list li::after {
    content: '›';
    margin: 0 8px;
    opacity: 0.5;
}

.breadcrumbs-list li:last-child::after {
    display: none;
}

.breadcrumbs-list a {
    color: var(--c-text-muted);
    transition: color var(--transition);
}

.breadcrumbs-list a:hover {
    color: var(--c-green);
}

.breadcrumbs-list li:last-child span {
    color: var(--c-text);
    font-weight: 500;
}

/* CONTENT BLOCKS */
.block-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

/* DEMO GAME */
.demo-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.demo-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* MOBILE BLOCK */
.mobile-block-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 28px;
    align-items: start;
}

.phone-frame {
    position: relative;
    max-width: 200px;
    margin: 0 auto;
}

.phone-frame-inner {
    background: var(--c-nav);
    border: 3px solid #333;
    border-radius: 32px;
    padding: 16px 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 2px #222;
}

.phone-frame-inner img {
    border-radius: 18px;
    width: 100%;
}

.phone-frame::before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 3px;
    margin: 0 auto 10px;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.app-table th, .app-table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
}

.app-table thead th {
    background: rgba(41, 169, 10, 0.12);
    color: var(--c-green);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.app-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.app-table tbody td:first-child {
    color: var(--c-text-muted);
    font-weight: 500;
}

.app-table tbody td:last-child {
    color: #fff;
    font-weight: 600;
}

.app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-card-hover);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 10px 18px;
    color: var(--c-text);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition);
    text-decoration: none;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--c-green);
    color: #fff;
}

.app-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* VIDEO */
.video-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.video-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* BONUSES */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-green);
}

.bonus-card:hover {
    border-color: rgba(41, 169, 10, 0.5);
    transform: translateY(-3px);
}

.bonus-card .casino-name {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.bonus-card .bonus-amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.bonus-card .bonus-desc {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    flex: 1;
}

.bonus-card .bonus-terms {
    font-size: 0.75rem;
    color: #666;
}

.bonus-card .casino-rating {
    display: flex;
    gap: 3px;
    align-items: center;
}

.bonus-card .casino-rating svg {
    width: 14px;
    height: 14px;
    fill: #f5a623;
}

.bonus-card .rating-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-text);
}

/* SLIDER for mobile bonuses */
.slider-wrap {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-track .bonus-card {
    min-width: 85vw;
    flex-shrink: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--c-green);
}

/* STRATEGIES */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.strategy-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    border-color: rgba(41, 169, 10, 0.4);
    transform: translateY(-3px);
}

.strategy-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: #1a1b1d;
}

.strategy-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-body h4 {
    color: #fff;
    font-size: 1rem;
}

.strategy-body p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    flex: 1;
}

/* CONTENT REVIEW */
.content-review {
    line-height: 1.75;
    color: var(--c-text);
}

.content-review h2 {
    margin: 28px 0 14px;
    color: #fff;
}

.content-review h3 {
    margin: 22px 0 10px;
    color: #fff;
}

.content-review p {
    margin-bottom: 14px;
}

.content-review ul, .content-review ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.content-review li {
    margin-bottom: 6px;
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.content-review table th, .content-review table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
}

.content-review table th {
    background: rgba(41, 169, 10, 0.1);
    color: var(--c-green);
    font-weight: 700;
}

.content-review a {
    color: var(--c-green);
    text-decoration: underline;
}

.content-review blockquote {
    border-left: 3px solid var(--c-green);
    padding: 10px 16px;
    background: rgba(41, 169, 10, 0.07);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--c-text-muted);
}

.content-review img {
    border-radius: var(--radius);
    margin: 16px 0;
}

.content-review strong {
    color: #fff;
}

/* AUTHOR BOX */
.author-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 32px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--c-nav);
    border: 2px solid var(--c-border);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-green);
}

.author-info {
    flex: 1;
}

.author-info .author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-info .author-role {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.author-info .author-bio {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

.author-info a {
    font-size: 0.82rem;
    color: var(--c-green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(41, 169, 10, 0.4);
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(41, 169, 10, 0.15);
    border: 1px solid rgba(41, 169, 10, 0.3);
    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;
    fill: var(--c-green);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--c-green);
}

.faq-item.open .faq-icon svg {
    fill: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    font-size: 0.92rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 18px;
}

/* FOOTER */
.site-footer {
    background: var(--c-nav);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-border);
}

.footer-brand .footer-logo {
    margin-bottom: 14px;
}

.footer-brand .footer-logo img {
    height: 40px;
    width: auto;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    color: var(--c-text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--c-green);
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 20px 0 14px;
}

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    font-weight: 600;
    white-space: nowrap;
    transition: border-color var(--transition);
}

.footer-logo-badge:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--c-text);
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.social-link:hover {
    background: var(--c-green);
    border-color: var(--c-green);
}

.social-link svg {
    width: 17px;
    height: 17px;
    fill: var(--c-text-muted);
    transition: fill var(--transition);
}

.social-link:hover svg {
    fill: #fff;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.footer-legal {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.6;
    max-width: 860px;
}

.footer-copyright {
    font-size: 0.82rem;
    color: #555;
}

.footer-copyright span {
    color: var(--c-text-muted);
}

/* FLOATING WIDGET */
.bonus-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--c-nav);
    border: 1.5px solid var(--c-green);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(41, 169, 10, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 260px;
    animation: widget-in 0.5s 1.5s both;
}

@keyframes widget-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.widget-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 2px 5px;
    transition: color var(--transition);
}

.widget-close:hover {
    color: #fff;
}

.widget-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--c-text-muted);
    padding-right: 18px;
}

.widget-title {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.widget-title span {
    color: var(--c-green);
}

.bonus-widget .btn {
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

/* DIVIDER */
.section-divider {
    width: 48px;
    height: 3px;
    background: var(--c-green);
    border-radius: 2px;
    margin-bottom: 16px;
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.provider-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.provider-row img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    filter: brightness(1.2);
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll table {
    min-width: 480px;
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wp-block-column {
    flex: 1;
}

.wp-caption {
    text-align: center;
}

.aligncenter {
    margin: 0 auto;
    display: block;
}

.wp-site-blocks {
    padding: 0;
}

.entry-content > * {
    margin-block: 0;
}

/*  */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--c-nav);
        border-bottom: 1px solid var(--c-border);
        padding: 16px;
        gap: 6px;
        z-index: 999;
    }

    .header-nav.active a {
        padding: 10px 14px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        display: none;
    }

    .bonuses-grid.desktop {
        display: none;
    }

    .slider-wrap {
        display: block;
    }

    .strategies-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-block-grid {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        max-width: 160px;
    }
}

@media (max-width: 767px) {
    .hero-inner {
        padding: 40px 0 36px;
    }

    .hero-tiles {
        grid-template-columns: repeat(3, 1fr);
    }

    .strategies-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .block-card {
        padding: 18px 14px;
    }

    .bonus-widget {
        max-width: 220px;
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
    }

    .author-box {
        flex-direction: column;
    }

    .jackpot-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .app-btns {
        flex-direction: column;
    }
}

.bonuses-desktop {
    display: grid;
}

.bonuses-mobile {
    display: none;
}

@media (max-width: 991px) {
    .bonuses-desktop {
        display: none;
    }

    .bonuses-mobile {
        display: block;
    }
}

.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 6px;
}

.updated-badge svg {
    width: 12px;
    height: 12px;
    fill: #555;
}

.section-head {
    margin-bottom: 28px;
}

.section-head .section-title {
    margin-bottom: 4px;
}

.highlights-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.highlight-pill {
    background: rgba(41, 169, 10, 0.1);
    border: 1px solid rgba(41, 169, 10, 0.25);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-green);
    white-space: nowrap;
}

.mobile-block-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll table {
    width: 100%;
    min-width: 100%;
}

.app-table {
    table-layout: fixed;
    word-break: break-word;
}

.app-table th,
.app-table td {
    padding: 12px 14px;
    font-size: .9rem;
    vertical-align: top;
}

.app-table th:first-child,
.app-table td:first-child {
    width: 38%;
}

.phone-frame {
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
}

.phone-frame img {
    width: 100%;
    display: block;
}

.app-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

@media (max-width: 991px) {

    .mobile-block-grid {
        grid-template-columns:1fr;
        gap: 24px;
    }

    .phone-frame {
        max-width: 180px;
    }

}

@media (max-width: 768px) {

    .block-card {
        padding: 18px 14px;
    }

    .section-head {
        text-align: center;
    }

    .phone-frame {
        max-width: 160px;
    }

    .table-scroll {
        overflow: visible;
    }

    .table-scroll table {
        min-width: 0;
    }

    .app-table {
        table-layout: auto;
    }

    .app-table th,
    .app-table td {
        display: block;
        width: 100%;
        padding: 10px 12px;
    }

    .app-table thead {
        display: none;
    }

    .app-table tr {
        display: block;
        background: #1b1c1f;
        border: 1px solid #2a2b2d;
        border-radius: 12px;
        margin-bottom: 12px;
        overflow: hidden;
    }

    .app-table td:first-child {
        background: rgba(41, 169, 10, .12);
        color: #29a90a;
        font-weight: 700;
        width: 100%;
    }

    .app-btns {
        flex-direction: column;
    }

    .app-btn {
        width: 100%;
        min-width: 0;
    }

}

@media (max-width: 767px) {
    .header-right .btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .header-right {
        gap: 6px;
    }

    .header-right .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .header-right .btn svg {
        width: 12px;
        height: 12px;
    }

    .jackpot-badge {
        display: none;
    }
}