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

html {
    scroll-behavior: smooth;
    background: #0d0d0d
}

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

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

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

a:hover {
    color: #ff8c38
}

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif
}

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

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

.box {
    border-radius: 12px
}

.x7f3a1 {
    display: none
}

.kp91z2b {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.m4r9q0x {
    opacity: 0;
    pointer-events: none;
    position: absolute
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.4
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35)
}

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

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

.btn--orange:hover {
    background: #e55e00;
    color: #fff
}

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

.btn--green:hover {
    background: #16a34a;
    color: #fff
}

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

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

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

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

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

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    height: 68px
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0
}

.header__logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.header__logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b00;
    letter-spacing: .5px
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0
}

.header__nav li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c0c0c0;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 6px;
    transition: background .2s, color .2s
}

.header__nav li a:hover {
    background: rgba(255, 107, 0, .12);
    color: #ff6b00
}

.header__nav li a svg {
    flex-shrink: 0;
    opacity: .75
}

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

.header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap
}

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

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

.header__online strong {
    color: #22c55e;
    font-weight: 600
}

.lang-dropdown {
    position: relative
}

.lang-dropdown__btn {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    color: #c0c0c0;
    font-size: 13px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background .2s
}

.lang-dropdown__btn:hover {
    background: rgba(255, 255, 255, .1)
}

.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    min-width: 130px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    overflow: hidden;
    display: none
}

.lang-dropdown__menu.open {
    display: block;
    animation: fadeInDown .15s ease
}

.lang-dropdown__menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #c0c0c0;
    font-size: 13px;
    transition: background .2s
}

.lang-dropdown__menu a:hover {
    background: rgba(255, 107, 0, .1);
    color: #ff6b00
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8e8e8;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
    opacity: 0
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: #141414;
    z-index: 999;
    transform: translateX(100%);
    transition: transform .3s ease;
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto
}

.mobile-nav.open {
    transform: translateX(0)
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0c0c0;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

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

.mobile-nav__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 40px
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('/hero-chicken-road.webp') center/cover no-repeat;
    filter: brightness(.45)
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, .9) 0%, rgba(255, 107, 0, .1) 100%)
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%
}

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

.hero__title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .6)
}

.hero__title span {
    color: #ff6b00
}

.hero__sub {
    font-size: clamp(14px, 2vw, 18px);
    color: #c0c0c0;
    margin-bottom: 28px;
    max-width: 560px;
    line-height: 1.6
}

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

.hero__stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap
}

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

.hero__stat-val {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b00
}

.hero__stat-lbl {
    font-size: 12px;
    color: #6b7280
}

.section {
    padding: 40px 0
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px
}

.section-title svg {
    flex-shrink: 0;
    color: #ff6b00
}

.section-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px
}

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

.toc {
    background: #141414;
    border: 1px solid rgba(255, 107, 0, .2);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 32px
}

.toc__title {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.toc__list {
    list-style: none;
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
    gap: 8px
}

.toc__list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c0c0c0;
    font-size: 13px;
    padding: 7px 10px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    border: 1px solid transparent
}

.toc__list li a:hover {
    background: rgba(255, 107, 0, .08);
    color: #ff6b00;
    border-color: rgba(255, 107, 0, .2)
}

.toc__list li a svg {
    flex-shrink: 0;
    opacity: .6
}

.casino-section {
    margin-bottom: 40px
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.casino-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns:80px 1fr auto;
    gap: 16px;
    align-items: center;
    transition: border-color .25s, transform .25s;
    position: relative;
    overflow: hidden
}

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

.casino-card.top3 {
    border-color: rgba(255, 107, 0, .4);
    background: linear-gradient(135deg, #1a1200 0%, #141414 60%)
}

.casino-card.top3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, #ffd700)
}

.casino-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 22px;
    height: 22px;
    background: #ff6b00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.casino-num.gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00)
}

.casino-num.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080)
}

.casino-num.bronze {
    background: linear-gradient(135deg, #cd7f32, #a0522d)
}

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

.casino-card__body {
    min-width: 0
}

.casino-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap
}

.casino-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.casino-card__flag {
    font-size: 16px
}

.casino-card__avail {
    font-size: 11px;
    color: #22c55e;
    background: rgba(34, 197, 94, .12);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, .25)
}

.casino-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #ffd700
}

.casino-card__stars {
    letter-spacing: -2px
}

.casino-card__bonus {
    font-size: 14px;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 8px
}

