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

:root {
    --clr-header: #3A3A3A;
    --clr-footer: #2e2e2e;
    --clr-btn-primary: #2967C7;
    --clr-btn-accent: #F5B337;
    --clr-bg: #69ACBD;
    --clr-bg-dark: #1c2a3a;
    --clr-surface: #ffffff;
    --clr-surface2: #f4f8fb;
    --clr-text: #1a1a2e;
    --clr-text-light: #f0f4ff;
    --clr-text-muted: #6b7a8d;
    --clr-border: #dce4ef;
    --clr-success: #22c55e;
    --clr-warning: #F5B337;
    --clr-error: #ef4444;
    --clr-info: #2967C7;
    --clr-neutral-100: #f9fafb;
    --clr-neutral-200: #e5e7eb;
    --clr-neutral-300: #d1d5db;
    --clr-neutral-700: #374151;
    --clr-neutral-900: #111827;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .12);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .14);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .18);
    --font-main: 'Rubik', 'Poppins', sans-serif;
    --font-head: 'Montserrat', 'Oswald', sans-serif;
    --font-display: 'Oswald', sans-serif;
    --tr: 0.22s ease;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--clr-btn-primary);
    text-decoration: none;
    transition: color var(--tr);
}

a:hover {
    color: #1a4fa0;
}

ul {
    list-style: none;
}

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

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

/**/
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    transition: transform var(--tr), box-shadow var(--tr), background var(--tr), opacity var(--tr);
    white-space: nowrap;
    line-height: 1.2;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--primary {
    background: var(--clr-btn-primary);
    color: #fff;
}

.btn--primary:hover {
    background: #1a4fa0;
    color: #fff;
}

.btn--accent {
    background: var(--clr-btn-accent);
    color: #1a1a2e;
}

.btn--accent:hover {
    background: #e0a020;
    color: #1a1a2e;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-btn-primary);
    color: var(--clr-btn-primary);
}

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

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

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

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 179, 55, .45);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(245, 179, 55, 0);
    }
}

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.header-logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .04em;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #cdd5e0;
    font-size: .88rem;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--tr), color var(--tr);
}

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

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: #a8b8cc;
    background: rgba(255, 255, 255, .08);
    padding: 5px 10px;
    border-radius: 20px;
}

.online-dot {
    width: 7px;
    height: 7px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: blink 1.6s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .3;
    }
}

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

.burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--tr), opacity var(--tr);
}

.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 {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 50%, #0d2b3e 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-rush.png');
    background-size: cover;
    background-position: center;
    opacity: .38;
    animation: heroPan 18s ease-in-out infinite alternate;
}

