:root {
    --bg-primary: #06060e;
    --bg-secondary: #0a0a18;
    --bg-card: rgba(14, 14, 30, 0.85);
    --text-primary: #f0e6d3;
    --text-secondary: #8a8a9a;
    --accent: #ff3366;
    --accent2: #ffcc00;
    --accent3: #00e5ff;
    --green: #00ff88;
    --gold: #ffb800;
    --red: #ff3366;
    --border: rgba(255,255,255,0.08);
    --border-glow: rgba(255, 51, 102, 0.4);
    --star: #ffcc00;
    --radius-card: 16px;
    --shadow-gold: 0 0 30px rgba(255, 184, 0, 0.3);
    --shadow-neon: 0 0 30px rgba(255, 51, 102, 0.3);
    --shadow-cyan: 0 0 30px rgba(0, 229, 255, 0.3);
}

/* Blog */
.blog-index-hero {
    position: relative;
    overflow: hidden;
    padding: 66px 0 58px;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(105deg, rgba(9, 13, 19, 0.98), rgba(17, 24, 30, 0.92)),
        url("/images/brand/slotreview-mark.svg") right 7% center / 220px no-repeat;
}

.blog-index-hero::after,
.blog-article-header::after,
.author-profile-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, #ffc94a, #4de2bc 58%, transparent);
}

.blog-hero-kicker,
.author-profile-kicker {
    display: block;
    margin-bottom: 13px;
    color: #4de2bc;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-index-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: 48px;
    line-height: 1.08;
}

.blog-index-hero > .container > p {
    max-width: 800px;
    margin: 20px 0 0;
    color: #c5ced7;
    font-size: 18px;
    line-height: 1.7;
}

.blog-index-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 26px;
    color: #8e9aa7;
    font-size: 13px;
}

.blog-index-stats strong {
    margin-left: 5px;
    color: #ffc94a;
}

.blog-directory,
.author-posts,
.blog-more-posts {
    padding: 60px 0 82px;
    background: #0b1016;
}

.blog-category-nav {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 34px;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.blog-category-nav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: #aeb8c3;
    background: #111821;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.blog-category-nav a:hover,
.blog-category-nav a.active {
    border-color: rgba(77, 226, 188, 0.65);
    color: #08110f;
    background: #4de2bc;
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-grid .blog-listing-card {
    min-width: 0;
}

.blog-listing-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: #111821;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-listing-card:hover {
    border-color: rgba(255, 201, 74, 0.55);
    transform: translateY(-2px);
}

.blog-listing-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0f15;
}

.blog-listing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.blog-listing-media img[src*="slotreview-mark"] {
    padding: 13%;
    object-fit: contain;
}

.blog-listing-card:hover .blog-listing-media img {
    transform: scale(1.025);
}

.blog-featured-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 201, 74, 0.65);
    border-radius: 3px;
    color: #171103;
    background: #ffc94a;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-listing-body {
    display: flex;
    flex-direction: column;
    min-height: 290px;
    padding: 20px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #7f8c99;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-card-meta a {
    color: #4de2bc;
    text-decoration: none;
}

.blog-listing-body h2,
.blog-listing-body h3 {
    margin: 15px 0 11px;
    color: #fff;
    font-size: 22px;
    line-height: 1.28;
}

.blog-listing-body h3 {
    font-size: 21px;
}

.blog-listing-body h2 a,
.blog-listing-body h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-listing-body h2 a:hover,
.blog-listing-body h3 a:hover {
    color: #ffc94a;
}

.blog-listing-body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 22px;
    color: #aeb8c3;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-listing-body > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-card-author {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    color: #d7dde4;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.blog-card-author img,
.blog-card-author > span:first-child {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(77, 226, 188, 0.35);
    border-radius: 50%;
    object-fit: cover;
    color: #4de2bc;
    background: #0b1118;
}

.blog-card-author > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-read-link {
    flex: 0 0 auto;
    color: #ffc94a;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-empty-state {
    padding: 48px 22px;
    border-block: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
}

.blog-empty-state h2 {
    margin: 0 0 12px;
    color: #fff;
}

.blog-empty-state p {
    margin: 0;
    color: #9ca8b4;
}

.blog-article {
    background: #0b1016;
}

.blog-article-header {
    position: relative;
    padding: 72px 0 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0d131b;
}

.blog-article-category {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 10px;
    border: 1px solid rgba(77, 226, 188, 0.45);
    border-radius: 3px;
    color: #4de2bc;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-article-header h1 {
    max-width: 920px;
    margin: 0;
    color: #fff;
    font-size: 50px;
    line-height: 1.08;
}

.blog-article-lead {
    max-width: 820px;
    margin: 24px 0 0;
    color: #c5ced7;
    font-size: 19px;
    line-height: 1.7;
}

.blog-byline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.blog-byline-author {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.blog-byline-author > img,
.blog-byline-author > span:first-child {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(77, 226, 188, 0.45);
    border-radius: 50%;
    object-fit: cover;
    color: #4de2bc;
    background: #101a22;
    font-weight: 900;
}

.blog-byline-author strong,
.blog-byline-author small {
    display: block;
}

.blog-byline-author small {
    margin-top: 4px;
    color: #8794a1;
    font-size: 12px;
}

.blog-byline-meta {
    display: flex;
    gap: 18px;
    color: #8794a1;
    font-size: 12px;
}

.blog-article-cover {
    width: min(1120px, calc(100% - 40px));
    margin: 42px auto 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: #111821;
}

.blog-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-copy {
    padding: 70px 0 34px;
}

.blog-article-copy .review-content,
.author-profile-bio .review-content {
    max-width: 860px;
    color: #cbd3dc;
    font-size: 18px;
    line-height: 1.82;
}

.blog-article-copy .review-content > *:first-child,
.author-profile-bio .review-content > *:first-child {
    margin-top: 0;
}

.blog-article-copy .review-content h2,
.author-profile-bio .review-content h2 {
    position: relative;
    margin: 54px 0 20px;
    padding-left: 18px;
    color: #fff3d0;
    font-size: 30px;
    line-height: 1.25;
}

.blog-article-copy .review-content h2::before,
.author-profile-bio .review-content h2::before {
    position: absolute;
    top: 0.12em;
    bottom: 0.12em;
    left: 0;
    width: 4px;
    content: "";
    background: #ffc94a;
}

.blog-article-copy .review-content h3,
.author-profile-bio .review-content h3 {
    margin: 38px 0 16px;
    color: #4de2bc;
    font-size: 23px;
}

.blog-article-copy .review-content p,
.author-profile-bio .review-content p {
    margin: 0 0 24px;
}

.blog-article-copy .review-content ul,
.blog-article-copy .review-content ol,
.author-profile-bio .review-content ul,
.author-profile-bio .review-content ol {
    margin: 24px 0 32px;
    padding-left: 28px;
}

.blog-article-copy .review-content li,
.author-profile-bio .review-content li {
    margin: 10px 0;
}

.blog-article-copy .review-content a,
.author-profile-bio .review-content a {
    color: #4de2bc;
    text-underline-offset: 4px;
}

.blog-article-copy .review-content blockquote,
.author-profile-bio .review-content blockquote {
    margin: 34px 0;
    padding: 24px 28px;
    border-left: 4px solid #ffc94a;
    background: rgba(255, 201, 74, 0.06);
    color: #f0f3f6;
}

.blog-article-copy .review-content img,
.author-profile-bio .review-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.author-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.author-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid rgba(77, 226, 188, 0.28);
    border-radius: 6px;
    color: #d8e0e8;
    background: rgba(77, 226, 188, 0.04);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}
.author-social-links a:hover {
    border-color: #4de2bc;
    color: #4de2bc;
}
.author-slot-reviews {
    padding: 64px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: #080c11;
}

.blog-article-copy .review-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.blog-article-copy .review-content th,
.blog-article-copy .review-content td {
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
}

.blog-article-copy .review-content th {
    color: #ffc94a;
    background: #121a23;
}

.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 54px;
}

.blog-article-tags span,
.author-expertise span {
    padding: 7px 10px;
    border: 1px solid rgba(77, 226, 188, 0.25);
    border-radius: 3px;
    color: #9edfd0;
    background: rgba(77, 226, 188, 0.05);
    font-size: 12px;
    font-weight: 800;
}

.blog-related-entities {
    padding: 58px 0 68px;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background: #0e151d;
}

.blog-section-heading {
    margin-bottom: 26px;
}