.casino-card__perks {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px
}

.casino-card__perk {
    font-size: 11px;
    color: #c0c0c0;
    background: rgba(255, 255, 255, .05);
    padding: 3px 9px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.casino-card__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #6b7280
}

.casino-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px
}

.casino-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    min-width: 120px
}

.casino-card__actions .btn {
    width: 100%;
    font-size: 12px
}

.ajax-more {
    text-align: center;
    margin-top: 20px
}

.ajax-spinner {
    display: none;
    justify-content: center;
    padding: 20px
}

.ajax-spinner .spin {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 107, 0, .2);
    border-top-color: #ff6b00;
    border-radius: 50%;
    animation: spin .7s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.winners {
    background: #141414;
    border: 1px solid rgba(255, 107, 0, .15);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px
}

.winners__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px
}

.winners__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed
}

.winners__table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .6px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.winners__table td {
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    vertical-align: middle
}

.winners__table tr:last-child td {
    border-bottom: none
}

.winners__table tr:hover td {
    background: rgba(255, 107, 0, .04)
}

.winner-rank {
    font-weight: 700;
    color: #6b7280;
    font-size: 12px
}

.winner-rank.r1 {
    color: #ffd700
}

.winner-rank.r2 {
    color: #c0c0c0
}

.winner-rank.r3 {
    color: #cd7f32
}

.winner-nick {
    color: #e8e8e8;
    font-weight: 500
}

.winner-amount {
    color: #22c55e;
    font-weight: 600;
    text-align: right
}

.winner-mult {
    color: #ff6b00;
    font-size: 12px;
    text-align: right
}

.winner-time {
    color: #6b7280;
    font-size: 11px;
    text-align: right
}

.winners-overflow {
    overflow-x: auto
}

.bonuses {
    margin-bottom: 40px
}

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

.bonus-card {
    background: #141414;
    border: 1px solid rgba(255, 107, 0, .2);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .25s, transform .25s
}

.bonus-card:hover {
    border-color: #ff6b00;
    transform: translateY(-3px)
}

.bonus-card__badge {
    font-size: 11px;
    font-weight: 600;
    color: #ff6b00;
    background: rgba(255, 107, 0, .1);
    padding: 3px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, .25);
    display: inline-block;
    width: fit-content
}

.bonus-card__casino {
    font-size: 13px;
    color: #6b7280
}

.bonus-card__amount {
    font-size: 26px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1.2
}

.bonus-card__desc {
    font-size: 13px;
    color: #c0c0c0;
    line-height: 1.55
}

.bonus-card__terms {
    font-size: 11px;
    color: #6b7280;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 10px
}

.demo-block {
    background: #141414;
    border: 1px solid rgba(255, 107, 0, .2);
    border-radius: 12px;
    margin-bottom: 40px
}

.demo-block__header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.demo-block__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff
}

.demo-block__frame {
    position: relative;
    padding-bottom: 56.25%;
    background: #0d0d0d
}

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

.demo-block__footer {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.demo-block__info {
    font-size: 13px;
    color: #6b7280
}

.faq {
    margin-bottom: 40px
}

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

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

.faq-item.open {
    border-color: rgba(255, 107, 0, .35)
}

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

.faq-item__q:hover {
    color: #ff6b00
}

.faq-item__q svg {
    flex-shrink: 0;
    transition: transform .3s;
    color: #ff6b00
}

.faq-item.open .faq-item__q svg {
    transform: rotate(180deg)
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease
}

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

.faq-item__a p {
    font-size: 14px;
    color: #c0c0c0;
    line-height: 1.65
}

.content-block {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 15px;
    color: #c0c0c0
}

.content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    border-left: 3px solid #ff6b00;
    padding-left: 12px
}

.content-block h2:first-child {
    margin-top: 0
}

.content-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e8e8e8;
    margin: 18px 0 8px
}

.content-block p {
    margin-bottom: 14px
}

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

.content-block li {
    margin-bottom: 6px;
    line-height: 1.6
}

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

.content-block th {
    background: rgba(255, 107, 0, .12);
    color: #ff6b00;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid rgba(255, 107, 0, .2);
    font-weight: 600
}

.content-block td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .06);
    color: #c0c0c0;
    vertical-align: top
}

.content-block tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.content-block a {
    color: #ff6b00
}

.content-block a:hover {
    color: #ff8c38
}

.content-block strong {
    color: #e8e8e8;
    font-weight: 600
}

