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

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

:root {
    --clr-header: #3a3e51;
    --clr-bg: #3e4464;
    --clr-bg-dark: #2e3147;
    --clr-bg-card: #464d72;
    --clr-bg-card2: #3b4160;
    --clr-gold: #af8c2f;
    --clr-gold-light: #c9a74a;
    --clr-green: #3d8f58;
    --clr-green-light: #4caf70;
    --clr-text: #e8eaf6;
    --clr-text-muted: #9da3c8;
    --clr-text-dark: #c3c7e3;
    --clr-border: #4f5580;
    --clr-border-light: #5d6490;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.22);
    --transition: 0.22s ease;
}

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

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

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

a:hover {
    color: #e0b955;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--clr-text);
}

ul, ol {
    padding-left: 1.4em;
}

li {
    margin-bottom: 0.35em;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

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

.btn--green:hover {
    background: var(--clr-green-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(61, 143, 88, 0.4);
}

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

.btn--gold:hover {
    background: var(--clr-gold-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(175, 140, 47, 0.4);
}

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

.btn--outline:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

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

.btn--sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

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

.btn--pulse {
    animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(61, 143, 88, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(61, 143, 88, 0);
    }
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--clr-text);
}

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

.section-sub {
    color: var(--clr-text-muted);
    font-size: 0.97rem;
    margin-bottom: 1.6rem;
}

/* =========================================================
   HEADER
   ========================================================= */
#cr-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

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

.header-logo img {
    height: 46px;
    width: auto;
    display: block;
}

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

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text-dark);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 7px;
    transition: all var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    color: var(--clr-gold-light);
    background: rgba(175, 140, 47, 0.1);
}

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

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

.header-jackpot {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(175, 140, 47, 0.15);
    border: 1px solid rgba(175, 140, 47, 0.3);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.header-jackpot strong {
    color: var(--clr-gold-light);
    font-size: 1rem;
    font-weight: 700;
}

.header-jackpot svg {
    width: 16px;
    height: 16px;
    color: var(--clr-gold);
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--clr-text);
}

.burger svg {
    width: 24px;
    height: 24px;
    display: block;
}

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

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-header);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 18px 18px;
        gap: 4px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

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

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

    .burger {
        display: block;
    }

    .header-jackpot {
        display: none;
    }

    #cr-header {
        position: relative;
    }
}

@media (max-width: 500px) {
    .header-actions .btn--sm {
        padding: 7px 12px;
        font-size: 0.78rem;
    }
}

#cr-hero {
    background: var(--clr-bg-dark);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    align-items: center;
}

.hero-content {
    padding: 52px 40px 52px 0;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(175, 140, 47, 0.18);
    border: 1px solid rgba(175, 140, 47, 0.35);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-gold-light);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

.hero-title span {
    color: var(--clr-gold-light);
    display: block;
}

.hero-desc {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 420px;
}

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

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--clr-border);
}

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

.hero-stat strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-gold-light);
}

.hero-stat span {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-demo {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.hero-demo-wrap {
    position: absolute;
    inset: 0;
    border-radius: 0;
    overflow: hidden;
}

.hero-demo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--clr-bg-dark) 0%, transparent 40%);
}

.hero-demo-btns {
    position: absolute;
    bottom: 32px;
    right: 28px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-end;
}

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

    .hero-content {
        padding: 40px 0 30px;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 28px;
    }

    .hero-demo {
        display: none;
    }
}

#cr-breadcrumbs {
    background: var(--clr-bg-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--clr-border);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

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

.breadcrumbs a:hover {
    color: var(--clr-gold-light);
}

.breadcrumbs .sep {
    color: var(--clr-border-light);
}

.breadcrumbs .current {
    color: var(--clr-text-dark);
    font-weight: 500;
}

#cr-main {
    padding: 40px 0 60px;
}

.toc-block {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin-bottom: 36px;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-title svg {
    color: var(--clr-gold);
    width: 20px;
    height: 20px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    color: var(--clr-text-dark);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition);
}

.toc-item:hover {
    background: rgba(175, 140, 47, 0.1);
    border-color: rgba(175, 140, 47, 0.25);
    color: var(--clr-gold-light);
}