@keyframes heroPan {
    from {
        transform: scale(1.05) translateX(-1%);
    }
    to {
        transform: scale(1.1) translateX(1%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 42, .85) 0%, rgba(13, 27, 42, .3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 64px 0;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 179, 55, .18);
    border: 1px solid rgba(245, 179, 55, .4);
    color: #F5B337;
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.hero-title span {
    color: var(--clr-btn-accent);
}

.hero-desc {
    font-size: 1.05rem;
    color: #b8c9db;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-val {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--clr-btn-accent);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: .78rem;
    color: #8899aa;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/**/
.section {
    padding: 64px 0;
}

.section-alt {
    background: rgba(255, 255, 255, .12);
}

.section-dark {
    background: var(--clr-bg-dark);
    color: var(--clr-text-light);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-text);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-title-light {
    color: var(--clr-text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.6;
}

.section-subtitle-light {
    color: #8899aa;
}

.divider {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-btn-primary), var(--clr-btn-accent));
    border-radius: 2px;
    margin: 12px auto 32px;
}

/* =====================  ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: transform var(--tr), box-shadow var(--tr);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #e8f0fe, #cddffe);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--clr-btn-primary);
}

.feature-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-text);
}

.feature-desc {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.jackpot-card {
    border-radius: var(--radius-xl);
    padding: 28px 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--tr), box-shadow var(--tr);
}

.jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.jackpot-card--bronze {
    background: linear-gradient(135deg, #7c4f2f 0%, #b87333 100%);
}

.jackpot-card--silver {
    background: linear-gradient(135deg, #3a4a5c 0%, #8899aa 100%);
}

.jackpot-card--gold {
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 100%);
}

.jackpot-level {
    font-family: var(--font-display);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 6px;
}

.jackpot-amount {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.jackpot-amount span {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 4px;
}

.jackpot-winners {
    margin-top: 14px;
}

.jackpot-winner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    font-size: .85rem;
}

.jackpot-winner:last-child {
    border-bottom: none;
}

.jwinner-nick {
    opacity: .9;
}

.jwinner-win {
    font-weight: 600;
    opacity: .95;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.winners-table th {
    background: var(--clr-header);
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-family: var(--font-head);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.winners-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .9rem;
    text-align: left;
    color: var(--clr-text);
}

.winners-table tr:last-child td {
    border-bottom: none;
}

.winners-table tr:nth-child(even) td {
    background: #f8fbfd;
}

.winners-table tr:hover td {
    background: #eef4fb;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-weight: 700;
    font-size: .8rem;
}

.rank-1 {
    background: #ffd700;
    color: #7a5900;
}

.rank-2 {
    background: #c0c0c0;
    color: #3a3a3a;
}

.rank-3 {
    background: #b87333;
    color: #fff;
}

.rank-other {
    background: var(--clr-neutral-200);
    color: var(--clr-neutral-700);
}

.win-amount {
    font-weight: 600;
    color: var(--clr-success);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.bonus-card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
    transition: transform var(--tr), box-shadow var(--tr);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bonus-card-head {
    background: linear-gradient(135deg, #1a3a5c, #2967C7);
    padding: 22px 20px;
    color: #fff;
}

.bonus-casino {
    font-size: .78rem;
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.bonus-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-amount {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--clr-btn-accent);
    line-height: 1;
}

.bonus-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .87rem;
    color: var(--clr-text);
}

.bonus-feature svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-success);
    flex-shrink: 0;
}

.bonus-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #1b7a3e;
    font-size: .75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #a5d6a7;
}

.bonus-card-foot {
    padding: 0 20px 20px;
}

.bonus-terms {
    font-size: .76rem;
    color: var(--clr-text-muted);
    margin-top: 10px;
}

.demo-wrap {
    background: var(--clr-bg-dark);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(41, 103, 199, .4);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.demo-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-dot {
    width: 10px;
    height: 10px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.demo-label {
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
}

.demo-sublabel {
    color: #8899aa;
    font-size: .8rem;
}

.demo-frame-wrap {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

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

.demo-footer {
    padding: 16px 20px;
    background: rgba(255, 255, 255, .03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.demo-info {
    color: #8899aa;
    font-size: .82rem;
}

.demo-info strong {
    color: #cdd5e0;
}

.demo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d1b2a, #1a3a5c);
    color: #fff;
    gap: 16px;
}

.demo-placeholder-icon {
    font-size: 4rem;
    opacity: .6;
}

.demo-placeholder-text {
    font-size: 1rem;
    color: #8899aa;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--tr);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    gap: 12px;
}

.faq-q-text {
    font-weight: 600;
    font-size: .97rem;
    color: var(--clr-text);
    line-height: 1.4;
}

.faq-arrow {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--clr-neutral-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--tr), background var(--tr);
}

.faq-arrow svg {
    width: 12px;
    height: 12px;
    fill: var(--clr-text);
    transition: transform var(--tr);
}

.faq-item.open .faq-arrow {
    background: var(--clr-btn-primary);
    transform: rotate(180deg);
}

.faq-item.open .faq-arrow svg {
    fill: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer-inner {
    padding-bottom: 18px;
    font-size: .92rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 20px;
}

/* =====================  ===================== */
.author-card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: 28px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    max-width: 760px;
    margin: 0 auto;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--clr-btn-primary), #1a4fa0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(41, 103, 199, .35);
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-role {
    font-size: .83rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.author-bio {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .83rem;
    color: var(--clr-btn-primary);
    font-weight: 600;
}

.author-link:hover {
    text-decoration: underline;
}

.content-block {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    line-height: 1.72;
}

.content-block h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin: 28px 0 12px;
    color: var(--clr-text);
}

.content-block h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin: 22px 0 8px;
    color: var(--clr-text);
}

.content-block p {
    margin-bottom: 14px;
    font-size: .95rem;
    color: var(--clr-text-muted);
}

.content-block ul, .content-block ol {
    margin: 12px 0 14px 22px;
}

.content-block ul {
    list-style: disc;
}

.content-block ol {
    list-style: decimal;
}

.content-block li {
    margin-bottom: 6px;
    font-size: .93rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.content-block a {
    color: var(--clr-btn-primary);
}

.content-block a:hover {
    text-decoration: underline;
}

.content-block table {
    width: auto;
    margin: 16px auto;
    border-collapse: collapse;
    font-size: .9rem;
}

.content-block table th, .content-block table td {
    padding: 9px 16px;
    border: 1px solid var(--clr-border);
    text-align: left;
}

.content-block table th {
    background: var(--clr-header);
    color: #fff;
}

.content-block table tr:nth-child(even) td {
    background: var(--clr-neutral-100);
}

.content-block strong {
    color: var(--clr-text);
}

.content-block blockquote {
    border-left: 4px solid var(--clr-btn-primary);
    padding: 12px 16px;
    background: var(--clr-neutral-100);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--clr-text-muted);
    margin: 16px 0;
}

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

.pros-block, .cons-block {
    border-radius: var(--radius-md);
    padding: 22px 20px;
    border: 1px solid var(--clr-border);
}

.pros-block {
    background: #f0faf3;
    border-color: #a5d6a7;
}

.cons-block {
    background: #fef2f2;
    border-color: #fca5a5;
}

.pc-title {
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pros-block .pc-title {
    color: #166534;
}

.cons-block .pc-title {
    color: #991b1b;
}

.pc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pc-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .88rem;
    line-height: 1.5;
}