.content-block blockquote {
    border-left: 3px solid #ff6b00;
    padding: 10px 18px;
    background: rgba(255, 107, 0, .06);
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #c0c0c0;
    font-style: italic
}

.author-block {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 32px
}

.author-block__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #ff6b00
}

.author-block__info {
    min-width: 0
}

.author-block__label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 4px
}

.author-block__name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.author-block__bio {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.55;
    margin-bottom: 8px
}

.author-block__link {
    font-size: 13px;
    color: #ff6b00;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.author-block__link:hover {
    color: #ff8c38
}

.footer {
    background: #141414;
    border-top: 1px solid rgba(255, 107, 0, .15);
    padding: 40px 20px 20px;
    margin-top: auto
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto
}

.footer__top {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none
}

.footer__logo img {
    height: 36px
}

.footer__logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b00
}

.footer__about {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6
}

.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: #e8e8e8;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 14px
}

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

.footer__links a {
    color: #9ca3af;
    font-size: 13px;
    transition: color .2s
}

.footer__links a:hover {
    color: #ff6b00
}

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

.footer__pay-badge {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px
}

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

.footer__trust-item {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600
}

.footer__provider {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 20px
}

.footer__provider img {
    height: 24px;
    filter: invert(1) brightness(.6)
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin: 20px 0
}

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

.footer__copy {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6
}

.footer__legal {
    font-size: 11px;
    color: #374151;
    max-width: 900px;
    line-height: 1.55;
    margin-top: 12px
}

.page-content {
    background: #141414;
    border-radius: 12px;
    padding: 32px 36px;
    margin: 24px 0 40px
}

.page-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    border-left: 4px solid #ff6b00;
    padding-left: 14px
}

.page-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #e8e8e8;
    margin: 24px 0 10px
}

.page-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #c0c0c0;
    margin: 16px 0 8px
}

.page-content p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px
}

.page-content ul, .page-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: #9ca3af;
    font-size: 14px
}

.page-content li {
    margin-bottom: 6px;
    line-height: 1.6
}

.page-content a {
    color: #ff6b00
}

.page-content strong {
    color: #e8e8e8
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    padding: 12px 0;
    flex-wrap: wrap
}

.breadcrumb a {
    color: #9ca3af;
    transition: color .2s
}

.breadcrumb a:hover {
    color: #ff6b00
}

.breadcrumb span {
    color: #ff6b00
}

.badge-new {
    background: #ff6b00;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.badge-hot {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

.fade-in {
    animation: fadeInUp .5s ease both
}

@media (max-width: 768px) {
    .header__nav {
        display: none
    }

    .header__inner {
        grid-template-columns:auto 1fr auto auto;
        gap: 8px
    }

    .burger {
        display: flex
    }

    .hero {
        min-height: 400px
    }

    .hero__stats {
        gap: 16px
    }

    .casino-card {
        grid-template-columns:60px 1fr;
        gap: 10px
    }

    .casino-card__actions {
        grid-column: 1/-1;
        flex-direction: row;
        flex-wrap: wrap
    }

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

    .bonus-grid .bonus-card:not(.slide-active) {
        display: none
    }

    .bonus-grid.show-all .bonus-card {
        display: block
    }

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

    .winners__table th:nth-child(4), .winners__table td:nth-child(4), .winners__table th:nth-child(5), .winners__table td:nth-child(5) {
        display: none
    }

    .page-content {
        padding: 20px 18px
    }

    .content-block {
        padding: 20px 18px
    }

    .widget {
        padding: 10px 14px
    }

    .widget__text {
        font-size: 13px
    }

    .demo-block__header {
        flex-direction: column;
        align-items: flex-start
    }

    .author-block {
        flex-direction: column
    }

    .author-block__avatar {
        width: 54px;
        height: 54px
    }
}

@media (max-width: 480px) {
    .hero__btns {
        flex-direction: column
    }

    .hero__btns .btn {
        width: 100%
    }

    .casino-card {
        grid-template-columns:1fr
    }

    .casino-card__logo {
        width: 64px;
        height: 44px
    }

    .bonus-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory
    }

    .bonus-card {
        min-width: 260px;
        scroll-snap-align: start
    }
}

.wp-block-group {
    display: block
}

.entry-content {
    line-height: 1.7
}

.elementor-widget-container {
    display: block
}

.yoast-seo-meta {
    display: none
}

#wpadminbar {
    display: none !important
}

.site-main {
    display: block
}
