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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: #ff6b00;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #ff8c33
}

ul {
    list-style: none
}

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

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

.cr-section {
    padding: 60px 0
}

.cr-header {
    background: #141414;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 0, .15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.cr-header__inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    max-width: 1240px;
    margin: 0 auto
}

.cr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

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

.cr-logo__text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px
}

.cr-logo__text span {
    color: #ff6b00
}

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

.cr-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 8px;
    color: #ccc;
    font-size: .875rem;
    font-weight: 500;
    transition: all .2s;
    white-space: nowrap
}

.cr-nav__link:hover, .cr-nav__link.active {
    color: #fff;
    background: rgba(255, 107, 0, .1)
}

.cr-nav__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.cr-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.cr-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: .75rem;
    color: #22c55e;
    white-space: nowrap
}

.cr-header__online-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: cr-pulse 2s infinite
}

@keyframes cr-pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.cr-lang {
    position: relative
}

.cr-lang__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 7px 10px;
    cursor: pointer;
    color: #ccc;
    font-size: .85rem;
    transition: all .2s
}

.cr-lang__btn:hover {
    background: rgba(255, 255, 255, .1)
}

.cr-lang__flag {
    font-size: 1rem
}

.cr-lang__arrow {
    width: 12px;
    height: 12px;
    transition: transform .2s
}

.cr-lang__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 6px;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all .2s
}

.cr-lang.open .cr-lang__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.cr-lang.open .cr-lang__arrow {
    transform: rotate(180deg)
}

.cr-lang__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: #ccc;
    font-size: .85rem;
    transition: background .2s
}

.cr-lang__item:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.cr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
    white-space: nowrap;
    text-decoration: none
}

.cr-btn--orange {
    background: #ff6b00;
    color: #fff
}

.cr-btn--orange:hover {
    background: #e55f00;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 0, .4)
}

.cr-btn--green {
    background: #22c55e;
    color: #fff
}

.cr-btn--green:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, .4)
}

.cr-btn--outline {
    background: transparent;
    color: #ff6b00;
    border: 1.5px solid #ff6b00
}

.cr-btn--outline:hover {
    background: #ff6b00;
    color: #fff
}

.cr-btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px
}

.cr-btn--sm {
    padding: 7px 14px;
    font-size: .8rem
}

.cr-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    transition: background .2s
}

.cr-burger:hover {
    background: rgba(255, 255, 255, .1)
}

.cr-burger__line {
    width: 100%;
    height: 2px;
    background: #ccc;
    border-radius: 2px;
    transition: all .3s
}

.cr-burger.active .cr-burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.cr-burger.active .cr-burger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.cr-burger.active .cr-burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.cr-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #141414;
    z-index: 999;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    padding-top: 80px
}

.cr-mobile-menu.active {
    transform: translateX(0)
}

.cr-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 20px
}

.cr-mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 10px;
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: all .2s
}

.cr-mobile-menu__link:hover {
    color: #fff;
    background: rgba(255, 107, 0, .08)
}

.cr-mobile-menu__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px
}

.cr-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0d0d
}

.cr-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/hero-road.png') center center / cover no-repeat;
    opacity: .35
}

.cr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, .95) 40%, rgba(13, 13, 13, .3) 100%)
}

.cr-hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px
}

.cr-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 0, .15);
    border: 1px solid rgba(255, 107, 0, .3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .75rem;
    font-weight: 600;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 20px
}

.cr-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px
}

.cr-hero__title span {
    color: #ff6b00
}

.cr-hero__desc {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px
}

.cr-hero__btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.cr-hero__stats {
    display: flex;
    gap: 30px;
    margin-top: 36px;
    flex-wrap: wrap
}

.cr-hero__stat {
    display: flex;
    flex-direction: column
}

.cr-hero__stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b00
}

.cr-hero__stat-label {
    font-size: .78rem;
    color: #888
}

.cr-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.cr-section-sub {
    font-size: .9rem;
    color: #888;
    margin-bottom: 36px
}

.cr-section-header {
    margin-bottom: 36px
}