.pc-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-block .pc-item svg {
    fill: #22c55e;
}

.cons-block .pc-item svg {
    fill: #ef4444;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .9rem;
    text-align: left;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--clr-text);
    width: 42%;
    background: var(--clr-neutral-100);
}

.info-table td:last-child {
    color: var(--clr-text-muted);
}

.info-table tr:nth-child(even) td:first-child {
    background: #f0f5fb;
}

.site-footer {
    background: var(--clr-footer);
    color: #a8b8cc;
    margin-top: auto;
}

.footer-top {
    padding: 48px 0 32px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo img {
    height: 38px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: .04em;
}

.footer-desc {
    font-size: .85rem;
    line-height: 1.6;
    max-width: 260px;
}

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
}

.footer-col-title {
    font-family: var(--font-head);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #8899aa;
    font-size: .85rem;
    transition: color var(--tr);
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: .82rem;
    color: #5a6a7a;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .75rem;
    color: #7a8a9a;
    white-space: nowrap;
}

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

.payment-icon {
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .75rem;
    color: #8899aa;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .1);
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.footer-provider-label {
    font-size: .78rem;
    color: #5a6a7a;
}

.footer-provider img {
    height: 28px;
    opacity: .7;
    transition: opacity var(--tr);
}

.footer-provider img:hover {
    opacity: 1;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 850;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    transition: opacity var(--tr);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -280px;
    bottom: 0;
    z-index: 860;
    width: 280px;
    background: var(--clr-header);
    padding: 20px;
    overflow-y: auto;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    margin-bottom: 12px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cdd5e0;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--tr), color var(--tr);
}

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

.mobile-nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.bonus-slider-wrap {
    position: relative;
    overflow: hidden;
}

.bonus-slider {
    display: flex;
    gap: 22px;
    transition: transform 0.35s ease;
}

.slider-controls {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background var(--tr);
}

.slider-dot.active {
    background: var(--clr-btn-accent);
}

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

.mt1 {
    margin-top: 8px;
}

.mt2 {
    margin-top: 16px;
}

.mt3 {
    margin-top: 24px;
}

.mb1 {
    margin-bottom: 8px;
}

.mb2 {
    margin-bottom: 16px;
}

.mb3 {
    margin-bottom: 24px;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

.fade-in {
    animation: fadeIn 0.5s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpc-nonce-field {
    display: none !important;
    visibility: hidden !important;
}

#wp-admin-bar {
    display: none !important;
}

.elementor-invisible {
    opacity: 0;
}

.wp-caption {
    max-width: 100%;
}

.x7f2a3 {
    display: none;
}

.bq91mx {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
}

.zr48kl_wrap {
    contain: strict;
    width: 0;
    height: 0;
    overflow: hidden;
}

.q2n8wv {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

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

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

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

    .bonus-slider {
        flex-wrap: nowrap;
    }

    .slider-controls {
        display: flex;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 20px;
    }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .section {
        padding: 40px 0;
    }

    .content-block {
        padding: 22px 16px;
    }

    .widget-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .bonus-slider-wrap {
        overflow: hidden;
        padding-bottom: 8px;
    }

    .bonus-slider.bonus-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 12px;
    }

    .bonus-slider.bonus-grid::-webkit-scrollbar {
        height: 4px;
    }

    .bonus-slider.bonus-grid::-webkit-scrollbar-thumb {
        background: var(--clr-btn-accent);
        border-radius: 20px;
    }

    .bonus-card {
        min-width: 88%;
        max-width: 88%;
        flex: 0 0 88%;
        scroll-snap-align: center;
        border-radius: 20px;
        overflow: hidden;
    }

    .bonus-card-head {
        padding: 18px 16px;
    }

    .bonus-casino {
        font-size: .72rem;
        line-height: 1.4;
        overflow-wrap: anywhere;
    }

    .bonus-title {
        font-size: 1rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .bonus-amount {
        font-size: 1.55rem;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .bonus-card-body {
        padding: 16px;
        gap: 10px;
    }

    .bonus-features {
        gap: 9px;
    }

    .bonus-feature {
        align-items: flex-start;
        font-size: .83rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .bonus-feature svg {
        width: 15px;
        height: 15px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .bonus-badge {
        align-self: flex-start;
        font-size: .7rem;
        padding: 4px 10px;
    }

    .bonus-card-foot {
        padding: 0 16px 16px;
    }

    .bonus-card-foot .btn {
        width: 100%;
        justify-content: center;
        font-size: .9rem;
        padding: 12px 14px;
    }

    .bonus-terms {
        font-size: .7rem;
        line-height: 1.45;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        min-width: 94%;
        max-width: 94%;
        flex-basis: 94%;
    }

    .bonus-title {
        font-size: .95rem;
    }

    .bonus-amount {
        font-size: 1.35rem;
    }

    .bonus-feature {
        font-size: .78rem;
    }

    .bonus-card-foot .btn {
        font-size: .82rem;
        padding: 11px 12px;
    }
}