@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
}

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

body {
    font-family: 'Rubik', sans-serif;
    background-color: #3e4464;
    color: #e8eaf0;
    line-height: 1.6;
    min-height: 100vh;
}

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

a {
    color: #af8c2f;
    text-decoration: none;
    transition: color .25s ease
}

a:hover {
    color: #d4ac48
}

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

ul {
    list-style: none
}

.x7f2a, .kp91z, .mn3bx, .qr47w, .zt6vl, .bw82m, .cj19n {
    display: none !important
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: none;
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    white-space: nowrap;
    letter-spacing: .3px
}

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

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

.btn--green {
    background: #3d8f58;
    color: #fff
}

.btn--gold {
    background: #af8c2f;
    color: #fff
}

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

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

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

.btn--lg {
    font-size: 1rem;
    padding: 13px 28px
}

.btn--full {
    width: 100%
}

.siteheader {
    background: #3a3e51;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

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

.logo-wrap {
    flex-shrink: 0
}

.logo-wrap img {
    height: 44px;
    width: auto;
    object-fit: contain
}

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

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cdd0de;
    font-size: .86rem;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 7px;
    transition: background .2s, color .2s
}

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

.main-nav a svg {
    flex-shrink: 0;
    opacity: .8
}

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

.header-right .btn {
    font-size: .8rem;
    padding: 8px 16px
}

.winner-ticker {
    background: #2c3047;
    border-radius: 7px;
    padding: 5px 12px;
    font-size: .78rem;
    color: #cdd0de;
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 220px
}

.winner-ticker .ticker-icon {
    color: #af8c2f;
    font-size: 1rem
}

.winner-ticker span {
    font-weight: 600;
    color: #fff
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #3a3e51;
    z-index: 800;
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 8px;
    overflow-y: auto
}

.mobile-menu.is-open {
    display: flex
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8eaf0;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.mobile-menu .mobile-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap
}

.breadcrumbs {
    padding: 10px 0;
    font-size: .82rem;
    color: #9da3bd
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: #6b7199
}

.breadcrumbs a {
    color: #af8c2f
}

.breadcrumbs a:hover {
    color: #d4ac48
}

.hero {
    position: relative;
    padding: 54px 0 42px;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-chick.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(62, 68, 100, .78) 0%, rgba(62, 68, 100, .97) 100%)
}

.hero-inner {
    position: relative;
    z-index: 1
}

.hero-text {
    max-width: 640px;
    margin-bottom: 36px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #af8c2f22;
    border: 1px solid #af8c2f44;
    color: #af8c2f;
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.hero h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px
}

.hero h1 span {
    color: #af8c2f
}

.hero p {
    font-size: 1rem;
    color: #c4c9de;
    line-height: 1.65;
    margin-bottom: 24px
}

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

.hero-tiles {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 38px
}

.hero-tile {
    background: #3a3e51;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    transition: transform .25s, box-shadow .25s
}

.hero-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .3)
}

.hero-tile .tile-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #af8c2f;
    margin-bottom: 5px
}

.hero-tile .tile-lbl {
    font-size: .78rem;
    color: #9da3bd;
    text-transform: uppercase;
    letter-spacing: .5px
}

.section {
    padding: 48px 0
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.section-sub {
    font-size: .9rem;
    color: #9da3bd;
    margin-bottom: 28px
}

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

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

.casino-card {
    background: #3a3e51;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    padding: 20px;
    display: grid;
    grid-template-columns:64px 1fr auto;
    gap: 16px;
    align-items: start;
    transition: box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden
}

.casino-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
    border-color: rgba(175, 140, 47, .3)
}

.casino-card.top-1 {
    border-color: #af8c2f88;
    background: linear-gradient(135deg, #3a3e51 60%, #3d3020 100%)
}

.casino-card.top-2 {
    border-color: #7a7a7a55
}

.casino-card.top-3 {
    border-color: #a0602255
}

.casino-num {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: .72rem;
    font-weight: 700;
    color: #af8c2f;
    background: #3e4464;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #af8c2f44
}

.casino-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #2c3047;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 6px
}

.casino-logo-wrap img {
    width: 60px;
    height: 60px;
    object-fit: contain
}

.casino-body {
    min-width: 0
}

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

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

.casino-flag {
    font-size: 1rem
}

.casino-au-badge {
    font-size: .7rem;
    background: #3d8f5822;
    border: 1px solid #3d8f5844;
    color: #5fc47d;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600
}

.casino-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 7px
}

.star {
    color: #af8c2f;
    font-size: .95rem
}