.blog-section-heading > span {
    color: #4de2bc;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-section-heading h2 {
    margin: 7px 0 0;
    color: #fff;
    font-size: 28px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.blog-related-card {
    min-width: 0;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    background: #121a23;
    text-decoration: none;
}

.blog-related-card:hover {
    border-color: #4de2bc;
}

.blog-related-card > span,
.blog-related-card > strong {
    display: block;
}

.blog-related-card > span {
    margin-bottom: 7px;
    color: #83909d;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-related-card > strong {
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.blog-related-card.is-bonus {
    border-color: rgba(255, 201, 74, 0.28);
}

.blog-author-box {
    padding: 62px 0;
    background: #0b1016;
}

.blog-author-box-inner {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding-block: 28px;
    border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author-box-inner > img,
.blog-author-placeholder {
    display: grid;
    width: 90px;
    height: 90px;
    place-items: center;
    border: 1px solid rgba(77, 226, 188, 0.45);
    border-radius: 50%;
    object-fit: cover;
    color: #4de2bc;
    background: #111a22;
    font-size: 28px;
    font-weight: 900;
}

.blog-author-box-inner > div > span {
    color: #ffc94a;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-author-box h2 {
    margin: 6px 0 8px;
    font-size: 24px;
}

.blog-author-box h2 a {
    color: #fff;
    text-decoration: none;
}

.blog-author-box p {
    margin: 0;
    color: #aeb8c3;
    line-height: 1.65;
}

.blog-more-posts {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.author-profile-hero {
    position: relative;
    padding: 70px 0 62px;
    background: #0d141c;
}

.author-profile-main {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 34px;
}

.author-profile-main > img,
.author-profile-placeholder {
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border: 2px solid rgba(77, 226, 188, 0.5);
    border-radius: 50%;
    object-fit: cover;
    color: #4de2bc;
    background: #111b24;
    font-size: 48px;
    font-weight: 900;
}

.author-profile-main h1 {
    margin: 0;
    color: #fff;
    font-size: 46px;
    line-height: 1.1;
}

.author-profile-role {
    margin: 10px 0 0;
    color: #ffc94a;
    font-weight: 800;
}

.author-profile-main div > p:last-child {
    max-width: 720px;
    margin: 17px 0 0;
    color: #b5c0cb;
    line-height: 1.7;
}

.author-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.author-profile-bio {
    padding: 66px 0;
    background: #0b1016;
}

.author-posts {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
    .blog-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .blog-index-hero {
        padding: 46px 0 42px;
        background:
            linear-gradient(105deg, rgba(9, 13, 19, 0.98), rgba(17, 24, 30, 0.95)),
            url("/images/brand/slotreview-mark.svg") right -60px center / 190px no-repeat;
    }

    .blog-index-hero h1,
    .blog-article-header h1,
    .author-profile-main h1 {
        font-size: 34px;
    }

    .blog-index-hero > .container > p,
    .blog-article-lead {
        font-size: 16px;
    }

    .blog-directory,
    .author-posts,
    .blog-more-posts {
        padding: 44px 0 60px;
    }

    .blog-listing-grid,
    .blog-grid,
    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-listing-body {
        min-height: 270px;
    }

    .blog-article-header {
        padding: 48px 0 45px;
    }

    .blog-byline {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-byline-meta {
        flex-wrap: wrap;
    }

    .blog-article-cover {
        width: calc(100% - 30px);
        margin-top: 28px;
    }

    .blog-article-copy {
        padding-top: 50px;
    }

    .blog-article-copy .review-content,
    .author-profile-bio .review-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .blog-article-copy .review-content h2,
    .author-profile-bio .review-content h2 {
        margin-top: 44px;
        font-size: 26px;
    }

    .blog-article-copy .review-content table {
        display: block;
        overflow-x: auto;
    }

    .blog-author-box-inner {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 16px;
    }

    .blog-author-box-inner > img,
    .blog-author-placeholder {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .author-profile-hero {
        padding: 48px 0 46px;
    }

    .author-profile-main {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 18px;
    }

    .author-profile-main > img,
    .author-profile-placeholder {
        width: 86px;
        height: 86px;
        font-size: 30px;
    }
}

/* Editable service pages */
.content-page {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #0b1016;
}

.content-page-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
    border-bottom: 1px solid rgba(77, 226, 188, 0.2);
    background:
        linear-gradient(110deg, rgba(10, 15, 21, 0.98), rgba(14, 25, 29, 0.94)),
        url("/images/brand/slotreview-mark.svg") right 8% center / 210px no-repeat;
}

.content-page-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, #ffc94a, #4de2bc 55%, transparent);
}

.content-page-kicker {
    display: block;
    margin-bottom: 14px;
    color: #4de2bc;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.content-page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
}

.content-page-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #c7d0da;
    font-size: 1.12rem;
    line-height: 1.7;
}

.content-page-hero time {
    display: block;
    margin-top: 24px;
    color: #8e9aa7;
    font-size: 0.78rem;
}

.content-page-copy {
    padding: 72px 0 90px;
}

.content-page-copy .review-content {
    max-width: 860px;
    color: #cbd3dc;
    font-size: 1.06rem;
    line-height: 1.82;
}

.content-page-copy .review-content > *:first-child {
    margin-top: 0;
}

.content-page-copy .review-content > *:last-child {
    margin-bottom: 0;
}

.content-page-copy .review-content h2 {
    position: relative;
    margin: 52px 0 20px;
    padding-left: 18px;
    color: #fff4d4;
    font-size: 1.8rem;
    line-height: 1.25;
}

.content-page-copy .review-content h2::before {
    position: absolute;
    top: 0.1em;
    bottom: 0.1em;
    left: 0;
    width: 4px;
    border-radius: 2px;
    content: "";
    background: #ffc94a;
    box-shadow: 0 0 16px rgba(255, 201, 74, 0.32);
}

.content-page-copy .review-content h3 {
    margin: 36px 0 16px;
    color: #4de2bc;
    font-size: 1.35rem;
}

.content-page-copy .review-content p {
    margin: 0 0 22px;
}

.content-page-copy .review-content ul,
.content-page-copy .review-content ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 24px 0 32px;
    padding: 0;
    list-style: none;
}

.content-page-copy .review-content li {
    position: relative;
    min-width: 0;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-page-copy .review-content li::before {
    position: absolute;
    top: 1.35em;
    left: 3px;
    width: 10px;
    height: 10px;
    border: 2px solid #4de2bc;
    content: "";
    transform: rotate(45deg);
}

.content-page-copy .review-content a {
    color: #4de2bc;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.content-page-copy .review-content blockquote {
    margin: 32px 0;
    padding: 22px 26px;
    border-left: 4px solid #ffc94a;
    background: rgba(255, 201, 74, 0.06);
    color: #eef2f6;
}

@media (max-width: 760px) {
    .content-page-hero {
        padding: 48px 0 46px;
        background:
            linear-gradient(110deg, rgba(10, 15, 21, 0.98), rgba(14, 25, 29, 0.96)),
            url("/images/brand/slotreview-mark.svg") right -60px center / 190px no-repeat;
    }

    .content-page-hero h1 {
        font-size: 2.25rem;
    }

    .content-page-hero p {
        font-size: 1rem;
    }

    .content-page-copy {
        padding: 52px 0 66px;
    }

    .content-page-copy .review-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .content-page-copy .review-content h2 {
        margin-top: 42px;
        font-size: 1.5rem;
    }

    .content-page-copy .review-content ul,
    .content-page-copy .review-content ol {
        grid-template-columns: 1fr;
    }
}

/* Bookmaker-specific review details; catalog reuses casino components. */
.bookmaker-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.bookmaker-detail-grid > section { padding: 20px; border: 1px solid #2d2d3b; border-radius: 6px; background: #11111a; }
.bookmaker-detail-grid h3 { margin-top: 0; color: #f0c94b; }
.bookmaker-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bookmaker-tags span { padding: 7px 10px; border: 1px solid #363644; border-radius: 4px; color: #dedee6; background: #181822; }
.bookmaker-bonus-table { overflow-x: auto; }
.bookmaker-bonus-table table { width: 100%; border-collapse: collapse; min-width: 620px; }
.bookmaker-bonus-table th, .bookmaker-bonus-table td { padding: 13px 12px; border-bottom: 1px solid #2d2d39; color: #d7d7df; text-align: left; }
.bookmaker-bonus-table th { color: #8e8e9c; font-size: 11px; text-transform: uppercase; }

@media (max-width: 1100px) { .bookmaker-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767px) { .bookmaker-detail-grid { grid-template-columns: 1fr; } }

@keyframes btnShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes crownFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Montserrat, Inter, system-ui, sans-serif;
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(255, 51, 102, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 229, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 50%, rgba(255, 184, 0, 0.03) 0%, transparent 40%);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.003) 2px, rgba(255,255,255,0.003) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.004) 60px, rgba(255,255,255,0.004) 61px);
    pointer-events: none;
    z-index: 0;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.muted { color: var(--text-secondary); }
.accent {
    background: linear-gradient(135deg, var(--accent2), #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255,184,0,0.45));
}

.header {
    background: rgba(6, 6, 14, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent3), transparent);
    opacity: 0.6;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 20px; }
.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    flex-shrink: 0;
}
.logo img {
    width: 210px;
    height: auto;
}
nav { min-width: 0; }
.nav-list { display: flex; gap: 4px; list-style: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.nav-list a:hover,
.nav-list a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(255,51,102,0.2), rgba(255,184,0,0.1));
    border: 1px solid rgba(255,51,102,0.3);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
}
.header-right { display: flex; align-items: center; gap: 10px; }
.language-menu {
    position: relative;
}
.language-menu summary {
    list-style: none;
}
.language-menu summary::-webkit-details-marker {
    display: none;
}
.lang-switch,
.compare-btn,
.search-btn {
    font-family: inherit;
    cursor: pointer;
}
.lang-switch {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.lang-switch::after {
    content: '▾';
    color: var(--text-secondary);
    font-size: 10px;
}
.language-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 190px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(10, 10, 24, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.language-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.language-list a:hover,
.language-list a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.compare-btn {
    background: transparent;
    border: 1px solid rgba(255, 51, 102, 0.4);
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    transition: all 0.3s;
}
.compare-btn:hover { background: rgba(255, 51, 102, 0.1); box-shadow: var(--shadow-neon); }
.compare-badge {
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.6);
}
.search-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 18px;
    width: 40px;
    height: 40px;
    padding: 0;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.search-btn:hover { color: #fff; text-shadow: 0 0 10px var(--accent); }

.site-search-dialog {
    width: min(720px, calc(100vw - 32px));
    max-width: none;
    margin: auto;
    padding: 0;
    border: 1px solid rgba(0, 229, 255, 0.32);
    border-radius: 8px;
    color: var(--text-primary);
    background: #0d1119;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.66), 0 0 34px rgba(0, 229, 255, 0.12);
}
.site-search-dialog::backdrop {
    background: rgba(2, 4, 9, 0.82);
    backdrop-filter: blur(7px);
}
.site-search-dialog-panel {
    padding: 28px;
}
.site-search-dialog-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}
.site-search-dialog-header h2 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
}
.site-search-kicker,
.search-page-kicker {
    color: var(--accent3);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.site-search-close {
    display: grid;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    place-items: center;
    color: var(--text-secondary);
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 26px;
    line-height: 1;
}
.site-search-close:hover,
.site-search-close:focus-visible {
    border-color: rgba(255, 51, 102, 0.6);
    color: #fff;
    outline: none;
    box-shadow: 0 0 18px rgba(255, 51, 102, 0.2);
}
.site-search-form,
.search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}
.site-search-form input,
.search-page-form input {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: #fff;
    background: #080c12;
    font: inherit;
    font-size: 16px;
    outline: none;
}
.site-search-form input:focus,
.search-page-form input:focus {
    border-color: var(--accent2);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.11);
}
.site-search-form button,
.search-page-form button {
    min-width: 126px;
    height: 54px;
    padding: 0 22px;
    border: 1px solid #ffd469;
    border-radius: 6px;
    color: #14100a;
    background: var(--accent3);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.site-search-form button:hover,
.search-page-form button:hover {
    background: #ffd469;
    box-shadow: 0 0 24px rgba(255, 184, 0, 0.2);
}
.site-search-hint {
    margin: 12px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.search-page {
    min-height: 62vh;
    padding: 70px 0 92px;
    background: #080b11;
}
.search-page .container-narrow {
    max-width: 940px;
}
.search-page-header {
    max-width: 720px;
    margin-bottom: 28px;
}
.search-page-header h1 {
    margin: 7px 0 10px;
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
}
.search-page-header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.65;
}
.search-page-form {
    padding: 18px;
    border: 1px solid rgba(0, 229, 255, 0.22);
    border-radius: 8px;
    background: #0d131c;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}
.search-state {
    margin-top: 28px;
    padding: 30px;
    border-left: 4px solid var(--accent2);
    background: #0d131c;
}
.search-state-empty {
    border-left-color: var(--accent3);
}
.search-state strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 20px;
}
.search-state p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.65;
}
.search-results-summary {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 28px 0;
    color: var(--text-secondary);
}
.search-results-summary strong {
    color: #fff;
    font-size: 18px;
}
.search-results-summary small {
    margin-left: auto;
    color: var(--accent3);
    font-weight: 800;
}
.search-result-groups {
    display: grid;
    gap: 38px;
}
.search-result-group > header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.search-result-group > header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}
.search-result-group > header > span {
    display: grid;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 50%;
    place-items: center;
    color: var(--accent2);
    font-size: 12px;
    font-weight: 900;
}
.search-result-list {
    display: grid;
    gap: 10px;
}
.search-result-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding: 12px 16px 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    color: inherit;
    background: #0e141d;
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.search-result-card:hover,
.search-result-card:focus-visible {
    border-color: rgba(255, 184, 0, 0.48);
    background: #121a25;
    outline: none;
    transform: translateY(-1px);
}
.search-result-media {
    display: grid;
    width: 88px;
    height: 88px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    place-items: center;
    color: var(--accent3);
    background: #090d13;
    font-size: 28px;
    font-weight: 900;
}
.search-result-media img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}
.search-result-copy {
    display: grid;
    min-width: 0;
    gap: 5px;
}
.search-result-type {
    color: var(--accent2);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.search-result-copy > strong {
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
}
.search-result-excerpt {
    display: -webkit-box;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}
.search-result-meta > span {
    color: #d7dce5;
    font-size: 11px;
    font-weight: 700;
}
.search-result-meta > span + span::before {
    margin-right: 6px;
    color: var(--accent3);
    content: "•";
}
.search-result-arrow {
    color: var(--accent3);
    font-size: 24px;
    transition: transform 180ms ease;
}
.search-result-card:hover .search-result-arrow {
    transform: translateX(3px);
}

.hero,
.page-hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 184, 0, 0.05) 0%, transparent 40%);
    border-bottom: 1px solid var(--border);
}
.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent3), transparent);
    opacity: 0.7;
}
.hero h1,
.page-hero h1 {
    font-size: clamp(38px, 6vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hero p,
.page-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 36px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    color: var(--text-secondary);
    font-size: 12px;
}
.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--accent2); }
.breadcrumbs .separator { color: var(--accent); }
.breadcrumbs .current {
    color: var(--text-primary);
    font-weight: 700;
}
.page-header {
    position: relative;
    padding: 30px 0 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
}
.page-header h1 {
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1px;
}
.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 15px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary,
.btn-bookmakers,
.btn-secondary,
.casino-cta,
.bonus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s;
    border: 0;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.btn-primary,
.casino-cta,
.bonus-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    box-shadow: 0 4px 30px rgba(255, 51, 102, 0.4);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s infinite;
}
.btn-primary:hover,
.casino-cta:hover,
.bonus-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255, 51, 102, 0.6); }
.btn-secondary {
    color: var(--accent2);
    border: 2px solid var(--accent2);
    background: transparent;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.15);
}
.btn-secondary:hover {
    background: rgba(255, 184, 0, 0.1);
    box-shadow: 0 0 35px rgba(255, 184, 0, 0.3);
    transform: translateY(-2px);
}
.btn-bookmakers {
    color: var(--accent3);
    border: 2px solid var(--accent3);
    background: rgba(0, 229, 255, 0.035);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.12);
}
.btn-bookmakers:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.28);
    transform: translateY(-2px);
}