.toc-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--clr-gold);
}

#cr-demo {
    margin-bottom: 48px;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.demo-iframe-wrap {
    background: #000;
    border-radius: var(--radius-md);
    position: relative;
    aspect-ratio: 16/10;
    min-height: 300px;
    border: 2px solid var(--clr-border);
}

.demo-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.demo-play-btn {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
}

.game-details-table th, .game-details-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.875rem;
    vertical-align: middle;
}

.game-details-table th {
    color: var(--clr-text-muted);
    font-weight: 500;
    width: 45%;
}

.game-details-table td {
    color: var(--clr-text);
    font-weight: 600;
}

.game-details-table tr:last-child th,
.game-details-table tr:last-child td {
    border-bottom: none;
}

.game-details-table tr:hover td, .game-details-table tr:hover th {
    background: rgba(255, 255, 255, 0.03);
}

.gd-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gd-icon svg {
    width: 14px;
    height: 14px;
    color: var(--clr-gold);
    flex-shrink: 0;
}

.game-details-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.game-details-card-header {
    padding: 14px 18px;
    background: var(--clr-bg-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--clr-border);
}

.game-details-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
}

.game-details-card-header svg {
    width: 18px;
    height: 18px;
    color: var(--clr-gold);
}

.game-details-scroll {
    max-height: 440px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-border) transparent;
}

@media (max-width: 860px) {
    .demo-layout {
        grid-template-columns: 1fr;
    }

    .game-details-scroll {
        max-height: none;
    }
}

/* =========================================================
   ADVANTAGES
   ========================================================= */
#cr-advantages {
    margin-bottom: 48px;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

.adv-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-green));
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--clr-border-light);
}

.adv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(175, 140, 47, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-gold);
}

.adv-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.adv-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* =========================================================
   REVIEWS
   ========================================================= */
#cr-reviews {
    margin-bottom: 48px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.review-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: box-shadow var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-sm);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

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

.review-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-gold);
    border: 2px solid var(--clr-border-light);
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    color: var(--clr-gold);
}

.review-text {
    font-size: 0.88rem;
    color: var(--clr-text-dark);
    line-height: 1.65;
}

.review-date {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 10px;
}

.review-form-wrap {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px;
}

.review-form-wrap h3 {
    font-size: 1.2rem;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 7px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: var(--clr-bg-dark);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--clr-text);
    font-family: 'Rubik', sans-serif;
    font-size: 0.92rem;
    transition: border-color var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
}

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

.form-success {
    display: none;
    background: rgba(61, 143, 88, 0.15);
    border: 1px solid rgba(61, 143, 88, 0.4);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #6ee89e;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 14px;
}

.form-success.visible {
    display: block;
}

/* =========================================================
   SCREENSHOTS
   ========================================================= */
#cr-screenshots {
    margin-bottom: 48px;
}

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

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--clr-border);
    transition: all var(--transition);
    cursor: pointer;
    aspect-ratio: 16/9;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-item:hover {
    border-color: var(--clr-gold);
    transform: scale(1.02);
}

.screenshots-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.slides-track {
    display: flex;
    transition: transform 0.35s ease;
}

.slide-item {
    min-width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.slider-btn {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #fff;
}

.slider-btn svg {
    width: 16px;
    height: 16px;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

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

.slider-dot.active {
    background: var(--clr-gold);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 700px) {
    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }
}

/* =========================================================
   BONUSES
   ========================================================= */
#cr-bonuses {
    margin-bottom: 48px;
}

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

.bonus-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--clr-border-light);
}

.bonus-card-header {
    background: var(--clr-bg-dark);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--clr-border);
}

.bonus-casino-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
}

.bonus-casino-name {
    font-weight: 700;
    font-size: 1rem;
}

.bonus-card-body {
    padding: 20px;
    flex: 1;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-gold-light);
    margin-bottom: 6px;
}

.bonus-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.bonus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.bonus-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.75rem;
    color: var(--clr-text-dark);
}

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