.star.empty {
    color: #5a6080
}

.casino-score {
    font-size: .85rem;
    font-weight: 700;
    color: #af8c2f;
    margin-left: 4px
}

.casino-bonus {
    font-size: .95rem;
    font-weight: 600;
    color: #5fc47d;
    margin-bottom: 8px
}

.casino-info-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
    gap: 6px;
    margin-bottom: 10px
}

.casino-info-item {
    font-size: .78rem;
    color: #9da3bd
}

.casino-info-item strong {
    color: #c8ccdc;
    display: block
}

.casino-pros {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.casino-pro {
    font-size: .75rem;
    background: #3d8f5815;
    border: 1px solid #3d8f5830;
    color: #5fc47d;
    padding: 3px 9px;
    border-radius: 50px
}

.casino-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .75rem;
    color: #6b7199;
    flex-wrap: wrap
}

.casino-meta a {
    color: #9da3bd;
    font-size: .73rem
}

.casino-meta a:hover {
    color: #af8c2f
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 130px;
    align-items: stretch
}

.casino-actions .btn {
    text-align: center;
    font-size: .8rem
}

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

.hidden-casino {
    display: none
}

.demo-block {
    background: #3a3e51;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.demo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    background: #2c3047
}

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

.demo-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.winners-block {
    background: #3a3e51;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden
}

.winners-header {
    display: grid;
    grid-template-columns:44px 1fr 1fr 100px;
    gap: 12px;
    padding: 12px 20px;
    background: #2c3047;
    font-size: .78rem;
    font-weight: 700;
    color: #9da3bd;
    text-transform: uppercase;
    letter-spacing: .5px
}

.winners-list {
    max-height: 420px;
    overflow-y: auto
}

.winner-row {
    display: grid;
    grid-template-columns:44px 1fr 1fr 100px;
    gap: 12px;
    padding: 11px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    align-items: center;
    font-size: .88rem;
    transition: background .2s
}

.winner-row:hover {
    background: rgba(255, 255, 255, .03)
}

.winner-pos {
    font-weight: 700;
    color: #af8c2f
}

.winner-pos.gold {
    color: #ffd700
}

.winner-pos.silver {
    color: #c0c0c0
}

.winner-pos.bronze {
    color: #cd7f32
}

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

.winner-game {
    color: #9da3bd;
    font-size: .8rem
}

.winner-amount {
    font-weight: 700;
    color: #5fc47d;
    text-align: right
}

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

.bonus-card {
    background: #3a3e51;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s, box-shadow .25s
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .3)
}

.bonus-casino-name {
    font-size: .82rem;
    color: #9da3bd;
    font-weight: 500
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #af8c2f;
    line-height: 1.1
}

.bonus-desc {
    font-size: .85rem;
    color: #c4c9de;
    line-height: 1.5;
    flex-grow: 1
}

.bonus-badge {
    display: inline-flex;
    font-size: .73rem;
    background: #3d8f5820;
    border: 1px solid #3d8f5840;
    color: #5fc47d;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
    align-self: flex-start
}

.bonuses-slider {
    display: none;
    overflow: hidden;
    position: relative
}

.bonuses-slider .bonus-card {
    flex-shrink: 0;
    width: 82vw;
    max-width: 320px
}

.bonuses-track {
    display: flex;
    gap: 16px;
    transition: transform .4s ease;
    padding: 4px 0
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 14px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b7199;
    border: none;
    cursor: pointer;
    transition: background .2s
}

.slider-dot.active {
    background: #af8c2f
}

.content-block {
    background: #3a3e51;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .07)
}

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

.content-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4c48a;
    margin: 22px 0 10px
}

.content-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #c8ccdc;
    margin: 16px 0 8px
}

.content-block p {
    font-size: .95rem;
    color: #c4c9de;
    line-height: 1.7;
    margin-bottom: 14px
}

.content-block ul, .content-block ol {
    margin: 0 0 14px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.content-block li {
    font-size: .92rem;
    color: #c4c9de;
    line-height: 1.6
}

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

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

.content-block a {
    color: #af8c2f
}

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

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

.content-block th {
    background: #2c3047;
    color: #e8eaf0;
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    font-size: .85rem;
    border: 1px solid rgba(255, 255, 255, .1)
}

.content-block td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    color: #c4c9de;
    font-size: .85rem;
    vertical-align: top
}

.content-block tr:nth-child(even) td {
    background: rgba(0, 0, 0, .1)
}