.error-page {
    min-height: 58vh;
    display: flex;
    align-items: center;
    padding: 92px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 51, 102, 0.12) 0%, transparent 48%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 229, 255, 0.07) 0%, transparent 38%),
        radial-gradient(ellipse at 80% 78%, rgba(255, 184, 0, 0.08) 0%, transparent 40%);
}
.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(720px, 86vw);
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent3), transparent);
    opacity: 0.8;
}
.error-code {
    margin-bottom: 8px;
    color: var(--accent2);
    font-size: clamp(72px, 13vw, 132px);
    font-weight: 950;
    line-height: 0.9;
    text-shadow: 0 0 34px rgba(255, 184, 0, 0.26);
}
.error-page h1 {
    max-width: 760px;
    margin: 0 auto 14px;
    color: #fff;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}
.error-text {
    max-width: 620px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}
.error-actions {
    display: flex;
    justify-content: center;
}

.trust-bar { padding: 24px 0; border-bottom: 1px solid var(--border); background: rgba(10, 10, 24, 0.5); }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-bar-item {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.trust-bar-item strong {
    display: block;
    color: var(--accent2);
    font-size: 24px;
    line-height: 1.1;
    text-shadow: 0 0 18px rgba(255, 184, 0, 0.25);
}

.section { padding: 72px 0; }
.section-alt { background: rgba(10, 10, 24, 0.45); border-block: 1px solid var(--border); }
.section-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-title { font-size: clamp(28px, 4vw, 38px); line-height: 1.1; font-weight: 900; }
.home-section-description {
    --home-copy-accent: var(--accent);
    --home-copy-accent-rgb: 255, 51, 102;
    position: relative;
    max-width: 1080px;
    margin: -8px 0 30px;
    padding: 22px 28px 22px 30px;
    border-block: 1px solid rgba(var(--home-copy-accent-rgb), 0.2);
    background: rgba(var(--home-copy-accent-rgb), 0.045);
}
.home-section-description::before {
    content: '';
    position: absolute;
    inset: -1px auto -1px 0;
    width: 4px;
    background: var(--home-copy-accent);
    box-shadow: 0 0 20px rgba(var(--home-copy-accent-rgb), 0.38);
}
.home-section-description--bookmaker {
    --home-copy-accent: var(--accent3);
    --home-copy-accent-rgb: 0, 229, 255;
}
.home-section-description--slots {
    --home-copy-accent: var(--accent2);
    --home-copy-accent-rgb: 255, 184, 0;
}
.home-section-description--search {
    --home-copy-accent: #55d98a;
    --home-copy-accent-rgb: 85, 217, 138;
}
.home-section-description--reviews {
    --home-copy-accent: #b995ff;
    --home-copy-accent-rgb: 185, 149, 255;
}
.home-section-description.seo-content p,
.home-section-description.seo-content li {
    color: #c8c7d2;
    font-size: 16px;
    line-height: 1.78;
}
.home-section-description.seo-content > p:first-child {
    margin-bottom: 14px;
    color: #e7e6ec;
    font-size: 17px;
}
.home-section-description.seo-content strong {
    color: #fff;
    font-weight: 850;
}
.home-section-description.seo-content em {
    color: var(--home-copy-accent);
    font-style: normal;
    font-weight: 800;
}
.home-section-description.seo-content h2,
.home-section-description.seo-content h3 {
    max-width: 760px;
    color: var(--home-copy-accent);
    line-height: 1.2;
}
.home-section-description.seo-content h2 {
    font-size: 24px;
}
.home-section-description.seo-content h3 {
    padding-left: 14px;
    border-left-color: var(--home-copy-accent);
    font-size: 19px;
}
.home-section-description.seo-content a {
    color: var(--home-copy-accent);
    text-decoration-color: rgba(var(--home-copy-accent-rgb), 0.55);
    text-underline-offset: 3px;
}
.home-section-description.seo-content li::marker {
    color: var(--home-copy-accent);
}
.home-section-description.seo-content hr {
    border-color: rgba(var(--home-copy-accent-rgb), 0.28);
}
.home-section-description.seo-content blockquote {
    margin: 18px 0 0;
    padding: 2px 0 2px 18px;
    border-left: 2px solid var(--home-copy-accent);
    background: transparent;
}
.home-section-description.seo-content blockquote p {
    color: #fff;
}
.section-link,
.casino-review-link,
.review-casino {
    color: var(--accent3);
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
}
.section-link {
    color: var(--accent);
    padding: 8px 20px;
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-link:hover {
    background: rgba(255, 51, 102, 0.1);
    box-shadow: var(--shadow-neon);
}
.tabs-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.tab-btn {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    border-radius: 30px;
    padding: 10px 16px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.tab-btn.active {
    color: #fff;
    border-color: rgba(255,51,102,0.45);
    background: linear-gradient(135deg, rgba(255,51,102,0.3), rgba(255,184,0,0.2));
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
}
.tab-btn:hover:not(.active) { color: #fff; }

.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.casino-tab-panel[hidden] { display: none; }
.casino-card,
.bonus-card,
.slot-card,
.category-card,
.review-card,
.blog-card,
.panel,
.fact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}
.casino-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}
.casino-card > header {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 218px;
}
.casino-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.05), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.casino-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(255, 51, 102, 0.15);
    transform: translateY(-6px);
}
.casino-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 10px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
}
.casino-badge-new {
    background: linear-gradient(135deg, var(--green), var(--accent3));
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}
.casino-logo,
.review-logo {
    width: 132px;
    height: 96px;
    margin: 16px auto 14px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255,51,102,0.25), rgba(255,204,0,0.14));
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--accent2);
    font-weight: 900;
    font-size: 28px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.1);
}
.casino-logo img,
.review-logo img {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
}
.casino-name {
    text-align: center;
    font-size: 24px;
    line-height: 1.15;
    min-height: 56px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.casino-rating { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 18px; }
.casino-rating-note {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 28px;
    padding: 6px 12px;
    border: 1px solid rgba(0,229,255,0.22);
    border-radius: 999px;
    background: rgba(0,229,255,0.08);
    color: var(--accent3);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}
.casino-stars,
.stars,
.review-rating { color: var(--star); white-space: nowrap; }
.casino-rating-value { color: var(--text-secondary); font-size: 13px; font-weight: 700; }
.casino-bonus {
    text-align: center;
    min-height: 66px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.casino-bonus-text {
    color: var(--accent2);
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 0 15px rgba(255, 184, 0, 0.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.casino-features,
.slot-features {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}
.feature-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    padding: 10px 14px;
    min-width: 0;
}
.feature-label { color: var(--text-secondary); font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; }
.feature-value { color: var(--text-primary); font-weight: 800; text-align: right; overflow-wrap: anywhere; }
.casino-card footer { display: grid; gap: 10px; margin-top: auto; }
.casino-cta {
    color: #000;
    background: linear-gradient(135deg, #ffb800, #ffd54f, #ffb800);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    box-shadow: 0 4px 25px rgba(255, 184, 0, 0.4);
    margin-top: auto;
}
.casino-cta:hover {
    box-shadow: 0 8px 40px rgba(255, 184, 0, 0.7);
    transform: translateY(-2px);
}
.casino-cta:active { transform: scale(0.98); }
.casino-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.casino-review-link:hover { color: var(--accent3); }

.bonus-grid,
.slots-grid,
.category-grid,
.reviews-grid,
.blog-grid { display: grid; gap: 18px; }
.bonus-grid { grid-template-columns: repeat(4, 1fr); }
.slots-grid { grid-template-columns: repeat(4, 1fr); }
.category-grid { grid-template-columns: repeat(3, 1fr); }
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.blog-grid { grid-template-columns: repeat(2, 1fr); }
.bonus-card {
    padding: 22px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}
.bonus-card:hover {
    border-color: rgba(255,184,0,0.3);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}
.bonus-type {
    min-height: 30px;
    color: var(--accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    display: flex;
    align-items: flex-start;
}
.bonus-amount {
    color: var(--accent2);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    min-height: 62px;
    margin: 10px 0 12px;
    background: linear-gradient(135deg, var(--accent2), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow-wrap: anywhere;
    display: flex;
    align-items: center;
}
.bonus-wager,
.bonus-casino,
.blog-excerpt,
.blog-date { color: var(--text-secondary); font-size: 14px; }
.bonus-wager { min-height: 23px; }
.bonus-casino { min-height: 23px; margin-bottom: 16px; }
.bonus-btn {
    width: 100%;
    margin-top: auto;
    min-height: 42px;
    color: #000;
    background: linear-gradient(135deg, var(--gold), #ffe082);
    box-shadow: none;
}
.bonus-btn:hover {
    background: linear-gradient(135deg, #ffcc00, #fff3b0);
    box-shadow: var(--shadow-gold);
}
.slot-card,
.review-card,
.blog-card { overflow: hidden; }
.slot-card {
    padding: 18px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    min-width: 0;
}
.slot-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-4px);
}
.slot-image,
.blog-image {
    min-height: 130px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,51,102,0.2), rgba(0,229,255,0.12));
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}
.slot-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent3), transparent);
    opacity: 0.5;
}
.slot-image-text,
.blog-image-text { font-size: 42px; }
.slot-name { font-size: 18px; line-height: 1.2; margin-bottom: 14px; }
.category-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    min-width: 0;
}
.category-card:hover {
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}
.category-icon { font-size: 28px; width: 44px; text-align: center; }
.category-info h4 { font-size: 18px; margin-bottom: 4px; }
.category-info p { color: var(--text-secondary); font-size: 14px; }
.review-card {
    padding: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}