.cr-rating-grid {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cr-casino-card {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s
}

.cr-casino-card:hover {
    border-color: rgba(255, 107, 0, .25);
    box-shadow: 0 4px 24px rgba(255, 107, 0, .08)
}

.cr-casino-card--top {
    border-color: rgba(255, 107, 0, .3);
    background: linear-gradient(135deg, #181818, #161616)
}

.cr-casino-card--top-1 {
    border-color: rgba(255, 215, 0, .3)
}

.cr-casino-card__inner {
    display: grid;
    grid-template-columns:60px 1fr auto;
    gap: 0;
    align-items: stretch
}

.cr-casino-card__num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    background: rgba(255, 255, 255, .03);
    font-size: 1.4rem;
    font-weight: 700;
    color: #555;
    border-right: 1px solid rgba(255, 255, 255, .05)
}

.cr-casino-card--top-1 .cr-casino-card__num {
    color: #ffd700
}

.cr-casino-card--top-2 .cr-casino-card__num {
    color: #c0c0c0
}

.cr-casino-card--top-3 .cr-casino-card__num {
    color: #cd7f32
}

.cr-casino-card__body {
    padding: 20px;
    display: grid;
    grid-template-columns:120px 1fr 1fr;
    gap: 16px;
    align-items: center
}

.cr-casino-card__logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.cr-casino-card__logo {
    width: 100px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    background: #1e1e1e;
    padding: 6px
}

.cr-casino-card__country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: #888
}

.cr-casino-card__info {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cr-casino-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.cr-casino-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px
}

.cr-casino-card__stars {
    display: flex;
    gap: 2px
}

.cr-casino-card__star {
    color: #ffd700;
    font-size: .9rem
}

.cr-casino-card__star--empty {
    color: #333
}

.cr-casino-card__score {
    font-size: .85rem;
    font-weight: 600;
    color: #ffd700
}

.cr-casino-card__bonus {
    margin-top: 4px
}

.cr-casino-card__bonus-label {
    font-size: .7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .5px
}

.cr-casino-card__bonus-val {
    font-size: .9rem;
    font-weight: 600;
    color: #22c55e
}

.cr-casino-card__features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: .78rem;
    color: #aaa
}

.cr-casino-card__feat {
    display: flex;
    align-items: flex-start;
    gap: 6px
}

.cr-casino-card__feat::before {
    content: '✓';
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 1px
}

.cr-casino-card__meta {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 8px;
    font-size: .75rem;
    margin-top: 8px
}

.cr-casino-card__meta-item {
    background: rgba(255, 255, 255, .04);
    border-radius: 6px;
    padding: 6px 8px
}

.cr-casino-card__meta-label {
    color: #666;
    display: block
}

.cr-casino-card__meta-val {
    color: #ccc;
    font-weight: 500
}

.cr-casino-card__actions {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    min-width: 160px;
    border-left: 1px solid rgba(255, 255, 255, .05)
}

.cr-badge-new {
    background: rgba(255, 107, 0, .15);
    color: #ff6b00;
    border: 1px solid rgba(255, 107, 0, .3);
    border-radius: 4px;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 7px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-left: 8px
}

.cr-badge-top {
    background: rgba(255, 215, 0, .12);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, .3);
    border-radius: 4px;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 7px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-left: 8px
}

.cr-load-more {
    display: flex;
    justify-content: center;
    margin-top: 28px
}

.cr-casinos-hidden {
    display: none
}

.cr-app-block {
    background: #141414;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, .07);
    margin-top: 20px
}

.cr-app-block__inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center
}

.cr-app-block__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.cr-app-block__desc {
    font-size: .9rem;
    color: #aaa;
    margin-bottom: 24px;
    line-height: 1.7
}

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

.cr-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e1e1e;
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 10px 18px;
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
    transition: all .2s;
    text-decoration: none
}

.cr-app-btn:hover {
    background: #282828;
    border-color: rgba(255, 107, 0, .4);
    color: #fff
}

.cr-app-btn__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0
}

.cr-app-btn__label {
    font-size: .65rem;
    color: #888;
    display: block;
    line-height: 1
}

.cr-app-btn__name {
    font-size: .9rem;
    font-weight: 600;
    display: block
}

.cr-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem
}

.cr-app-table th, .cr-app-table td {
    padding: 11px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .07)
}

.cr-app-table th {
    background: rgba(255, 107, 0, .1);
    color: #ff6b00;
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

.cr-app-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.cr-app-table td:first-child {
    color: #888;
    font-weight: 500
}

.cr-app-table td:last-child {
    color: #fff
}

.cr-demo-block {
    background: #141414;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.cr-demo-block__top {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.cr-demo-block__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff
}

.cr-demo-block__iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden
}

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

.cr-demo-block__bottom {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .02)
}

.cr-demo-block__hint {
    font-size: .82rem;
    color: #777
}

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

.cr-faq__item {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s
}

.cr-faq__item.open {
    border-color: rgba(255, 107, 0, .25)
}

.cr-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 12px;
    user-select: none
}

.cr-faq__q-text {
    font-size: .95rem;
    font-weight: 600;
    color: #fff
}

.cr-faq__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(255, 107, 0, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .2s
}

.cr-faq__item.open .cr-faq__icon {
    transform: rotate(45deg);
    background: rgba(255, 107, 0, .3)
}