.content-block blockquote {
    border-left: 3px solid #af8c2f;
    padding: 12px 18px;
    background: #2c304788;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #d4c48a;
    font-style: italic
}

.content-block strong {
    color: #e8eaf0
}

.content-block em {
    color: #d4c48a
}

.content-block hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 24px 0
}

.content-block img {
    border-radius: 8px;
    margin: 12px 0
}

.author-block {
    background: #3a3e51;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.author-inner {
    display: grid;
    grid-template-columns:100px 1fr;
    gap: 22px;
    align-items: start
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #af8c2f;
    flex-shrink: 0
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px
}

.author-title {
    font-size: .82rem;
    color: #af8c2f;
    margin-bottom: 8px;
    font-weight: 500
}

.author-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.author-meta-item {
    font-size: .78rem;
    color: #9da3bd;
    display: flex;
    align-items: center;
    gap: 4px
}

.author-bio {
    font-size: .88rem;
    color: #c4c9de;
    line-height: 1.65;
    margin-bottom: 14px
}

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

.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2c3047;
    color: #c4c9de;
    font-size: .78rem;
    padding: 5px 12px;
    border-radius: 20px;
    transition: background .2s, color .2s
}

.author-social-link:hover {
    background: #af8c2f;
    color: #fff
}

.author-dates {
    font-size: .76rem;
    color: #6b7199;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.similar-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px
}

.similar-card {
    background: #3a3e51;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    transition: transform .25s, box-shadow .25s
}

.similar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.similar-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #2c3047;
    display: flex;
    align-items: center;
    justify-content: center
}

.similar-logo img {
    width: 68px;
    height: 68px;
    object-fit: contain
}

.similar-name {
    font-size: .9rem;
    font-weight: 700;
    color: #fff
}

.similar-desc {
    font-size: .78rem;
    color: #9da3bd;
    line-height: 1.5;
    flex-grow: 1
}

.similar-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap
}

.similar-btns .btn {
    font-size: .73rem;
    padding: 6px 12px
}

.sitefooter {
    background: #3a3e51;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 48px 0 24px;
    margin-top: auto
}

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

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

.footer-tagline {
    font-size: .82rem;
    color: #9da3bd;
    line-height: 1.55
}

.footer-col-title {
    font-size: .85rem;
    font-weight: 700;
    color: #e8eaf0;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px
}

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

.footer-links a {
    font-size: .84rem;
    color: #9da3bd;
    transition: color .2s
}

.footer-links a:hover {
    color: #af8c2f
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center
}

.payment-badge {
    background: #2c3047;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .75rem;
    color: #c4c9de;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .07)
}

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

.trust-badge {
    background: #2c3047;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: .72rem;
    color: #9da3bd;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s, color .2s
}

.trust-badge:hover {
    border-color: #af8c2f44;
    color: #d4ac48
}

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

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #2c3047;
    border-radius: 8px;
    color: #c4c9de;
    transition: background .2s, color .2s;
    font-size: .88rem
}

.footer-social:hover {
    background: #af8c2f;
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-legal {
    font-size: .75rem;
    color: #6b7199;
    line-height: 1.6
}

.footer-copyright {
    font-size: .78rem;
    color: #6b7199;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.footer-flag {
    font-size: 1.2rem
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.footer-provider img {
    height: 24px;
    width: auto;
    filter: brightness(.7);
    transition: filter .2s
}

.footer-provider img:hover {
    filter: brightness(1)
}

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #c0392b;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 50%
}


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

.faq-item {
    background: #3a3e51;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    overflow: hidden
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    cursor: pointer;
    font-weight: 600;
    color: #e8eaf0;
    font-size: .95rem;
    user-select: none;
    transition: background .2s
}

.faq-q:hover {
    background: rgba(255, 255, 255, .04)
}

.faq-q svg {
    flex-shrink: 0;
    transition: transform .3s
}

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

.faq-a {
    display: none;
    padding: 0 18px 15px;
    font-size: .88rem;
    color: #c4c9de;
    line-height: 1.65
}

.faq-item.open .faq-a {
    display: block
}

.box {
    border-radius: 14px
}

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

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

.wp-block-placeholder {
    display: none
}

.post-meta, .entry-meta, .wp-caption, .screen-reader-text {
    display: none
}

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

::-webkit-scrollbar-track {
    background: #2c3047
}

::-webkit-scrollbar-thumb {
    background: #5a6080;
    border-radius: 4px
}

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

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

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

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

    .bonuses-section .bonuses-grid {
        display: none
    }

    .bonuses-slider {
        display: block
    }

    .slider-dots {
        display: flex
    }
}

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

    .main-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero {
        padding: 36px 0 30px
    }

    .hero-tiles {
        grid-template-columns:repeat(2, 1fr)
    }

    .author-inner {
        grid-template-columns:72px 1fr;
        gap: 14px
    }

    .author-avatar {
        width: 72px;
        height: 72px
    }

    .winners-header, .winner-row {
        grid-template-columns:36px 1fr 100px
    }

    .winner-game {
        display: none
    }

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

    .footer-grid {
        grid-template-columns:1fr
    }

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

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