.review-card:hover {
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: var(--shadow-gold);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255,51,102,0.2), rgba(255,184,0,0.15));
    border: 2px solid rgba(255,255,255,0.1);
}
.review-user { font-weight: 900; }
.review-date { color: var(--text-secondary); font-size: 12px; }
.review-text { margin: 12px 0; color: #d8d0c2; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(0, 229, 255, 0.2); }
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-weight: 900;
    transition: all 0.2s;
}
.faq-question:hover { color: var(--accent2); }
.faq-question::-webkit-details-marker { display: none; }
.faq-answer { color: var(--text-secondary); padding: 0 20px 18px; }
.faq-icon {
    color: var(--accent);
    transition: transform 0.3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.partners-title { text-align: center; font-size: 22px; margin-bottom: 18px; }
.partners-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner-logo {
    padding: 12px 18px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.03);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.partner-logo:hover {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}
.disclaimer {
    padding: 24px 0;
    background: rgba(255, 51, 102, 0.08);
    border-block: 1px solid rgba(255, 51, 102, 0.18);
}
.disclaimer-text { color: #d8d0c2; text-align: center; font-size: 14px; }
.blog-card {
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}
.blog-card:hover {
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}
.blog-card header { position: relative; padding: 16px 16px 0; }
.blog-category {
    position: absolute;
    left: 28px;
    top: 28px;
    padding: 5px 10px;
    border-radius: 18px;
    background: rgba(255,51,102,0.9);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.blog-content { padding: 0 18px 20px; }
.blog-title { font-size: 21px; line-height: 1.2; margin-bottom: 10px; }
.blog-title a { text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--accent3); }

.page-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 12px;
}
.page-meta strong,
.page-meta .casino-count { color: var(--accent2); font-weight: 800; }
.page-meta time { color: var(--accent3); font-weight: 700; }
.casino-catalog-section { padding: 0 0 60px; }
.catalog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    padding-bottom: 60px;
}
.catalog-layout-no-filters {
    grid-template-columns: 1fr;
}
.filters-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    scrollbar-width: thin;
}
.filters-toggle-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.filters-toggle {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.filters-toggle::after {
    content: '+';
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: var(--accent2);
    font-size: 18px;
    line-height: 1;
}
#catalog-filters-toggle:checked + .filters-toggle::after {
    content: '−';
}
.filters-active-count {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    margin-left: auto;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}
.filters-card,
.top-facts {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    backdrop-filter: blur(20px);
}
.filters-card {
    padding: 24px;
}
.filters-card h2 {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.filter-group {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}
.filter-group:last-child { margin-bottom: 0; }
.filter-group legend {
    margin-bottom: 10px;
    padding: 0;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.filter-options {
    display: grid;
    gap: 6px;
}
.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}
.filter-options label:hover {
    color: #fff;
    background: rgba(255,255,255,0.03);
}
.filter-options label:has(input:checked) {
    color: #fff;
    border-color: rgba(255, 51, 102, 0.35);
    background: rgba(255, 51, 102, 0.1);
}
.filter-options input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
}
.filter-options input[type="checkbox"]:checked {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.4);
}
.filter-options input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}
.filter-count {
    margin-left: auto;
    padding: 2px 8px;
    border-radius: 999px;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    font-size: 11px;
    font-weight: 800;
}
.filter-actions {
    display: grid;
    gap: 9px;
    margin-top: 8px;
}
.filter-apply,
.filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    border-radius: 999px;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}
.filter-apply {
    border: 0;
    color: #000;
    background: linear-gradient(135deg, #ffb800, #ffd54f);
}
.filter-reset {
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
}
.filter-reset:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 51, 102, 0.06);
}
.catalog-results { min-width: 0; }
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.sort-tabs {
    display: flex;
    gap: 4px;
    max-width: 100%;
    padding: 3px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.02);
    overflow-x: auto;
    scrollbar-width: none;
}
.sort-tabs::-webkit-scrollbar { display: none; }
.sort-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.sort-tab.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(255,51,102,0.25), rgba(255,184,0,0.16));
}
.results-count {
    flex: 0 0 auto;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
}
.top-facts {
    margin-bottom: 24px;
    padding: 20px 28px;
}
.top-facts h2 {
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.top-facts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.top-fact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.top-fact-label {
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.top-fact-value {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}
.casino-list { display: grid; gap: 16px; padding-bottom: 0; }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin: 28px 0 18px; color: var(--text-secondary); }
.casino-row {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 200px 180px;
    gap: 20px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px;
    position: relative;
    transition: all 0.3s;
}
.casino-row:hover {
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.26);
    transform: translateX(4px);
}
.casino-row-highlight {
    border: 2px solid rgba(255, 184, 0, 0.48);
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.12), rgba(14, 14, 30, 0.9) 52%, rgba(255, 184, 0, 0.07));
    padding: 28px 24px;
    overflow: visible;
    box-shadow:
        0 0 40px rgba(255, 184, 0, 0.25),
        0 0 80px rgba(255, 184, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.casino-row-crown::before {
    content: '👑';
    position: absolute;
    top: -18px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.6));
    animation: crownFloat 3s ease-in-out infinite;
}
.casino-row-best-choice::after {
    content: attr(data-rank-label);
    position: absolute;
    top: -12px;
    right: 18px;
    padding: 5px 12px;
    border-radius: 999px;
    color: #000;
    background: linear-gradient(135deg, #ffb800, #ffd54f);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.35);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}
.casino-row[data-rank="2"] {
    border: 2px solid rgba(192, 192, 192, 0.35);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08), rgba(14, 14, 30, 0.9) 55%);
}
.casino-row[data-rank="2"]::after {
    content: '🥈 #2';
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 5px 14px;
    border-radius: 30px;
    color: #000;
    background: linear-gradient(135deg, #b0b0b0, #e0e0e0);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}
.casino-row[data-rank="3"] {
    border: 2px solid rgba(205, 127, 50, 0.32);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.08), rgba(14, 14, 30, 0.9) 55%);
}
.casino-row[data-rank="3"]::after {
    content: '🥉 #3';
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 5px 14px;
    border-radius: 30px;
    color: #000;
    background: linear-gradient(135deg, #cd7f32, #e8a860);
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}
.casino-position,
.rank { font-size: 28px; font-weight: 900; color: var(--accent2); text-align: center; }
.casino-row-highlight .casino-position {
    background: linear-gradient(135deg, #ffb800, #ffd54f, #fff8e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.5));
}
.casino-main { display: flex; align-items: center; gap: 15px; min-width: 0; }
.casino-logo-small {
    width: 104px;
    height: 72px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    overflow: hidden;
}
.casino-logo-small img {
    width: 100%;
    height: 100%;
    padding: 4px;
    object-fit: contain;
}
.casino-logo-small-text { color: var(--accent2); font-size: 28px; font-weight: 900; }
.casino-info { min-width: 0; }
.casino-info h3,
.casino-title { margin: 0 0 4px; font-size: 20px; line-height: 1.2; }
.casino-info h3 a,
.casino-title a { text-decoration: none; }
.casino-info h3 a:hover { color: var(--accent2); }
.casino-rating-row { display: flex; align-items: center; gap: 8px; }
.casino-rating-row.casino-rating-note {
    justify-content: flex-start;
    margin-top: 6px;
}
.casino-rating-text { color: var(--text-secondary); font-size: 12px; font-weight: 800; }
.casino-meta,
.meta { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 8px; color: var(--text-secondary); font-size: 12px; }
.casino-meta .meta-pair { display: flex; align-items: center; gap: 4px; }
.casino-meta dt { color: var(--text-secondary); }
.casino-meta dt::after { content: ':'; }
.casino-meta dd { margin: 0; color: #fff; font-weight: 800; }
.casino-bonus-col,
.bonus-box { min-width: 0; text-align: center; }
.casino-bonus-amount,
.bonus-box strong { color: var(--accent2); display: block; font-size: 18px; font-weight: 900; overflow-wrap: anywhere; }
.casino-bonus-type { color: var(--text-secondary); font-size: 12px; line-height: 1.35; }
.btn-compare {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 6px;
    padding: 4px 8px;
    border: 0;
    color: var(--text-secondary);
    background: none;
    font: inherit;
    font-size: 10px;
    cursor: pointer;
    transition: color 0.2s;
}
.btn-compare:hover { color: var(--accent3); }
.casino-actions,
.actions { display: grid; gap: 8px; }
.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    border-radius: 999px;
    color: #000;
    background: linear-gradient(135deg, #ffb800, #ffd54f, #ffb800);
    background-size: 200% 200%;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
    animation: shimmer 3s ease-in-out infinite;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}
.btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}
.btn-review:hover {
    color: var(--accent3);
    border-color: var(--accent3);
    background: rgba(0, 229, 255, 0.05);
}
.catalog-pagination {
    margin-top: 28px;
}
.catalog-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
}
.catalog-pager-status {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.catalog-pager-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.catalog-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding-inline: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    color: var(--text-secondary);
    background: rgba(14, 14, 29, 0.9);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
a.catalog-page-link:hover,
a.catalog-page-link:focus-visible {
    border-color: var(--accent3);
    color: #fff;
    background: rgba(0, 229, 255, 0.1);
    outline: none;
    transform: translateY(-1px);
}
.catalog-page-link.is-current {
    border-color: var(--accent2);
    color: #0a0710;
    background: var(--accent2);
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.2);
}
.catalog-page-arrow {
    color: #fff;
    font-size: 27px;
    font-weight: 500;
}
.catalog-page-link.is-disabled {
    color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.025);
    cursor: not-allowed;
}
.catalog-page-ellipsis {
    min-width: 24px;
    color: var(--text-muted);
    text-align: center;
}
.catalog-empty .btn-secondary { margin-top: 16px; width: auto; }
.seo-section {
    position: relative;
    margin-top: 48px;
    padding: 0;
    overflow: clip;
    border-block: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(7, 7, 17, 0.92);
}
.seo-section::before {
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
    content: '';
}
.seo-section > .container {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.7fr);
    gap: clamp(42px, 6vw, 88px);
    align-items: start;
    padding-block: clamp(56px, 7vw, 88px);
}
.seo-section h2,
.faq-section h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}
.seo-section > .container > h2 {
    position: sticky;
    top: 108px;
    max-width: 360px;
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    text-wrap: balance;
}
.seo-section > .container > h2::after {
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 24px;
    border-radius: 2px;
    background: var(--accent2);
    content: '';
}
.seo-content {
    width: 100%;
    max-width: 780px;
}
.seo-content > *:last-child {
    margin-bottom: 0;
}
.seo-content p,
.seo-content li {
    max-width: 740px;
    margin-bottom: 14px;
    color: #b9b8c8;
    font-size: 15.5px;
    line-height: 1.75;
}
.seo-content > p:first-child {
    margin-bottom: 30px;
    color: #e7e6ee;
    font-size: 18px;
    line-height: 1.7;
}
.seo-content h2,
.seo-content h3 {
    margin: 30px 0 12px;
    color: var(--accent2);
    font-weight: 900;
    line-height: 1.35;
}
.seo-content h2 { font-size: 22px; }
.seo-content h3 {
    padding-left: 14px;
    border-left: 3px solid var(--accent);
    font-size: 18px;
}
.seo-content strong { color: #f3f2f7; }
.seo-content hr {
    height: 1px;
    margin: 34px 0;
    border: 0;
    background: linear-gradient(90deg, rgba(255, 51, 102, 0.72), rgba(255, 184, 0, 0.28), transparent);
}
.seo-content ul,
.seo-content ol {
    display: grid;
    gap: 10px;
    margin: 8px 0 22px 22px;
    padding: 0;
}
.seo-content li { padding-left: 4px; }
.seo-content li::marker { color: var(--accent2); }
.seo-content li > p { display: inline; margin: 0; }
.seo-content a {
    color: var(--accent2);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.seo-content blockquote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--accent2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(0, 229, 255, 0.06);
    color: var(--text-primary);
}
.seo-content img {
    display: block;
    width: min(100%, 640px);
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}
.seo-content [style*="text-align: center"] img,
.seo-content [style*="text-align:center"] img {
    margin-left: auto;
    margin-right: auto;
}
.seo-content [style*="text-align: end"] img,
.seo-content [style*="text-align:end"] img,
.seo-content [style*="text-align: right"] img,
.seo-content [style*="text-align:right"] img {
    margin-left: auto;
    margin-right: 0;
}
.seo-content table {
    width: 100%;
    max-width: 860px;
    margin: 18px 0;
    border-collapse: collapse;
    color: var(--text-secondary);
    font-size: 14px;
}
.seo-content th,
.seo-content td {
    padding: 10px 12px;
    border: 1px solid var(--border);
    text-align: left;
}
.seo-content th {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 900px) {
    .seo-section {
        margin-top: 32px;
    }
    .seo-section > .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 52px;
    }
    .seo-section > .container > h2 {
        position: static;
        max-width: 720px;
        font-size: clamp(27px, 7vw, 36px);
    }
    .seo-content {
        max-width: none;
    }
}
.faq-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}
.faq-section .faq-list {
    display: grid;
    gap: 8px;
}
.faq-section .faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}
.faq-section .faq-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
}
.faq-section .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.2px;
    list-style: none;
}
.faq-section .faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-section .faq-item summary:hover {
    color: var(--accent2);
}
.faq-section .faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.3s;
}
.faq-section .faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-section .faq-answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.fact { padding: 18px; }
.fact span { display: block; color: var(--text-secondary); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.fact strong { display: block; margin-top: 4px; font-size: 18px; }
.review-page-header { display: grid; grid-template-columns: 140px 1fr minmax(240px, 320px); gap: 28px; align-items: center; padding: 42px 0; }
.review-logo { width: 140px; height: 140px; margin: 0; font-size: 52px; border-radius: 26px; }
.cta-bonus { color: var(--accent2); font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.panel { padding: 22px; }
.panel h2,
.panel h3 { margin-bottom: 12px; }
.panel ul { padding-left: 18px; }
.panel li { margin-bottom: 8px; }

/* ========== CASINO REVIEW PAGE ========== */
.casino-review-page.review-article {
    background: transparent;
}
.casino-review-page .review-header-section {
    position: relative;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}
.casino-review-page .review-header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent2), transparent);
    transform: translateX(-50%);
}
.casino-review-page .review-header-grid {
    display: grid;
    grid-template-columns: 240px 1fr 220px;
    gap: 40px;
    align-items: center;
}
.casino-review-page .review-logo-large {
    width: 220px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.casino-review-page .review-logo-large img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
    border-radius: 24px;
}
.casino-review-page .review-logo-large-text {
    color: var(--accent2);
    font-size: 56px;
    font-weight: 900;
}
.casino-review-page .review-title h1 {
    margin-bottom: 8px;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
}
.casino-review-page .review-brand-title {
    margin: 0 0 10px;
    color: var(--accent2);
    font-size: 24px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.2;
}
.casino-review-page .review-rating-large {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.casino-review-page .review-stars-large {
    color: var(--star);
    font-size: 24px;
}
.casino-review-page .review-rating-number {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}
.casino-review-page .review-rating-total {
    color: var(--text-secondary);
    font-size: 14px;
}
.casino-review-page .review-rating-note {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 12px;
}
.casino-review-page .review-badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.casino-review-page .review-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.casino-review-page .review-badge-gold {
    background: linear-gradient(135deg, #ffb800, #ffd54f);
    color: #000;
    box-shadow: 0 0 15px rgba(255,184,0,0.3);
}
.casino-review-page .review-badge-green {
    background: linear-gradient(135deg, #00ff88, #00e676);
    color: #000;
}
.casino-review-page .review-badge-cyan {
    border: 1px solid rgba(0,229,255,0.3);
    background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(0,229,255,0.1));
    color: var(--accent3);
}
.casino-review-page .review-updated {
    color: var(--text-secondary);
    font-size: 11px;
}
.casino-review-page .review-updated time {
    color: var(--accent3);
    font-weight: 600;
}
.casino-review-page .review-cta-card {
    padding: 28px;
    border: 2px solid rgba(255, 184, 0, 0.4);
    border-radius: var(--radius-card);
    background: var(--bg-card);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(20px);
}
.casino-review-page .review-cta-bonus {
    margin-bottom: 6px;
    color: var(--accent2);
    font-size: 18px;
    font-weight: 800;
}
.casino-review-page .review-cta-sub {
    display: -webkit-box;
    min-height: 41px;
    margin-bottom: 16px;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.casino-review-page .btn-visit {
    display: block;
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffb800, #ffd54f, #ffb800);
    background-size: 200% 200%;
    box-shadow: 0 4px 25px rgba(255, 184, 0, 0.4);
    color: #000;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    animation: shimmer 3s ease-in-out infinite;
}
.casino-review-page .btn-visit:hover {
    box-shadow: 0 8px 40px rgba(255, 184, 0, 0.7);
    transform: translateY(-2px);
}
.casino-review-page .review-cta-disclaimer {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 10px;
}
.casino-review-page .quick-facts-section {
    padding: 30px 0;
}
.casino-review-page .quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
}
.casino-review-page .quick-facts-grid dt {
    padding: 16px 16px 4px;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.casino-review-page .quick-facts-grid dd {
    margin: 0;
    padding: 0 16px 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}
.casino-review-page .quick-facts-grid dt:nth-of-type(odd),
.casino-review-page .quick-facts-grid dd:nth-of-type(odd) {
    background: rgba(255,255,255,0.01);
}
.casino-review-page .quick-facts-grid dt:nth-of-type(even),
.casino-review-page .quick-facts-grid dd:nth-of-type(even) {
    background: rgba(255,255,255,0.02);
}
.casino-review-page .pros-cons-section {
    padding: 20px 0;
}
.casino-review-page .pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.casino-review-page .pros-cons-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
}
.casino-review-page .pros-cons-card h3 {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 800;
}
.casino-review-page .pros-cons-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    list-style: none;
}
.casino-review-page .pros-cons-card li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 13px;
}
.casino-review-page .pros-list li {
    background: rgba(0, 255, 136, 0.05);
    color: var(--green);
}
.casino-review-page .pros-list li::before {
    content: '✓';
    flex-shrink: 0;
    font-weight: 700;
}
.casino-review-page .cons-list li {
    background: rgba(255, 51, 102, 0.05);
    color: var(--red);
}
.casino-review-page .cons-list li::before {
    content: '✗';
    flex-shrink: 0;
    font-weight: 700;
}
.casino-review-page .detail-section {
    padding: 30px 0;
    border-top: 1px solid var(--border);
}
.casino-review-page .detail-section h2 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
}
.casino-review-page .detail-section h2::before {
    content: '';
    width: 5px;
    height: 30px;
    flex: 0 0 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent2), var(--accent3));
    box-shadow: 0 0 18px rgba(255, 204, 0, 0.22);
}
.casino-review-page .detail-section h3 {
    margin: 24px 0 12px;
    padding-left: 10px;
    border-left: 3px solid var(--accent2);
    color: var(--accent2);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}