.cr-faq__icon svg {
    width: 12px;
    height: 12px;
    fill: #ff6b00
}

.cr-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1), padding .2s
}

.cr-faq__answer-inner {
    padding: 0 22px 18px;
    font-size: .9rem;
    color: #aaa;
    line-height: 1.8
}

.cr-faq__item.open .cr-faq__answer {
    max-height: 500px
}

.cr-author {
    background: linear-gradient(135deg, #161616, #141414);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 28px;
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 20px
}

.cr-author__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 0, .3)
}

.cr-author__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.cr-author__title {
    font-size: .82rem;
    color: #ff6b00;
    margin-bottom: 10px;
    font-weight: 500
}

.cr-author__bio {
    font-size: .85rem;
    color: #999;
    line-height: 1.7
}

.cr-author__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff6b00;
    font-size: .82rem;
    margin-top: 10px;
    font-weight: 500
}

.cr-author__link:hover {
    color: #ff8c33
}

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

.cr-review-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 20px
}

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

.cr-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00, #ff8c33);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.cr-review-card__author {
    font-size: .9rem;
    font-weight: 600;
    color: #fff
}

.cr-review-card__date {
    font-size: .75rem;
    color: #666
}

.cr-review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px
}

.cr-review-card__star {
    font-size: .9rem;
    color: #ffd700
}

.cr-review-card__text {
    font-size: .85rem;
    color: #aaa;
    line-height: 1.7
}

.cr-pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    margin-top: 16px
}

.cr-pros, .cr-cons {
    background: #141414;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.cr-pros {
    border-top: 3px solid #22c55e
}

.cr-cons {
    border-top: 3px solid #ef4444
}

.cr-pros__title, .cr-cons__title {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.cr-pros__title {
    color: #22c55e
}

.cr-cons__title {
    color: #ef4444
}

.cr-pros__list li, .cr-cons__list li {
    padding: 7px 0;
    font-size: .875rem;
    color: #bbb;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5
}

.cr-pros__list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.cr-cons__list li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.cr-footer {
    background: #141414;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 48px 0 24px;
    margin-top: auto
}

.cr-footer__grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.cr-footer__brand-logo {
    height: 40px;
    width: auto;
    margin-bottom: 14px
}

.cr-footer__brand-desc {
    font-size: .83rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px
}

.cr-footer__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ef4444;
    color: #ef4444;
    font-size: .75rem;
    font-weight: 700
}

.cr-footer__col-title {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 14px
}

.cr-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cr-footer__nav a {
    font-size: .83rem;
    color: #666;
    transition: color .2s
}

.cr-footer__nav a:hover {
    color: #ff6b00
}

.cr-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.cr-footer__pay-item {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .72rem;
    font-weight: 600;
    color: #aaa
}

.cr-footer__licenses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.cr-footer__lic-item {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .7rem;
    color: #777
}

.cr-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px
}

.cr-footer__copyright {
    font-size: .78rem;
    color: #555
}

.cr-footer__legal {
    font-size: .75rem;
    color: #444;
    max-width: 700px;
    line-height: 1.6
}

.cr-footer__provider {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: #555
}

.cr-footer__provider img {
    height: 24px;
    width: auto;
    opacity: .5;
    transition: opacity .2s
}

.cr-footer__provider img:hover {
    opacity: .8
}

.cr-content-body {
    font-size: .95rem;
    color: #bbb;
    line-height: 1.8
}

.cr-content-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 14px
}

.cr-content-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 22px 0 10px
}

.cr-content-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    margin: 18px 0 8px
}

.cr-content-body p {
    margin-bottom: 14px
}

.cr-content-body ul, .cr-content-body ol {
    margin: 12px 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cr-content-body ul li {
    list-style: disc
}

.cr-content-body ol li {
    list-style: decimal
}

.cr-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block
}

.cr-content-body table th, .cr-content-body table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .1)
}

.cr-content-body table th {
    background: rgba(255, 107, 0, .1);
    color: #ff6b00;
    font-weight: 600;
    font-size: .82rem
}

.cr-content-body a {
    color: #ff6b00;
    text-decoration: underline
}

.cr-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, .2), transparent);
    margin: 48px 0
}

.cr-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 0, .08);
    border: 1px solid rgba(255, 107, 0, .18);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: .72rem;
    font-weight: 600;
    color: #ff6b00;
    margin-right: 4px;
    margin-bottom: 4px
}

.cr-info-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px
}

.cr-info-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: border-color .2s, transform .2s
}

.cr-info-card:hover {
    border-color: rgba(255, 107, 0, .2);
    transform: translateY(-2px)
}

.cr-info-card__icon {
    font-size: 1.8rem;
    margin-bottom: 8px
}