.bonuses-slider-wrap {
    display: none;
}

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

    .bonuses-slider-wrap {
        display: block;
    }

    .bonuses-slider {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius-md);
    }

    .bonuses-track {
        display: flex;
        transition: transform 0.35s ease;
    }

    .bonus-slide {
        min-width: 100%;
        padding: 0 2px;
    }
}

@media (min-width: 861px) and (max-width: 1024px) {
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   REVIEW CONTENT BLOCK
   ========================================================= */
#cr-content-block {
    margin-bottom: 48px;
}

.content-inner {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 36px 40px;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--clr-bg-dark);
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    border: 1px solid var(--clr-border);
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--clr-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-gold);
    flex-shrink: 0;
    border: 2px solid var(--clr-border-light);
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.author-info a {
    color: var(--clr-gold-light);
    font-size: 0.82rem;
}

.content-inner .content-body h2 {
    font-size: 1.5rem;
    margin: 1.8rem 0 0.9rem;
    color: var(--clr-text);
}

.content-inner .content-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.7rem;
    color: var(--clr-text);
}

.content-inner .content-body h4 {
    font-size: 1.05rem;
    margin: 1.2rem 0 0.5rem;
    color: var(--clr-gold-light);
}

.content-inner .content-body p {
    margin-bottom: 1rem;
    color: var(--clr-text-dark);
    line-height: 1.75;
}

.content-inner .content-body ul, .content-inner .content-body ol {
    margin-bottom: 1rem;
    padding-left: 1.6em;
}

.content-inner .content-body li {
    margin-bottom: 0.45em;
    color: var(--clr-text-dark);
    line-height: 1.65;
}

.content-inner .content-body a {
    color: var(--clr-gold-light);
    border-bottom: 1px solid rgba(175, 140, 47, 0.3);
}

.content-inner .content-body a:hover {
    border-color: var(--clr-gold-light);
}

.content-inner .content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem;
    overflow-x: auto;
    display: block;
}

.content-inner .content-body table th, .content-inner .content-body table td {
    padding: 10px 14px;
    border: 1.5px solid var(--clr-border);
    text-align: left;
    font-size: 0.88rem;
}

.content-inner .content-body table th {
    background: var(--clr-bg-dark);
    color: var(--clr-text-muted);
    font-weight: 600;
}

.content-inner .content-body table td {
    color: var(--clr-text-dark);
}

.content-inner .content-body strong {
    color: var(--clr-text);
    font-weight: 700;
}

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

.content-inner .content-body blockquote {
    border-left: 4px solid var(--clr-gold);
    padding: 12px 20px;
    background: rgba(175, 140, 47, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1.2rem;
    color: var(--clr-text-dark);
    font-style: italic;
}

.content-inner .content-body hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.8rem 0;
}

@media (max-width: 700px) {
    .content-inner {
        padding: 22px 18px;
    }
}

/* =========================================================
   FAQ
   ========================================================= */
#cr-faq {
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-item.open {
    border-color: var(--clr-border-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--clr-text);
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--clr-gold-light);
}

.faq-item.open .faq-question {
    color: var(--clr-gold-light);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s;
}

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

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--clr-text-dark);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
}

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

/* =========================================================
   FOOTER
   ========================================================= */
#cr-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 42px;
    width: auto;
    margin-bottom: 14px;
}