.casino-review-page .detail-section p {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}
.casino-review-page .detail-section strong {
    color: #fff;
}
.casino-review-page .casino-pr-content-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(150px, 300px) minmax(0, 800px) minmax(150px, 300px);
    gap: clamp(12px, 2vw, 32px);
    align-items: start;
    max-width: 1464px;
    margin: 0 auto;
    padding: 0 16px;
}
.casino-review-page .casino-pr-main {
    min-width: 0;
}
.casino-review-page .casino-pr-side,
.casino-review-page .casino-pr-side-spacer {
    min-width: 0;
}
.casino-review-page .casino-pr-side {
    position: sticky;
    top: 100px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 2;
    border: 1px solid rgba(255, 184, 0, 0.22);
    border-radius: 6px;
    background: rgba(8, 8, 14, 0.86);
}
.casino-review-page .casino-pr-side-left {
    justify-self: end;
}
.casino-review-page .casino-pr-side-right {
    justify-self: start;
}
.casino-review-page .casino-pr-side a,
.casino-review-page .casino-pr-content-banner a,
.casino-review-page .casino-pr-content-banner picture {
    display: block;
}
.casino-review-page .casino-pr-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.casino-review-page .casino-pr-side:hover,
.casino-review-page .casino-pr-content-banner:hover {
    border-color: rgba(255, 184, 0, 0.5);
    box-shadow: 0 0 24px rgba(255, 184, 0, 0.14);
}
.casino-review-page .casino-pr-content-banner {
    overflow: hidden;
    width: min(100%, 728px);
    margin: 26px auto 8px;
    border: 1px solid rgba(255, 184, 0, 0.22);
    border-radius: 6px;
    background: rgba(8, 8, 14, 0.86);
}
.casino-review-page .casino-pr-content-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.casino-review-page .review-content {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}
.casino-review-page .review-content > *:first-child {
    margin-top: 0;
}
.casino-review-page .review-content > *:last-child {
    margin-bottom: 0;
}
.casino-review-page .review-content h2,
.casino-review-page .review-content h3 {
    color: #fff;
}
.casino-review-page .review-content h2 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 22px 0 12px;
    font-size: 22px;
    line-height: 1.3;
}
.casino-review-page .review-content h2::before {
    content: '';
    width: 4px;
    height: 26px;
    flex: 0 0 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent2), var(--accent3));
}
.casino-review-page .review-content h3 {
    margin: 18px 0 10px;
    padding-left: 10px;
    border-left: 3px solid var(--accent3);
    color: var(--accent3);
    font-size: 18px;
    line-height: 1.35;
}
.casino-review-page .review-content ul,
.casino-review-page .review-content ol {
    display: grid;
    gap: 8px;
    margin: 12px 0;
    padding-left: 22px;
}
.casino-review-page .review-content li {
    padding-left: 4px;
}
.casino-review-page .review-content a {
    color: var(--accent3);
    font-weight: 700;
    text-decoration: none;
}
.casino-review-page .review-content a:hover {
    text-decoration: underline;
}
.casino-review-page .review-content blockquote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--accent2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    color: #fff;
}
.casino-review-page .review-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 18px auto;
    border-radius: var(--radius-card);
}
.casino-review-page .review-content table {
    display: block;
    width: 100%;
    margin: 18px 0;
    overflow-x: auto;
    border-collapse: collapse;
    scrollbar-width: thin;
}

.android-apk-download {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 30px 0;
    padding: 24px;
    border: 1px solid rgba(255, 204, 0, 0.42);
    border-radius: 8px;
    background: #101018;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}
.casino-review-page .android-apk-download h3 {
    margin: 8px 0 10px;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 22px;
}
.casino-review-page .android-apk-download p {
    max-width: 680px;
    margin: 0;
}
.android-apk-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.android-apk-verified {
    color: #55d98a;
}
.android-apk-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 16px;
}
.android-apk-meta div {
    display: flex;
    gap: 6px;
    align-items: baseline;
}
.android-apk-meta dt {
    color: var(--text-secondary);
    font-size: 11px;
    text-transform: uppercase;
}
.android-apk-meta dd {
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.android-apk-hash {
    min-width: 0;
    flex-basis: 100%;
}
.android-apk-hash code {
    overflow-wrap: anywhere;
    color: #a9afbf;
    font-size: 10px;
}
.android-apk-button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid #ffcc33;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--star);
    color: #111;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
.android-apk-button:hover {
    background: #ffcc33;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.28);
}

@media (max-width: 700px) {
    .android-apk-download {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .android-apk-button {
        width: 100%;
    }
}
.casino-review-page .review-content th,
.casino-review-page .review-content td {
    padding: 10px 12px;
    border: 1px solid var(--border);
    text-align: left;
}
.casino-review-page .review-content th {
    color: #fff;
    font-weight: 800;
}
.casino-review-page .bonus-table-wrap {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
}
.casino-review-page .bonus-table {
    width: 100%;
    margin-top: 16px;
    border-collapse: collapse;
}
.casino-review-page .bonus-table caption {
    margin-bottom: 12px;
    color: #fff;
    caption-side: top;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}
.casino-review-page .bonus-table th,
.casino-review-page .bonus-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    text-align: left;
}
.casino-review-page .bonus-table th {
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.casino-review-page .bonus-table td {
    color: #fff;
}
.casino-review-page .bonus-table tr:hover td {
    background: rgba(255,255,255,0.02);
}
.casino-review-page .bonus-table .bonus-amount-col {
    color: var(--accent2);
    font-size: 15px;
    font-weight: 700;
}
.casino-review-page .highlight-chip-list,
.casino-review-page .tag-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 18px;
    padding: 0;
    list-style: none;
}
.casino-review-page .highlight-chip-list li {
    padding: 9px 14px;
    border: 1px solid rgba(255, 184, 0, 0.35);
    border-radius: 999px;
    background: rgba(255, 184, 0, 0.08);
    color: var(--accent2);
    font-size: 13px;
    font-weight: 900;
}
.casino-review-page .tag-chip-list li {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.casino-review-page .info-table-list {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg-card);
}
.casino-review-page .info-table-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}
.casino-review-page .info-table-list div:last-child {
    border-bottom: 0;
}
.casino-review-page .info-table-list dt {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.casino-review-page .info-table-list dd {
    margin: 0;
    color: #fff;
    font-weight: 800;
    overflow-wrap: anywhere;
}
.casino-review-page .detail-chip-grid {
    columns: 2 320px;
    column-gap: 18px;
}
.casino-review-page .detail-chip-panel {
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg-card);
    break-inside: avoid;
}
.casino-review-page .detail-chip-panel h3 {
    margin-bottom: 12px;
}
.casino-review-page .detail-chip-panel .tag-chip-list {
    margin-bottom: 0;
}
.casino-review-page .btn-bonus-small {
    display: inline-block;
    padding: 8px 18px;
    border: 0;
    border-radius: 30px;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}
.casino-review-page .btn-bonus-small:hover {
    box-shadow: var(--shadow-neon);
}
.casino-review-page .games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
    padding: 0;
    list-style: none;
}
.casino-review-page .games-grid li {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg-card);
    text-align: center;
    transition: all 0.2s;
    backdrop-filter: blur(20px);
}
.casino-review-page .games-grid li:hover {
    border-color: var(--accent3);
    transform: translateY(-2px);
}
.casino-review-page .games-grid a,
.casino-review-page .game-card-static {
    display: block;
    color: inherit;
    text-decoration: none;
}
.casino-review-page .game-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,51,102,0.08), rgba(0,229,255,0.05));
    font-size: 36px;
}
.casino-review-page .game-card-name {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
}
.casino-review-page .game-card-rtp {
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
}
.casino-review-page .providers-bar {
    padding: 20px 0;
    text-align: center;
}
.casino-review-page .providers-logos {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}
.casino-review-page .providers-logos li {
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}
.casino-review-page .providers-logos a {
    color: inherit;
    text-decoration: none;
}
.casino-review-page .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
    padding: 0;
    list-style: none;
}
.casino-review-page .reviews-grid > li {
    min-width: 0;
}
.casino-review-page .review-card {
    height: 100%;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
}
.casino-review-page .review-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}
.casino-review-page .review-avatar {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,51,102,0.2), rgba(255,184,0,0.15));
    font-size: 16px;
}
.casino-review-page .review-user {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}
.casino-review-page .review-date {
    color: var(--text-secondary);
    font-size: 11px;
}
.casino-review-page .review-rating {
    margin-bottom: 6px;
    color: var(--star);
    font-size: 13px;
}
.casino-review-page .review-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}
.casino-review-page .player-reviews-heading {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}
.casino-review-page .player-reviews-heading h2 {
    margin-bottom: 5px;
}
.casino-review-page .player-reviews-heading p,
.casino-review-page .review-form-heading p,
.casino-review-page .player-reviews-empty {
    color: var(--text-secondary);
    font-size: 13px;
}
.casino-review-page .player-reviews-count {
    display: grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255,184,0,0.32);
    border-radius: 50%;
    color: var(--star);
    font-weight: 800;
}
.casino-review-page .player-reviews-empty {
    margin-top: 14px;
}
.casino-review-page .review-form-wrap {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: rgba(18,18,22,0.72);
}
.casino-review-page .review-form-heading {
    margin-bottom: 20px;
}
.casino-review-page .review-form-heading h3 {
    margin: 0 0 5px;
    color: var(--star);
    font-size: 20px;
}
.casino-review-page .review-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}
.casino-review-page .review-form-grid .review-field {
    grid-template-rows: auto 44px minmax(14px, auto);
    align-content: start;
}
.casino-review-page .review-form-grid .review-field input {
    height: 44px;
}
.casino-review-page .review-field {
    display: grid;
    gap: 7px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
}
.casino-review-page .review-field input,
.casino-review-page .review-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    background: rgba(7,7,10,0.9);
    color: var(--text-primary);
    font: inherit;
    font-weight: 400;
}
.casino-review-page .review-field input {
    min-height: 44px;
    padding: 0 12px;
}
.casino-review-page .review-field textarea {
    min-height: 130px;
    padding: 12px;
    resize: vertical;
    line-height: 1.55;
}
.casino-review-page .review-field input:focus,
.casino-review-page .review-field textarea:focus {
    border-color: var(--star);
    box-shadow: 0 0 0 3px rgba(255,184,0,0.12);
}
.casino-review-page .review-field small {
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 400;
}
.casino-review-page .review-field-wide {
    margin-top: 16px;
}
.casino-review-page .review-rating-field {
    margin: 18px 0 0;
    padding: 0;
    border: 0;
}
.casino-review-page .review-rating-field legend {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
}
.casino-review-page .review-rating-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.casino-review-page .review-rating-options input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}
.casino-review-page .review-rating-options label {
    min-width: 54px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: rgba(7,7,10,0.9);
    color: var(--text-secondary);
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}
.casino-review-page .review-rating-options input:checked + label,
.casino-review-page .review-rating-options input:focus-visible + label {
    border-color: var(--star);
    color: var(--star);
    box-shadow: 0 0 0 3px rgba(255,184,0,0.12);
}
.casino-review-page .review-terms {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.5;
}
.casino-review-page .review-terms input {
    flex: 0 0 auto;
    margin-top: 3px;
    accent-color: var(--star);
}
.casino-review-page .review-submit-button {
    min-height: 44px;
    margin-top: 18px;
    padding: 0 20px;
    border: 1px solid #ffcc33;
    border-radius: 6px;
    background: var(--star);
    color: #111;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}
.casino-review-page .review-submit-button:hover {
    background: #ffcc33;
}
.casino-review-page .review-form-success,
.casino-review-page .review-form-errors {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 13px;
}
.casino-review-page .review-form-success {
    border: 1px solid rgba(63,185,80,0.45);
    background: rgba(63,185,80,0.1);
    color: #9fe3ad;
}
.casino-review-page .review-form-errors {
    border: 1px solid rgba(255,90,90,0.45);
    background: rgba(255,90,90,0.08);
    color: #ffc1c1;
}
.casino-review-page .review-form-errors ul {
    margin: 7px 0 0 18px;
}
.casino-review-page .review-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.casino-review-page .faq-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}
.casino-review-page .faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg-card);
    transition: all 0.3s;
    backdrop-filter: blur(20px);
}
.casino-review-page .faq-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
}
.casino-review-page .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    list-style: none;
}
.casino-review-page .faq-item summary::-webkit-details-marker {
    display: none;
}
.casino-review-page .faq-item summary:hover {
    color: var(--accent2);
}
.casino-review-page .faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s;
}
.casino-review-page .faq-item[open] summary::after {
    transform: rotate(45deg);
}
.casino-review-page .faq-answer {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}
.casino-review-page .faq-answer p {
    margin: 0;
}
.casino-review-page .review-disclaimer {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 51, 102, 0.03);
    text-align: center;
}
.casino-review-page .review-disclaimer-text {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}
.casino-review-page .review-disclaimer-text strong {
    color: var(--accent);
    font-weight: 800;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 28px;
    color: var(--text-secondary);
    background: rgba(4, 4, 10, 0.86);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-col h4 { color: var(--text-primary); margin-bottom: 12px; }
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: var(--text-secondary); text-decoration: none; }
.footer-col a:hover { color: var(--accent2); }
.footer-address { font-style: normal; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    font-size: 13px;
}

