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

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

:root {
    --clr-bg: #1E101E;
    --clr-header: #05071A;
    --clr-primary: #FFE600;
    --clr-secondary: #26293A;
    --clr-surface: #2a1a2e;
    --clr-surface2: #221528;
    --clr-text: #f0eaf5;
    --clr-text-muted: #a99db8;
    --clr-border: #3a2848;
    --clr-plus: #2ecc71;
    --clr-minus: #e74c3c;
    --clr-jackpot: #FFE600;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.22s ease;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.38);
}

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
}

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

a:hover {
    color: #fff;
}

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

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

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

.box {
    border-radius: var(--radius-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

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

.btn--primary:hover {
    background: #ffe922;
    color: #05071A;
}

.btn--secondary {
    background: var(--clr-secondary);
    color: var(--clr-text);
}

.btn--secondary:hover {
    background: #32364a;
    color: #fff;
}

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

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

/* ========== HEADER ========== */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 230, 0, 0.12);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px;
}

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

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

.header-nav a {
    color: var(--clr-text-muted);
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition), background var(--transition);
}

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

.header-nav a:hover {
    color: var(--clr-primary);
    background: rgba(255, 230, 0, 0.07);
}

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

.header-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 5px 12px;
    white-space: nowrap;
}

.header-online .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-plus);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

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

.burger span {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition);
    display: block;
}

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

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--clr-header);
    padding: 12px 20px 18px;
    border-top: 1px solid rgba(255, 230, 0, 0.1);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--clr-text-muted);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: color var(--transition), background var(--transition);
}

.mobile-nav a:hover {
    color: var(--clr-primary);
    background: rgba(255, 230, 0, 0.07);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('/cas-hs-hero.png') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 7, 26, 0.92) 40%, rgba(30, 16, 30, 0.7) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 64px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    text-wrap: balance;
}

.hero-content h1 span {
    color: var(--clr-primary);
}

.hero-subtitle {
    margin-top: 14px;
    font-size: 17px;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 230, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.hero-badge-bonus {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
}

.hero-badge-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 6px;
    line-height: 1.4;
}

.hero-badge-sub {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-text);
    margin-top: 10px;
}

.hero-badge .btn {
    margin-top: 18px;
    width: 100%;
}

.hero-trust {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--clr-text-muted);
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--clr-primary);
}

/* ========== SECTIONS ========== */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 36px;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 8px 0 36px;
}

/* ========== PROS/CONS ========== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-cons-card {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--clr-border);
}

.pros-cons-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-cons-card.pros h3 {
    color: var(--clr-plus);
}

.pros-cons-card.cons h3 {
    color: var(--clr-minus);
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--clr-text);
}

.pros-cons-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.pros-cons-card.pros li::before {
    background-color: rgba(46, 204, 113, 0.18);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pros-cons-card.cons li::before {
    background-color: rgba(231, 76, 60, 0.18);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

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

.jackpot-card {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 24px 18px;
    text-align: center;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255, 230, 0, 0.06) 0%, transparent 70%);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 230, 0, 0.12);
}

.jackpot-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
}

.jackpot-game {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 6px;
}

.jackpot-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 230, 0, 0.12);
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ========== APP INFO ========== */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

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

.app-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.app-table th, .app-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--clr-border);
}

.app-table th {
    background: rgba(255, 230, 0, 0.06);
    color: var(--clr-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.app-table td {
    color: var(--clr-text);
}

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

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

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-secondary);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--clr-border);
    transition: background var(--transition), transform var(--transition);
}

.app-dl-btn:hover {
    background: #32364a;
    transform: translateY(-2px);
    color: #fff;
}

.app-dl-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--clr-text);
}

.app-dl-btn span small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--clr-text-muted);
}

.app-info-side h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.app-info-side p {
    font-size: 14.5px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ========== GAMES SLIDER ========== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

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

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.game-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.game-card-body {
    padding: 10px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.game-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.game-card-provider {
    font-size: 11.5px;
    color: var(--clr-text-muted);
}

.game-card .btn {
    margin-top: auto;
    font-size: 12px;
    padding: 7px 10px;
}

/* ========== SLOT MINI GAME ========== */
.slot-machine-wrap {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1.5px solid rgba(255, 230, 0, 0.2);
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 8px 48px rgba(255, 230, 0, 0.06);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 24px 0;
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: var(--clr-header);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid var(--clr-border);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.slot-reel.spinning {
    animation: reelSpin 0.15s linear infinite;
}

@keyframes reelSpin {
    0% {
        transform: translateY(-6px)
    }
    50% {
        transform: translateY(6px)
    }
    100% {
        transform: translateY(-6px)
    }
}

.slot-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slot-win-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--clr-primary);
    animation: fadeInUp .4s ease;
}

.slot-lose-text {
    font-size: 15px;
    color: var(--clr-text-muted);
}

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

.slot-machine-wrap p.slot-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

/* ========== CONTENT REVIEW BLOCK ========== */
.review-block {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--clr-border);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-bottom: 28px;
    border: 1px solid var(--clr-border);
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-primary);
}