.footer-about {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-email {
    font-size: 0.85rem;
    color: var(--clr-gold-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-email svg {
    width: 14px;
    height: 14px;
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--clr-gold-light);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-payment-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 0.04em;
}

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

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

.footer-social a:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #fff;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--clr-border);
    margin-bottom: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 0.04em;
}

.trust-badge svg {
    width: 12px;
    height: 12px;
    color: var(--clr-green);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 18px 0;
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.footer-legal {
    font-size: 0.77rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 880px;
    margin: 0 auto 10px;
}

.footer-copy {
    font-size: 0.8rem;
    color: #5a6180;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-provider span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.footer-provider img {
    height: 22px;
    filter: brightness(0.7);
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.footer-flag svg {
    width: 20px;
    height: 14px;
}

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

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

#cr-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 888;
    background: linear-gradient(90deg, #2e3147 0%, var(--clr-header) 100%);
    border-top: 2px solid var(--clr-gold);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.widget-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.widget-text span {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text-muted);
    padding: 4px;
    border-radius: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.widget-close:hover {
    color: var(--clr-text);
}

.widget-close svg {
    width: 18px;
    height: 18px;
    display: block;
}

#cr-widget.hidden {
    display: none;
}

body.widget-open {
    padding-bottom: 68px;
}

@media (max-width: 500px) {
    #cr-widget {
        flex-wrap: wrap;
    }

    .widget-text strong {
        font-size: 0.9rem;
    }
}

.cr-section {
    padding: 48px 0;
}

.cr-section + .cr-section {
    padding-top: 0;
}

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

.wp-site-blocks {
    display: contents;
}

.has-global-padding {
    display: contents;
}

.elementor-kit-27 {
    display: none;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

#wp-toolbar {
    display: none !important;
}

.wpcf7-spinner {
    display: none;
}

.yoast-schema-graph {
    display: none;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

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

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

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

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

.flex {
    display: flex;
}

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

.gap-2 {
    gap: 8px;
}

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

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

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

.xk9pq2 {
    display: none;
}

.mz4r71 {
    visibility: hidden;
}

#qb3n28 {
    pointer-events: none;
}

.lf5t90 {
    opacity: 0;
    position: absolute;
}

.va7c16 {
    will-change: auto;
}

.nr8d45 {
    contain: strict;
    display: none;
}

.ds2k83 {
    overflow: clip;
    height: 0;
}

.info-page {
    padding: 48px 0 60px;
}

.info-content {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.info-content h1 {
    font-size: 1.9rem;
    margin-bottom: 1.4rem;
    color: var(--clr-text);
}

.info-content h2 {
    font-size: 1.35rem;
    margin: 1.8rem 0 0.8rem;
    color: var(--clr-text);
}

.info-content h3 {
    font-size: 1.1rem;
    margin: 1.4rem 0 0.6rem;
    color: var(--clr-gold-light);
}

.info-content p {
    color: var(--clr-text-dark);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.info-content ul, .info-content ol {
    margin-bottom: 1rem;
    padding-left: 1.6em;
}

.info-content li {
    color: var(--clr-text-dark);
    margin-bottom: 0.4em;
    line-height: 1.6;
}

.info-content a {
    color: var(--clr-gold-light);
    border-bottom: 1px solid rgba(175, 140, 47, 0.3);
}

.info-content a:hover {
    border-color: var(--clr-gold-light);
}

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

@media (max-width: 700px) {
    .info-content {
        padding: 24px 18px;
    }
}

@media (max-width: 768px) {

    #cr-demo {
        margin: 0;
    }

    .demo-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .demo-layout > div:first-child {
        order: 1;
    }

    .game-details-card {
        order: 2;
    }

    .demo-iframe-wrap {
        position: relative;
        width: 100%;
        height: 78svh;
        min-height: 560px;
        max-height: 760px;
        aspect-ratio: auto;
        border-radius: 14px;
        margin: 0;
    }

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

    .demo-play-btn {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .demo-play-btn .btn {
        width: 100%;
        justify-content: center;
    }

    .game-details-card {
        width: 100%;
    }

    .game-details-scroll {
        max-height: none;
        overflow: visible;
    }

    .game-details-table th,
    .game-details-table td {
        padding: 10px;
        font-size: 13px;
    }

}

#cr-hero {
    position: relative;
    overflow: hidden;
    background: #2e3147;
}

#cr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(46, 49, 71, .95) 0%,
            rgba(46, 49, 71, .82) 40%,
            rgba(46, 49, 71, .55) 100%
    ),
    url("/images/road-b.png") center right / cover no-repeat;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1fr;
    min-height: 620px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    padding: 80px 0;
}

.hero-demo {
    display: none;
}

@media (max-width: 768px) {

    #cr-hero::before {
        background: linear-gradient(
                180deg,
                rgba(46, 49, 71, .94) 0%,
                rgba(46, 49, 71, .82) 45%,
                rgba(46, 49, 71, .90) 100%
        ),
        url("/images/road-b.png") center center / cover no-repeat;
    }

    .hero-inner {
        min-height: 100svh;
    }

    .hero-content {
        max-width: 100%;
        padding: 50px 0;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}