@media (max-width: 1000px) {
    .header-inner { flex-wrap: wrap; }
    .header nav {
        order: 3;
        width: 100%;
        min-width: 0;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }
    .header nav::-webkit-scrollbar { display: none; }
    .nav-list { width: max-content; min-width: 100%; }
    .featured-grid,
    .bonus-grid,
    .slots-grid,
    .category-grid,
    .reviews-grid,
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .review-page-header { grid-template-columns: 1fr; }
    .catalog-layout { grid-template-columns: 1fr; }
    .casino-row {
        grid-template-columns: 40px minmax(0, 1fr) 150px 140px;
        gap: 12px;
        padding: 16px;
    }
    .casino-logo-small {
        width: 88px;
        height: 64px;
    }
    .casino-row-highlight { padding: 20px 16px; }
    .casino-row-crown::before {
        top: -16px;
        font-size: 24px;
    }
    .casino-row-best-choice::after,
    .casino-row[data-rank="2"]::after,
    .casino-row[data-rank="3"]::after {
        top: -12px;
        right: 10px;
        padding: 4px 12px;
        font-size: 9px;
    }
    .filters-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
    }
    .top-facts-grid { gap: 18px; }
    .facts-grid,
    .pros-cons { grid-template-columns: 1fr; }
    .casino-review-page .review-header-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .casino-review-page .review-rating-large,
    .casino-review-page .review-badge-row {
        justify-content: center;
    }
    .casino-review-page .quick-facts-grid,
    .casino-review-page .games-grid,
    .casino-review-page .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .casino-review-page .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1199px) {
    .casino-review-page .casino-pr-content-layout {
        display: block;
        max-width: 800px;
        padding: 0 20px;
    }
    .casino-review-page .casino-pr-side,
    .casino-review-page .casino-pr-side-spacer {
        display: none;
    }
}
@media (max-width: 640px) {
    .container,
    .container-narrow { padding: 0 16px; }
    .casino-review-page .casino-pr-content-layout {
        padding: 0 16px;
    }
    .casino-review-page .casino-pr-content-banner {
        width: min(100%, 320px);
        margin-top: 20px;
    }
    .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px 12px;
        padding: 12px 16px 10px;
    }
    .logo {
        min-width: 0;
        grid-column: 1;
        grid-row: 1;
    }
    .logo img { width: 174px; }
    .header nav {
        grid-column: 1 / -1;
        grid-row: 2;
        order: initial;
        width: auto;
        margin-inline: -16px;
        padding-inline: 16px;
    }
    .nav-list {
        gap: 6px;
        min-width: 0;
    }
    .nav-list a {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 8px 12px;
        font-size: 11px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    .header-right {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 7px;
        min-width: 0;
    }
    .lang-switch {
        min-height: 40px;
        padding: 9px 10px;
    }
    .language-list {
        left: 0;
        right: auto;
        min-width: min(190px, calc(100vw - 32px));
    }
    .compare-btn {
        min-height: 40px;
        padding: 9px 10px;
        justify-content: center;
    }
    .compare-label { display: none; }
    .hero,
    .page-hero { padding: 58px 0 50px; }
    .hero h1,
    .page-hero h1 {
        font-size: clamp(34px, 10vw, 44px);
        letter-spacing: 0;
    }
    .hero p,
    .page-hero p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .btn-primary,
    .btn-bookmakers,
    .btn-secondary,
    .casino-cta,
    .bonus-btn {
        width: 100%;
        padding-inline: 18px;
        letter-spacing: 0.4px;
    }
    .featured-grid,
    .bonus-grid,
    .slots-grid,
    .category-grid,
    .reviews-grid,
    .blog-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 52px 0; }
    .section-header,
    .toolbar,
    .sort-bar { align-items: flex-start; flex-direction: column; }
    .section-title { font-size: clamp(26px, 8vw, 34px); }
    .home-section-description {
        margin-top: -10px;
        padding: 18px 16px 18px 20px;
    }
    .home-section-description.seo-content p,
    .home-section-description.seo-content li {
        font-size: 15px;
        line-height: 1.7;
    }
    .home-section-description.seo-content > p:first-child {
        font-size: 16px;
    }
    .section-link { width: 100%; text-align: center; }
    .tabs-nav { display: grid; grid-template-columns: 1fr; }
    .tab-btn { width: 100%; }
    .casino-card,
    .bonus-card,
    .slot-card,
    .review-card,
    .blog-card,
    .panel { padding: 18px; }
    .casino-logo,
    .review-logo {
        width: 120px;
        height: 88px;
    }
    .casino-review-page .review-header-section {
        padding: 30px 0;
    }
    .casino-review-page .review-logo-large {
        width: 150px;
        height: 150px;
    }
    .casino-review-page .review-title h1 {
        font-size: 30px;
    }
    .casino-review-page .review-brand-title {
        font-size: 21px;
    }
    .casino-review-page .review-cta-card,
    .casino-review-page .pros-cons-card,
    .casino-review-page .review-card {
        padding: 18px;
    }
    .casino-review-page .quick-facts-grid,
    .casino-review-page .games-grid,
    .casino-review-page .reviews-grid {
        grid-template-columns: 1fr;
    }
    .casino-review-page .review-form-wrap {
        padding: 18px;
    }
    .casino-review-page .review-form-grid {
        grid-template-columns: 1fr;
    }
    .casino-review-page .review-rating-options {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .casino-review-page .review-rating-options label {
        min-width: 0;
        padding-inline: 5px;
    }
    .casino-review-page .bonus-table-wrap {
        overflow-x: visible;
    }
    .casino-review-page .bonus-table {
        min-width: 0;
    }
    .casino-review-page .bonus-table,
    .casino-review-page .bonus-table caption,
    .casino-review-page .bonus-table tbody,
    .casino-review-page .bonus-table tr,
    .casino-review-page .bonus-table td {
        display: block;
        width: 100%;
    }
    .casino-review-page .bonus-table thead {
        display: none;
    }
    .casino-review-page .bonus-table tr {
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: var(--radius-card);
        background: var(--bg-card);
    }
    .casino-review-page .bonus-table tr + tr {
        margin-top: 12px;
    }
    .casino-review-page .bonus-table th,
    .casino-review-page .bonus-table td {
        border-bottom: 0;
    }
    .casino-review-page .bonus-table td {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 9px 0;
        text-align: right;
    }
    .casino-review-page .bonus-table td::before {
        content: attr(data-label);
        flex: 0 0 auto;
        color: var(--text-secondary);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-align: left;
        text-transform: uppercase;
    }
    .casino-review-page .bonus-table td:last-child {
        display: block;
        padding-top: 12px;
        text-align: left;
    }
    .casino-review-page .bonus-table td:last-child::before {
        display: none;
    }
    .casino-review-page .btn-bonus-small {
        width: 100%;
        text-align: center;
    }
    .casino-review-page .detail-chip-grid {
        columns: 1;
    }
    .casino-review-page .info-table-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .casino-review-page .highlight-chip-list li,
    .casino-review-page .tag-chip-list li {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .casino-review-page .providers-logos {
        justify-content: flex-start;
    }
    .feature-item {
        align-items: flex-start;
        padding: 10px 12px;
    }
    .bonus-amount { font-size: 25px; }
    .slot-image,
    .blog-image { min-height: 112px; }
    .category-card {
        align-items: flex-start;
        padding: 18px;
    }
    .page-meta {
        align-items: center;
        flex-direction: column;
        gap: 6px;
    }
    .filters-card,
    .top-facts { padding: 18px; }
    .filters-sidebar {
        display: grid;
        gap: 10px;
    }
    .filters-toggle {
        display: flex;
    }
    .filters-sidebar > .filters-card {
        display: none;
    }
    #catalog-filters-toggle:checked ~ .filters-card {
        display: block;
    }
    .sort-tabs {
        width: 100%;
        border-radius: 14px;
    }
    .sort-tab {
        flex: 1 0 auto;
        padding-inline: 12px;
    }
    .results-count { white-space: normal; }
    .top-facts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .casino-row {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        overflow: hidden;
    }
    .casino-row-highlight {
        padding: 18px;
        overflow: hidden;
    }
    .casino-row:hover { transform: none; }
    .casino-row-best-choice::after {
        display: none;
    }
    .casino-row-crown::before { display: none; }
    .casino-row[data-rank="2"]::after,
    .casino-row[data-rank="3"]::after {
        display: none;
    }
    .casino-position {
        position: absolute;
        top: 14px;
        left: 14px;
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 184, 0, 0.3);
        border-radius: 999px;
        background: rgba(255, 184, 0, 0.08);
        font-size: 18px;
        line-height: 1;
    }
    .casino-main {
        align-items: center;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .casino-logo-small {
        width: min(160px, 70vw);
        height: 86px;
    }
    .casino-info {
        width: 100%;
    }
    .casino-info h3,
    .casino-title {
        font-size: 21px;
        overflow-wrap: anywhere;
    }
    .casino-rating-row {
        justify-content: center;
    }
    .casino-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        justify-content: initial;
    }
    .casino-meta .meta-pair {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
        padding: 9px 10px;
        border: 1px solid rgba(255,255,255,0.04);
        border-radius: 8px;
        background: rgba(255,255,255,0.025);
        text-align: left;
    }
    .casino-meta dt::after {
        content: '';
    }
    .casino-meta dd {
        overflow-wrap: anywhere;
    }
    .casino-bonus-col {
        width: 100%;
        padding: 12px;
        border: 1px solid rgba(255,255,255,0.04);
        border-radius: 10px;
        background: rgba(255,255,255,0.025);
        text-align: center;
    }
    .casino-bonus-amount {
        font-size: 17px;
        line-height: 1.25;
    }
    .casino-bonus-type {
        overflow-wrap: anywhere;
    }
    .casino-actions {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .footer-bottom { flex-direction: column; }
}

/* Slots catalog */
.slot-catalog-section { padding-top: 0; }
.catalog-search-input {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
    font: inherit;
}
.catalog-search-input:focus {
    border-color: var(--accent3);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}
.filter-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.slot-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.slot-listing-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    flex-direction: column;
    background: var(--bg-card);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.slot-listing-card:hover {
    border-color: rgba(0, 229, 255, 0.34);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
    transform: translateY(-3px);
}
.slot-listing-media {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    place-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
    color: var(--accent2);
    font-size: 52px;
    text-decoration: none;
}
.slot-listing-media img,
.slot-detail-cover img,
.slot-card .slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slot-listing-media img {
    object-fit: contain;
    object-position: center;
    background: #0b0b16;
}
.slot-popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 184, 0, 0.45);
    border-radius: 5px;
    background: rgba(8, 8, 18, 0.9);
    color: var(--accent2);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}