.author-info .author-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.author-info .author-title {
    font-size: 12.5px;
    color: var(--clr-text-muted);
    margin-top: 2px;
}

.author-info .author-links {
    margin-top: 6px;
    display: flex;
    gap: 10px;
}

.author-info .author-links a {
    font-size: 12px;
    color: var(--clr-primary);
}

.review-content {
    line-height: 1.75;
    font-size: 15px;
    color: var(--clr-text);
}

.review-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 12px;
}

.review-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 22px 0 10px;
}

.review-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-primary);
    margin: 18px 0 8px;
}

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

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

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

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

.review-content em {
    color: var(--clr-text-muted);
}

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

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.review-content th {
    background: rgba(255, 230, 0, 0.07);
    color: var(--clr-primary);
    text-align: left;
    padding: 10px 14px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--clr-border);
}

.review-content td {
    padding: 10px 14px;
    font-size: 14px;
    border-bottom: 1px solid var(--clr-border);
}

.review-content tr:last-child td {
    border-bottom: none;
}

.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 18px;
    margin: 18px 0;
    background: rgba(255, 230, 0, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0;
}

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

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

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

.faq-question::after {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a99db8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .25s;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 14.5px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ========== COMMENTS ========== */
.comments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.comment-card {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--clr-border);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.comment-meta .comment-author {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.comment-meta .comment-date {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.comment-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.comment-stars span {
    color: var(--clr-primary);
    font-size: 14px;
}

.comment-text {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.comment-form {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--clr-border);
    margin-top: 24px;
}

.comment-form h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.form-group input, .form-group textarea, .form-group select {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--clr-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 96px;
}

.form-stars {
    display: flex;
    gap: 6px;
}

.form-stars label {
    font-size: 26px;
    cursor: pointer;
    color: var(--clr-border);
    transition: color .15s;
}

.form-stars input {
    display: none;
}

.form-stars label:hover, .form-stars label:hover ~ label, .form-stars input:checked ~ label {
    color: var(--clr-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(255, 230, 0, 0.1);
    padding: 52px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.footer-flag img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
    color: var(--clr-text);
}

.footer-socials a:hover {
    background: var(--clr-primary);
    color: var(--clr-header);
    transform: translateY(-2px);
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}

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

.footer-col ul li a {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--clr-primary);
}

.footer-email {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 8px;
}

.footer-email a {
    color: var(--clr-primary);
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-logo-badge svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12.5px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--clr-text-muted);
}

.footer-bottom a:hover {
    color: var(--clr-primary);
}

.footer-legal {
    font-size: 11.5px;
    color: rgba(169, 157, 184, 0.6);
    padding: 16px 0;
    line-height: 1.7;
}

/* ========== STICKY WIDGET ========== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, var(--clr-header) 0%, #0d1030 100%);
    border-top: 1.5px solid rgba(255, 230, 0, 0.22);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.45);
}

.sticky-widget-text {
    display: flex;
    flex-direction: column;
}

.sticky-widget-bonus {
    font-size: 15px;
    font-weight: 800;
    color: var(--clr-primary);
}

.sticky-widget-sub {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.sticky-promo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 230, 0, 0.07);
    border: 1px dashed rgba(255, 230, 0, 0.35);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
}

.sticky-promo span {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: .06em;
}

.sticky-promo small {
    font-size: 11px;
    color: var(--clr-text-muted);
    margin-left: 2px;
}

.sticky-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text-muted);
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
    flex-shrink: 0;
    line-height: 1;
}

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

.sticky-close svg {
    width: 18px;
    height: 18px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 13px;
    color: var(--clr-text-muted);
}

.breadcrumb a {
    color: var(--clr-text-muted);
}

.breadcrumb a:hover {
    color: var(--clr-primary);
}

.breadcrumb span {
    color: var(--clr-text);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
}

/* ========== ========== */
.info-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.info-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.info-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-primary);
    margin: 20px 0 8px;
}

.info-content p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

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

.info-content li {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 7px;
    line-height: 1.6;
}

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

.info-content strong {
    color: var(--clr-text);
    font-weight: 600;
}

.wp-block-column {
    display: flex;
    flex-direction: column;
}

.wp-block-group {
    display: block;
}

.elementor-widget-wrap {
    position: relative;
}

.wp-block-image {
    display: block;
}

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

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

.entry-meta {
    display: flex;
    gap: 10px;
}

.post-thumbnail {
    display: block;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.wp-post-nav-link {
    display: none;
}

.custom-logo-link {
    display: inline-block;
}

/* ==========  ========== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jackpots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-badge {
        max-width: 360px;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .header-online {
        display: none;
    }

    .burger {
        display: flex;
    }

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

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

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        overflow-x: auto;
    }

    .hero {
        min-height: 400px;
    }

    .hero-inner {
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }

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

    .slot-reel {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }

    .sticky-promo {
        display: none;
    }
}

@media (max-width: 500px) {
    .games-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