@media (max-width: 480px) {
    .hero-tiles {
        grid-template-columns:repeat(2, 1fr)
    }

    .casino-card {
        grid-template-columns:1fr;
        padding: 16px
    }

    .casino-logo-wrap {
        width: 48px;
        height: 48px
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .similar-grid {
        grid-template-columns:1fr 1fr
    }

    .sticky-widget {
        width: 170px;
        right: 12px;
        bottom: 16px
    }

    .container {
        padding: 0 12px
    }

    .section {
        padding: 32px 0
    }
}

.info-page-content {
    background: #3a3e51;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.info-page-content h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.info-page-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4c48a;
    margin: 24px 0 10px
}

.info-page-content p {
    font-size: .92rem;
    color: #c4c9de;
    line-height: 1.7;
    margin-bottom: 14px
}

.info-page-content ul {
    margin: 0 0 14px 20px
}

.info-page-content ul li {
    list-style: disc;
    font-size: .9rem;
    color: #c4c9de;
    margin-bottom: 6px
}

.info-page-content a {
    color: #af8c2f
}

.info-page-content strong {
    color: #e8eaf0
}

.page-hero {
    background: #3a3e51;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .07)
}

.page-hero h1 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.page-hero p {
    font-size: .95rem;
    color: #9da3bd
}

.chicken-demo-x9k4m7p {
    width: 100%;
    padding: 48px 18px;
    position: relative;
}

.chicken-demo-container-v8p3k1x {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.chicken-demo-title-qz9m3k7p {
    margin: 0 0 18px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.chicken-demo-wrapper-lv8k3m2p {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.chicken-demo-description-mx7k9p4t {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    line-height: 1.5;
}

.chicken-demo-frame-nz5k2m8p {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #2c3047;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
    touch-action: manipulation;
}

.chicken-demo-iframe-qx7k4m9p {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    pointer-events: auto;
    touch-action: manipulation;
}

.chicken-demo-actions-px2k8m5t {
    position: relative;
    z-index: 5;
    margin-top: 16px;
    pointer-events: auto;
}

.chicken-demo-button-kz9m3p7x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 36px;
    background: #3d8f58;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 10px;
    transition: transform .25s ease, background .25s ease;
}

.chicken-demo-button-kz9m3p7x:hover {
    background: #49a96a;
    color: #fff;
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .chicken-demo-x9k4m7p {
        min-height: 100svh;
        display: flex;
        align-items: stretch;
        padding: 0;
    }

    .chicken-demo-x9k4m7p > .chicken-demo-container-v8p3k1x {
        width: 100%;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        padding: 18px 14px 20px;
    }

    .chicken-demo-title-qz9m3k7p {
        flex: 0 0 auto;
        margin-bottom: 12px;
        font-size: 22px;
    }

    .chicken-demo-wrapper-lv8k3m2p {
        flex: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .chicken-demo-description-mx7k9p4t {
        flex: 0 0 auto;
        margin-bottom: 14px;
        font-size: 15px;
    }

    .chicken-demo-frame-nz5k2m8p {
        flex: 1;
        width: 100%;
        min-height: 0;
        padding-bottom: 0;
        border-radius: 14px;
        position: relative;
        touch-action: manipulation;
    }

    .chicken-demo-iframe-qx7k4m9p {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: auto;
        touch-action: manipulation;
    }

    .chicken-demo-actions-px2k8m5t {
        flex: 0 0 auto;
        margin-top: 14px;
        position: relative;
        z-index: 5;
        pointer-events: auto;
    }

    .chicken-demo-button-kz9m3p7x {
        width: 100%;
        text-align: center;
    }

    .sticky-widget,
    #j-sticky-widget,
    .fixed-widget-bottom-zx9k4m2p {
        pointer-events: none !important;
    }

    .sticky-widget *,
    #j-sticky-widget *,
    .fixed-widget-bottom-zx9k4m2p * {
        pointer-events: auto;
    }
}