.slot-listing-body {
    display: flex;
    height: 100%;
    padding: 18px;
    flex-direction: column;
}
.slot-provider-name {
    color: var(--accent3);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.slot-listing-body h2 {
    margin: 5px 0 8px;
    font-size: 21px;
    line-height: 1.18;
}
.slot-listing-body h2 a,
.slot-name a { color: #fff; text-decoration: none; }
.slot-listing-body h2 a:hover,
.slot-name a:hover { color: var(--accent2); }
.slot-listing-body > p {
    display: -webkit-box;
    min-height: 44px;
    margin-bottom: 14px;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.slot-listing-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 14px;
    border-block: 1px solid var(--border);
}
.slot-listing-facts div { padding: 11px 6px; text-align: center; }
.slot-listing-facts div + div { border-left: 1px solid var(--border); }
.slot-listing-facts dt { color: var(--text-secondary); font-size: 9px; text-transform: uppercase; }
.slot-listing-facts dd { margin: 3px 0 0; color: #fff; font-size: 12px; font-weight: 900; overflow-wrap: anywhere; }
.slot-mechanics {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.slot-mechanics span {
    padding: 6px 9px;
    border: 1px solid rgba(255, 184, 0, 0.24);
    border-radius: 999px;
    background: rgba(255, 184, 0, 0.06);
    color: var(--accent2);
    font-size: 10px;
    font-weight: 800;
}
.slot-details-button { margin-top: auto; }
.slot-detail-hero {
    padding: 48px 0 54px;
    border-block: 1px solid var(--border);
    background: rgba(8, 8, 18, 0.86);
}
.slot-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(340px, 43%) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}
.slot-detail-cover {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(0, 229, 255, 0.58);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent2);
    font-size: 72px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.42),
        0 0 30px 3px rgba(0, 229, 255, 0.16),
        18px -6px 58px 2px rgba(0, 229, 255, 0.07),
        -16px 14px 64px 3px rgba(255, 51, 102, 0.105);
}
.slot-detail-cover::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 0 22px rgba(0, 229, 255, 0.055);
    content: '';
    pointer-events: none;
}
.slot-detail-intro h1 {
    margin: 8px 0 13px;
    font-size: clamp(38px, 4.2vw, 54px);
    line-height: 1.02;
}
.slot-detail-intro > p {
    max-width: 660px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
}
.slot-detail-facts {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 900px;
    margin: 24px 0 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 6px;
    background: rgba(15, 15, 32, 0.92);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.035);
}
.slot-detail-facts div {
    position: relative;
    min-width: 0;
    padding: 17px 14px 16px;
}
.slot-detail-facts div::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--text-secondary);
    content: '';
}
.slot-detail-facts div:nth-child(1)::before { background: var(--accent2); }
.slot-detail-facts div:nth-child(2)::before { background: var(--accent3); }
.slot-detail-facts div:nth-child(3)::before { background: var(--accent); }
.slot-detail-facts div:nth-child(4)::before { background: var(--accent2); }
.slot-detail-facts div:nth-child(5)::before { background: var(--green); }
.slot-detail-facts div + div { border-left: 1px solid var(--border); }
.slot-detail-facts dt {
    color: #a7a7b7;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.slot-detail-facts dd {
    margin: 5px 0 0;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
    overflow-wrap: anywhere;
}
.slot-detail-facts div:nth-child(1) dd { color: var(--accent2); }
.slot-detail-facts div:nth-child(2) dd { color: var(--accent3); }
.slot-detail-facts div:nth-child(5) dd { color: var(--green); }
.slot-review-content .container-narrow > h2 { margin-bottom: 24px; color: var(--accent2); font-size: 30px; }
.slot-pr-content-layout {
    display: grid;
    grid-template-columns: minmax(150px, 300px) minmax(0, 800px) minmax(150px, 300px);
    gap: clamp(12px, 2vw, 32px);
    align-items: start;
    max-width: 1464px;
    margin: 0 auto;
    padding: 0 16px;
}
.slot-pr-main,
.slot-pr-side,
.slot-pr-side-spacer { min-width: 0; }
.slot-pr-side {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 2;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 6px;
    background: rgba(8, 8, 14, 0.86);
}
.slot-pr-side-left { justify-self: end; }
.slot-pr-side-right { justify-self: start; }
.slot-pr-side a { display: block; width: 100%; height: 100%; }
.slot-pr-side img { width: 100%; height: 100%; object-fit: contain; }
.slot-pr-side:hover {
    border-color: rgba(0, 229, 255, 0.55);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.14);
}
.slot-casino-offers {
    margin-block: clamp(36px, 5vw, 64px);
    border-block: 1px solid var(--border);
    background: rgba(10, 10, 24, 0.45);
}
.slot-offers-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
    gap: 30px;
    align-items: end;
    margin-bottom: 28px;
}
.slot-offers-heading span { color: var(--accent3); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.slot-offers-heading h2 { margin-top: 6px; font-size: clamp(28px, 4vw, 40px); }
.slot-offers-heading p { color: var(--text-secondary); font-size: 13px; line-height: 1.65; }
.slot-offer-list { display: grid; gap: 12px; }
.slot-casino-offer {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.8fr) 150px;
    gap: 24px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
}
.slot-offer-casino { display: flex; gap: 15px; align-items: center; min-width: 0; }
.slot-offer-casino h3 { margin-bottom: 4px; font-size: 20px; }
.slot-offer-casino h3 a { color: #fff; text-decoration: none; }
.slot-offer-casino h3 a:hover { color: var(--accent3); }
.slot-offer-casino > div > span {
    color: var(--text-secondary);
    font-size: 12px;
}
.slot-manual-offer {
    border-color: rgba(255, 214, 0, 0.24);
    background: linear-gradient(90deg, rgba(255, 214, 0, 0.045), var(--bg-card) 38%);
}
.slot-manual-offer-mark {
    display: inline-flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 214, 0, 0.35);
    border-radius: 6px;
    color: var(--accent2);
    background: rgba(255, 214, 0, 0.07);
    font-size: 12px;
    font-weight: 900;
}
.slot-offer-bonus { display: grid; gap: 3px; }
.slot-offer-bonus > span { color: var(--text-secondary); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.slot-offer-bonus strong { color: var(--accent2); font-size: 18px; }
.slot-offer-bonus small { color: var(--text-secondary); line-height: 1.45; }
.slot-offer-actions { display: grid; gap: 8px; }
.slot-unavailable-note {
    padding: 26px 0;
    border-block: 1px solid var(--border);
}
.slot-unavailable-note h3 { margin-bottom: 7px; color: var(--accent2); }
.slot-unavailable-note p { color: var(--text-secondary); }

.slot-review-author {
    position: relative;
    overflow: hidden;
    margin-block: clamp(36px, 5vw, 64px);
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(90deg, rgba(0, 229, 255, 0.055), transparent 42%),
        #090d12;
}
.slot-review-author::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent3), var(--accent2));
    content: "";
}
.slot-review-author-inner {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding-block: 30px;
}
.slot-review-author-photo {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    overflow: hidden;
    border: 2px solid rgba(0, 229, 255, 0.42);
    border-radius: 50%;
    background: #111922;
    box-shadow: 0 0 26px rgba(0, 229, 255, 0.13);
    text-decoration: none;
}
.slot-review-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slot-review-author-photo span {
    color: var(--accent3);
    font-size: 32px;
    font-weight: 900;
}
.slot-review-author-copy { min-width: 0; }
.slot-review-author-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--accent2);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.slot-review-author-signature {
    margin: 0;
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
}
.slot-review-author-signature a {
    color: #fff;
    text-decoration-color: rgba(0, 229, 255, 0.5);
    text-underline-offset: 4px;
}
.slot-review-author-bio {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--text-secondary);
    line-height: 1.6;
}
.slot-review-author-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent3);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.slot-review-author-link:hover { color: var(--accent2); }

@media (max-width: 1100px) {
    .slot-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .slot-pr-content-layout { display: block; max-width: 800px; padding: 0 20px; }
    .slot-pr-side,
    .slot-pr-side-spacer { display: none; }
    .slot-casino-offer { grid-template-columns: minmax(240px, 1fr) minmax(200px, 0.8fr); }
    .slot-offer-actions { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1101px) {
    .slot-detail-facts {
        grid-template-columns: 0.85fr 1.25fr 0.75fr 1.35fr 0.65fr;
    }
    .slot-detail-facts div { padding-inline: 10px; }
    .slot-detail-facts dd { font-size: 20px; }
    .slot-detail-facts div:nth-child(2) dd {
        font-size: 18px;
        white-space: nowrap;
    }
}
@media (min-width: 641px) and (max-width: 1100px) {
    .slot-detail-facts { grid-template-columns: 0.8fr 1.4fr 0.8fr; }
    .slot-detail-facts div:nth-child(2) dd {
        font-size: 18px;
        white-space: nowrap;
    }
    .slot-detail-facts div:nth-child(4) {
        grid-column: span 2;
        border-top: 1px solid var(--border);
        border-left: 0;
    }
    .slot-detail-facts div:nth-child(5) { border-top: 1px solid var(--border); }
}
@media (max-width: 800px) {
    .slot-detail-hero-grid { grid-template-columns: 1fr; }
    .slot-detail-cover { max-width: 560px; }
    .slot-offers-heading { grid-template-columns: 1fr; align-items: start; }
    .slot-review-author-inner {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 18px;
        padding-block: 24px;
    }
    .slot-review-author-photo {
        width: 72px;
        height: 72px;
    }
    .slot-review-author-photo span { font-size: 25px; }
    .slot-review-author-signature { font-size: 17px; }
    .slot-review-author-link {
        grid-column: 2;
        justify-self: start;
    }
}
@media (min-width: 801px) {
    .slot-detail-cover { aspect-ratio: 3 / 2; }
}
@media (max-width: 640px) {
    .slot-catalog-grid { grid-template-columns: 1fr; }
    .slot-listing-body { padding: 16px; }
    .slot-detail-hero { padding: 30px 0 36px; }
    .slot-casino-offers,
    .slot-review-author { margin-block: 28px; }
    .slot-detail-intro h1 { font-size: 38px; }
    .slot-detail-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .slot-detail-facts div:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
    .slot-detail-facts div:nth-child(4) { border-top: 1px solid var(--border); }
    .slot-detail-facts div:nth-child(5) { grid-column: 1 / -1; border-top: 1px solid var(--border); border-left: 0; }
    .slot-pr-content-layout { padding: 0 16px; }
    .slot-casino-offer { grid-template-columns: 1fr; padding: 16px; }
    .slot-offer-actions { grid-column: auto; grid-template-columns: 1fr; }
    .slot-offer-actions .btn-play,
    .slot-offer-actions .btn-review { width: 100%; }
    .slot-review-author-inner {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
    }
    .slot-review-author-photo {
        width: 58px;
        height: 58px;
    }
    .slot-review-author-photo span { font-size: 21px; }
    .slot-review-author-bio { font-size: 14px; }
}

@media (max-width: 360px) {
    .container,
    .container-narrow { padding: 0 14px; }
    .header-inner {
        gap: 8px;
        padding-inline: 14px;
    }
    .logo img { width: 150px; }
    .header nav {
        margin-inline: -14px;
        padding-inline: 14px;
    }
    .nav-list a {
        padding-inline: 10px;
        font-size: 10.5px;
    }
    .header-right { gap: 6px; }
    .lang-switch,
    .compare-btn { padding-inline: 8px; }
    .search-btn {
        width: 38px;
        height: 38px;
    }
    .casino-card,
    .bonus-card,
    .slot-card,
    .category-card,
    .review-card,
    .blog-card,
    .panel { padding: 16px; }
}

@media (max-width: 640px) {
    .site-search-dialog {
        width: calc(100vw - 24px);
    }
    .site-search-dialog-panel {
        padding: 20px;
    }
    .site-search-dialog-header h2 {
        font-size: 22px;
    }
    .site-search-form,
    .search-page-form {
        grid-template-columns: 1fr;
    }
    .site-search-form button,
    .search-page-form button {
        width: 100%;
    }
    .search-page {
        padding: 48px 0 68px;
    }
    .search-page-header h1 {
        font-size: 34px;
    }
    .search-page-form {
        padding: 12px;
    }
    .search-results-summary {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .search-results-summary small {
        width: 100%;
        margin-left: 0;
    }
    .search-result-card {
        grid-template-columns: 68px minmax(0, 1fr) 22px;
        gap: 12px;
        min-height: 94px;
        padding: 10px 12px 10px 10px;
    }
    .search-result-media {
        width: 68px;
        height: 68px;
    }
    .search-result-copy > strong {
        font-size: 16px;
    }
    .search-result-excerpt {
        -webkit-line-clamp: 1;
    }
    .search-result-arrow {
        font-size: 20px;
    }
}

/* Private development access */
.private-access-page {
    min-height: 100vh;
    background: #07070a;
}
.private-access-main {
    display: grid;
    min-height: 100vh;
    padding: 24px;
    place-items: center;
}
.private-access-panel {
    width: min(100%, 560px);
    padding: 40px;
    border: 1px solid rgba(255, 184, 0, 0.28);
    border-radius: 8px;
    background: #101015;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.private-access-brand {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--star);
    font-size: 25px;
    font-weight: 900;
    text-decoration: none;
}
.private-access-status {
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.private-access-panel h1 {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-size: 38px;
    line-height: 1.15;
}
.private-access-panel > p {
    margin: 0 0 28px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
}
.private-access-error {
    margin-bottom: 16px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 90, 90, 0.45);
    border-radius: 6px;
    background: rgba(255, 90, 90, 0.08);
    color: #ffc1c1;
    font-size: 13px;
}
.private-access-form {
    display: grid;
    gap: 8px;
}
.private-access-form label {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
}
.private-access-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}
.private-access-input-row input {
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    background: #07070a;
    color: var(--text-primary);
    font: inherit;
}
.private-access-input-row input:focus {
    border-color: var(--star);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12);
}
.private-access-input-row button {
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid #ffcc33;
    border-radius: 6px;
    background: var(--star);
    color: #111;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}
.private-access-input-row button:hover {
    background: #ffcc33;
}

@media (max-width: 560px) {
    .private-access-main { padding: 16px; }
    .private-access-panel { padding: 28px 20px; }
    .private-access-panel h1 { font-size: 31px; }
    .private-access-input-row { grid-template-columns: 1fr; }
    .private-access-input-row button { width: 100%; }

    .catalog-pagination { margin-top: 22px; }
    .catalog-pager {
        flex-direction: column;
        gap: 10px;
    }
    .catalog-pager-status {
        order: 2;
        font-size: 12px;
    }
    .catalog-pager-links {
        width: 100%;
        gap: 6px;
    }
    .catalog-page-link {
        flex: 0 0 44px;
        padding-inline: 6px;
    }
    .catalog-page-arrow { flex-basis: 48px; }
    .catalog-page-ellipsis { min-width: 18px; }
}
/* Bonus directory */
.bonus-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(44px, 7vw, 88px) 0 52px;
    border-block: 1px solid rgba(255, 201, 74, 0.24);
    background:
        linear-gradient(115deg, rgba(8, 11, 17, 0.98) 0%, rgba(14, 18, 25, 0.94) 58%, rgba(32, 24, 8, 0.82) 100%),
        url("/images/brand/slotreview-mark.svg") right 8% center / min(34vw, 360px) no-repeat;
}