.cr-info-card__val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.cr-info-card__label {
    font-size: .75rem;
    color: #666
}

.cr-page-content {
    padding: 48px 0
}

.cr-page-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

.cr-page-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.cr-page-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ccc;
    margin: 20px 0 10px
}

.cr-page-content p {
    font-size: .9rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 14px
}

.cr-page-content ul {
    margin: 10px 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cr-page-content ul li {
    list-style: disc;
    font-size: .9rem;
    color: #999;
    line-height: 1.7
}

@media (max-width: 1024px) {
    .cr-header__inner {
        grid-template-columns:auto auto auto;
        gap: 12px
    }

    .cr-nav {
        display: none
    }

    .cr-burger {
        display: flex
    }

    .cr-info-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .cr-reviews-grid {
        grid-template-columns:1fr 1fr
    }

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

@media (max-width: 768px) {
    .cr-header__inner {
        grid-template-columns:auto 1fr auto auto
    }

    .cr-casino-card__inner {
        grid-template-columns:40px 1fr
    }

    .cr-casino-card__body {
        grid-template-columns:1fr;
        gap: 12px
    }

    .cr-casino-card__actions {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .05);
        flex-direction: row;
        flex-wrap: wrap;
        min-width: auto;
        margin-left: 100px;
    }

    .cr-app-block__inner {
        grid-template-columns:1fr
    }

    .cr-reviews-grid {
        grid-template-columns:1fr
    }

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

    .cr-author {
        grid-template-columns:1fr;
        text-align: center
    }

    .cr-author__avatar {
        margin: 0 auto
    }

    .cr-footer__grid {
        grid-template-columns:1fr
    }

    .cr-hero__stats {
        gap: 18px
    }

    .cr-info-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 480px) {
    .cr-section {
        padding: 36px 0
    }

    .cr-btn--lg {
        padding: 12px 22px;
        font-size: .9rem
    }

    .cr-hero__btns {
        flex-direction: column;
        align-items: flex-start
    }

    .cr-info-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

.wp-x3f9a {
    display: none !important
}

.elementor-xb4c2 {
    visibility: hidden
}

#wpadminbar {
    display: none
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: #0d0d0d
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: #444
}

.cr-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

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

.jueil {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.jueil h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.jueil h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin: 42px 0 16px;
}

.jueil h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: #f1f1f1;
    margin: 28px 0 14px;
}

.jueil p {
    font-size: 16px;
    line-height: 1.85;
    color: #c7c7c7;
    margin-bottom: 18px;
}

.jueil ul,
.jueil ol {
    margin: 0 0 24px 24px;
}

.jueil li {
    font-size: 15px;
    line-height: 1.75;
    color: #d2d2d2;
    margin-bottom: 10px;
}

.jueil strong,
.jueil b {
    color: #fff;
    font-weight: 700;
}

.jueil a {
    color: #ff6b00;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: .25s ease;
}

.jueil a:hover {
    color: #ff944d;
}

.jueil table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    overflow: hidden;
}

.jueil th {
    background: rgba(255, 107, 0, .12);
    color: #ff6b00;
    padding: 16px;
    font-size: 14px;
    text-align: left;
}

.jueil td {
    background: #1d1d1d;
    color: #d0d0d0;
    padding: 16px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.jueil blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: #1e1e1e;
    border-left: 4px solid #ff6b00;
    border-radius: 16px;
    color: #d7d7d7;
}

@media (max-width: 991px) {
    .jueil {
        padding: 30px 24px;
        border-radius: 24px;
        margin: 28px auto;
    }

    .jueil h1 {
        font-size: 36px;
    }

    .jueil h2 {
        font-size: 26px;
    }

    .jueil h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .jueil {
        width: 100%;
        max-width: 100%;
        margin: 18px auto;
        padding: 20px 14px;
        border-radius: 18px;
    }

    .jueil h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .jueil h2 {
        font-size: 22px;
        line-height: 1.35;
        margin: 28px 0 12px;
    }

    .jueil h3 {
        font-size: 18px;
        margin: 22px 0 10px;
    }

    .jueil p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .jueil ul,
    .jueil ol {
        margin: 0 0 18px 18px;
    }

    .jueil li {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .jueil a {
        display: inline-block;
        max-width: 100%;
        font-size: 13px;
        word-break: break-all;
    }

    .jueil table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .jueil th,
    .jueil td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .jueil blockquote {
        padding: 16px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .jueil {
        padding: 16px 12px;
        border-radius: 16px;
    }

    .jueil h1 {
        font-size: 24px;
    }

    .jueil h2 {
        font-size: 20px;
    }

    .jueil h3 {
        font-size: 17px;
    }

    .jueil p,
    .jueil li {
        font-size: 13.5px;
    }
}