.bonus-page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffc94a 28%, #43e6b1 72%, transparent);
    box-shadow: 0 0 22px rgba(255, 201, 74, 0.45);
}

.bonus-page-hero h1 {
    max-width: 900px;
    margin: 12px 0 16px;
    font-size: clamp(2rem, 4.8vw, 4.4rem);
    line-height: 1.02;
}

.bonus-page-hero > .container > p {
    max-width: 720px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.bonus-page-kicker,
.bonus-directory-heading span,
.bonus-source-type,
.bonus-directory-offer > span {
    color: #ffc94a;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bonus-page-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 180px));
    gap: 1px;
    max-width: 620px;
    margin: 34px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.bonus-page-summary > div {
    padding: 14px 18px;
    background: rgba(7, 10, 15, 0.78);
}

.bonus-page-summary dt {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-page-summary dd {
    margin: 4px 0 0;
    color: #fff;
    font-weight: 800;
}

.bonus-directory {
    padding: 64px 0;
    background: #090c11;
}

.bonus-directory-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 30px;
}

.bonus-directory-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.bonus-directory-heading p {
    max-width: 500px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.bonus-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bonus-directory-card {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #11151c;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.bonus-directory-card.is-featured {
    border-color: rgba(255, 201, 74, 0.74);
    box-shadow: 0 0 0 1px rgba(255, 201, 74, 0.16), 0 20px 52px rgba(0, 0, 0, 0.32);
}

.bonus-directory-card > header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-directory-card > header h2 {
    margin: 3px 0 0;
    font-size: 1.08rem;
}

.bonus-source-logo {
    display: grid;
    flex: 0 0 106px;
    width: 106px;
    height: 54px;
    margin: 0;
    place-items: center;
}

.bonus-source-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bonus-source-logo span {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
}

.bonus-featured-label {
    margin-left: auto;
    padding: 6px 9px;
    border: 1px solid rgba(255, 201, 74, 0.4);
    border-radius: 4px;
    color: #ffc94a;
    background: rgba(255, 201, 74, 0.08);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bonus-directory-offer {
    padding: 22px 20px 18px;
}

.bonus-directory-offer h3 {
    margin: 7px 0 0;
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.25;
}

.bonus-directory-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 20px;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-directory-facts > div {
    min-width: 0;
    padding: 14px 0;
}

.bonus-directory-facts > div + div {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-directory-facts dt {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-directory-facts dd {
    margin: 5px 0 0;
    overflow-wrap: anywhere;
    color: #fff;
    font-weight: 800;
}

.bonus-directory-card > footer {
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 20px;
}

.bonus-directory-card > footer > * {
    flex: 1 1 0;
    text-align: center;
}

.bonus-directory-empty {
    padding: 42px;
    border: 1px dashed rgba(255, 201, 74, 0.35);
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 201, 74, 0.04);
}

.bonus-directory-empty h2 {
    margin-top: 0;
}

.bonus-landing-copy {
    padding: 68px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d1117;
}

@media (max-width: 760px) {
    .bonus-page-hero {
        padding: 38px 0 44px;
        background:
            linear-gradient(135deg, rgba(8, 11, 17, 0.98), rgba(30, 23, 8, 0.92)),
            url("/images/brand/slotreview-mark.svg") right -60px center / 220px no-repeat;
    }

    .bonus-page-summary,
    .bonus-directory-grid {
        grid-template-columns: 1fr;
    }

    .bonus-page-summary {
        max-width: none;
    }

    .bonus-page-summary > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .bonus-page-summary dd {
        margin: 0;
    }

    .bonus-directory {
        padding: 46px 0;
    }

    .bonus-directory-heading {
        display: block;
    }

    .bonus-directory-heading p {
        margin-top: 14px;
    }

    .bonus-source-logo {
        flex-basis: 88px;
        width: 88px;
    }

    .bonus-featured-label {
        position: absolute;
        top: 8px;
        right: 8px;
    }

    .bonus-directory-card > footer {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Bonus page editorial copy */
.bonus-landing-copy {
    position: relative;
    padding: 88px 0 94px;
    border-block: 1px solid rgba(255, 255, 255, 0.09);
    background: #0b1016;
}

.bonus-landing-copy::before {
    position: absolute;
    top: -1px;
    left: 50%;
    width: min(900px, calc(100% - 40px));
    height: 2px;
    background: #ffc94a;
    box-shadow: 0 0 20px rgba(255, 201, 74, 0.34);
    content: "";
    transform: translateX(-50%);
}

.bonus-landing-copy .review-content {
    max-width: 900px;
    color: #cbd3de;
    font-size: 18px;
    line-height: 1.78;
}

.bonus-landing-copy .review-content > *:first-child {
    margin-top: 0;
}

.bonus-landing-copy .review-content > *:last-child {
    margin-bottom: 0;
}

.bonus-landing-copy .review-content h2 {
    margin: 58px 0 22px;
    padding: 4px 0 4px 20px;
    border-left: 4px solid #ffc94a;
    color: #fff7e7;
    font-size: 32px;
    line-height: 1.2;
}

.bonus-landing-copy .review-content h2:first-child {
    margin-top: 0;
}

.bonus-landing-copy .review-content h3 {
    margin: 46px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(67, 230, 177, 0.28);
    color: #72eac4;
    font-size: 24px;
    line-height: 1.3;
}

.bonus-landing-copy .review-content p {
    margin: 0 0 20px;
    color: #cbd3de;
}

.bonus-landing-copy .review-content h2 + p,
.bonus-landing-copy .review-content h3 + p {
    color: #e5eaf0;
}

.bonus-landing-copy .review-content ul,
.bonus-landing-copy .review-content ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    margin: 24px 0 34px;
    padding: 0;
    list-style: none;
}

.bonus-landing-copy .review-content li {
    position: relative;
    min-width: 0;
    padding: 15px 0 15px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd3de;
}

.bonus-landing-copy .review-content li::before {
    position: absolute;
    top: 24px;
    left: 2px;
    width: 9px;
    height: 9px;
    border: 2px solid #ffc94a;
    background: rgba(255, 201, 74, 0.08);
    content: "";
    transform: rotate(45deg);
}

.bonus-landing-copy .review-content li p {
    margin: 0;
}

.bonus-landing-copy .review-content strong {
    color: #fff;
    font-weight: 800;
}

.bonus-landing-copy .review-content li strong {
    color: #ffd66b;
}

.bonus-landing-copy .review-content a {
    color: #72eac4;
    text-decoration-color: rgba(114, 234, 196, 0.5);
    text-underline-offset: 4px;
}

.bonus-landing-copy .review-content a:hover {
    color: #fff;
    text-decoration-color: #ffc94a;
}

.bonus-landing-copy .review-content blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    border-left: 4px solid #72eac4;
    color: #eef3f7;
    background: #111923;
}

.bonus-landing-copy .review-content > p:last-child {
    margin-top: 42px;
    padding: 24px 26px;
    border: 1px solid rgba(255, 201, 74, 0.3);
    border-left: 4px solid #ffc94a;
    border-radius: 6px;
    color: #eef2f6;
    background: #121820;
}

.bonus-landing-copy .review-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    overflow-wrap: anywhere;
}

.bonus-landing-copy .review-content th,
.bonus-landing-copy .review-content td {
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
}

.bonus-landing-copy .review-content th {
    color: #0b1016;
    background: #ffc94a;
}

/* Bonus page FAQ */
.bonus-page-faq {
    padding: 82px 0 90px;
    border-top: 1px solid rgba(67, 230, 177, 0.18);
    background: #080d13;
}

.bonus-page-faq .container-narrow {
    max-width: 960px;
}

.bonus-page-faq h2 {
    position: relative;
    margin: 0 0 30px;
    padding-left: 20px;
    color: #fff7e7;
    font-size: 32px;
    line-height: 1.2;
}

.bonus-page-faq h2::before {
    position: absolute;
    inset: 2px auto 2px 0;
    width: 4px;
    background: #72eac4;
    box-shadow: 0 0 16px rgba(114, 234, 196, 0.34);
    content: "";
}

.bonus-page-faq .faq-list {
    display: grid;
    gap: 10px;
    counter-reset: bonus-faq;
}

.bonus-page-faq .faq-list details {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: #101720;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    counter-increment: bonus-faq;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.bonus-page-faq .faq-list details:hover {
    border-color: rgba(255, 201, 74, 0.46);
    background: #121b25;
}

.bonus-page-faq .faq-list details[open] {
    border-color: rgba(114, 234, 196, 0.48);
    background: #121b24;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26), 0 0 24px rgba(114, 234, 196, 0.05);
}

.bonus-page-faq .faq-list summary {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 15px 18px;
    color: #eef3f7;
    cursor: pointer;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    list-style: none;
}

.bonus-page-faq .faq-list summary::-webkit-details-marker {
    display: none;
}

.bonus-page-faq .faq-list summary::before {
    display: grid;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 201, 74, 0.38);
    border-radius: 4px;
    place-items: center;
    color: #ffc94a;
    background: rgba(255, 201, 74, 0.07);
    content: counter(bonus-faq, decimal-leading-zero);
    font-size: 12px;
    font-weight: 900;
}

.bonus-page-faq .faq-list summary::after {
    display: grid;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(114, 234, 196, 0.34);
    border-radius: 50%;
    place-items: center;
    color: #72eac4;
    content: "+";
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.bonus-page-faq .faq-list summary:hover {
    color: #fff;
}

.bonus-page-faq .faq-list summary:focus-visible {
    outline: 2px solid #ffc94a;
    outline-offset: -4px;
}

.bonus-page-faq .faq-list details[open] summary {
    color: #fff;
}

.bonus-page-faq .faq-list details[open] summary::after {
    border-color: #ffc94a;
    color: #ffc94a;
    transform: rotate(45deg);
}

.bonus-page-faq .faq-list details > p {
    margin: 0 20px 0 74px;
    padding: 0 20px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #cbd3de;
    font-size: 17px;
    line-height: 1.75;
}

.bonus-page-faq .faq-list details[open] > p {
    padding-top: 20px;
}

@media (max-width: 760px) {
    .bonus-landing-copy {
        padding: 62px 0 68px;
    }

    .bonus-landing-copy .review-content {
        font-size: 16px;
        line-height: 1.72;
    }

    .bonus-landing-copy .review-content h2 {
        margin-top: 44px;
        padding-left: 15px;
        font-size: 26px;
    }

    .bonus-landing-copy .review-content h3 {
        margin-top: 36px;
        font-size: 21px;
    }

    .bonus-landing-copy .review-content ul,
    .bonus-landing-copy .review-content ol {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bonus-landing-copy .review-content > p:last-child {
        margin-top: 32px;
        padding: 20px;
    }

    .bonus-landing-copy .review-content table {
        display: block;
        overflow-x: auto;
    }

    .bonus-page-faq {
        padding: 60px 0 68px;
    }

    .bonus-page-faq h2 {
        margin-bottom: 24px;
        padding-left: 15px;
        font-size: 27px;
    }

    .bonus-page-faq .faq-list summary {
        grid-template-columns: 36px minmax(0, 1fr) 30px;
        gap: 10px;
        min-height: 68px;
        padding: 13px 12px;
        font-size: 15px;
    }

    .bonus-page-faq .faq-list summary::before {
        width: 34px;
        height: 34px;
    }

    .bonus-page-faq .faq-list summary::after {
        width: 28px;
        height: 28px;
        font-size: 19px;
    }

    .bonus-page-faq .faq-list details > p {
        margin-left: 58px;
        padding-right: 12px;
        font-size: 15px;
        line-height: 1.7;
    }
}
