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

/* ============================================================
   BASE STYLES
   ============================================================ */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAF9F9;
}

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

/* ============================================================
   HEADER & NAV
   ============================================================ */

header {
    background-color: #143567;
    color: white;
    padding: 5px 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.nav-list, .nav-new, .nav-top {
    background-size: 23px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 27px;
}
.nav-list { background-image: url(/images/top-list.webp); }
.nav-new  { background-image: url(/images/new-cas.webp); }
.nav-top  { background-image: url(/images/top-rat.webp); }

nav ul li a:hover {
    color: #dff0d8;
}

.menu-image {
    display: none;
    margin-left: 20px;
}

.menu-image img {
    width: 50px;
    height: auto;
    border-radius: 5px;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.main-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.container {
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.main-wrapper > .container {
    flex: 1;
    min-width: 0;
    margin: 0;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 15px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #143567;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar ul li a:hover {
    color: #2a69c9;
}

.menuleft {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    text-align: left;
    padding-left: 20px;
    font-weight: 600;
    background-color: #2a69c9;
    font-size: 18px;
    color: white;
}

.pros {
    flex: 1;
    min-width: 245px;
    background-color: #FCFCFC;
    padding: 1px;
    border-left: 2px solid #D6D6D6;
    border-right: 2px solid #D6D6D6;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.pros ul {
    padding: 4px 8px 4px 8px;
    list-style: none;
    margin: 0;
}

.pros ul li a {
    color: #2A68C6;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    transition: color 0.3s;
}

.pros ul li a:hover {
    color: #dff0d8;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1 {
    text-align: center;
}

h2, h3, h4 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.caption1 {
    text-align: center;
    font-weight: bold;
}

p {
    line-height: 1.6;
    color: #555;
}

b {
    line-height: 2;
    color: #555;
}


/* ── Page-specific styles for /new-casinos/ ── */

.nc-hero {
    background: linear-gradient(135deg, #0d2b5e 0%, #1a6b5a 60%, #0a3d2b 100%);
    border-radius: 18px;
    padding: 36px 32px 30px;
    margin-bottom: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.nc-hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.nc-hero h1 {
    text-align: left;
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    margin: 0 0 14px;
    line-height: 1.25;
}

.nc-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05em;
    max-width: 680px;
    margin: 0;
}

.nc-badge {
    display: inline-block;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
    box-shadow: 0 3px 10px rgba(46,204,113,0.35);
}

/* TOC block */
.nc-toc {
    background: #fff;
    border: 1px solid #e0e8f5;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 14px rgba(20,53,103,0.07);
}

.nc-toc h2 {
    font-size: 1rem;
    text-align: left;
    color: #143567;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

/* Advantages grid */
.nc-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0 32px;
}

.nc-adv-card {
    background: #fff;
    border: 1px solid #e0e8f5;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 4px 12px rgba(20,53,103,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.nc-adv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20,53,103,0.12);
}

.nc-adv-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.nc-adv-card h3 {
    text-align: left;
    font-size: 1rem;
    color: #143567;
    margin: 0 0 8px;
}

.nc-adv-card p {
    font-size: 0.9em;
    color: #607080;
    margin: 0;
    line-height: 1.55;
}

/* Rating section header */
.nc-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 36px 0 18px;
}

.nc-section-title h2 {
    text-align: left;
    margin: 0;
    font-size: 1.45rem;
    color: #143567;
}

.nc-section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #2a69c9, transparent);
    border-radius: 2px;
}

/* Casino card with NEW badge */
.nc-casino-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #dde6f5;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 3px 10px rgba(20,53,103,0.07);
    transition: box-shadow 0.25s;
    position: relative;
}

.nc-casino-card:hover {
    box-shadow: 0 7px 22px rgba(20,53,103,0.13);
}

.nc-new-label {
    position: absolute;
    top: 10px;
    right: 12px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 999px;
}

.nc-casino-card img {
    width: 130px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.nc-casino-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nc-casino-body .casino-name {
    font-size: 1.2em;
    text-align: left;
    border: none;
    background: none;
    color: #143567;
    padding: 0;
    margin-bottom: 6px;
}

.nc-casino-body .rating {
    margin-bottom: 6px;
}

.nc-casino-body .casino-bonus {
    text-align: left;
    margin-bottom: 10px;
}

.nc-casino-body .actions {
    flex-direction: row;
    gap: 10px;
}

/* Steps — registration */
.nc-steps {
    counter-reset: step-counter;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nc-step {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid #e0e8f5;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 3px 10px rgba(20,53,103,0.06);
}

.nc-step::before {
    content: counter(step-counter);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #143567, #2a69c9);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(42,105,201,0.3);
}

.nc-step-text h3 {
    text-align: left;
    font-size: 1rem;
    color: #143567;
    margin: 0 0 5px;
}

.nc-step-text p {
    font-size: 0.9em;
    color: #607080;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .nc-hero {
        padding: 24px 18px 20px;
        border-radius: 12px;
    }
    .nc-hero h1 {
        font-size: 1.4rem;
    }
    .nc-advantages-grid {
        grid-template-columns: 1fr;
    }
    .nc-casino-card {
        flex-direction: column;
    }
    .nc-casino-card img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .nc-casino-body .actions {
        flex-direction: column;
    }
    .nc-section-title h2 {
        font-size: 1.2rem;
    }
}


/* ============================================================
   CASINO CARDS
   ============================================================ */

.highlighted-img {
    float: left;
    width: 300px;
    height: auto;
    margin: 0 10px 0 0;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlighted-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.casino-description {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #F3F3FC;
    border-radius: 5px;
}

.casino-name {
    font-size: 1.4em;
    text-align: center;
    font-weight: bold;
    color: #191970;
    margin: 0;
    border-radius: 5px;
    border: 2px solid #DEE41B;
}

.casino-bonus {
    color: #555;
    margin: 5px 0 15px;
    font-size: 15px;
    text-align: center;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.play-btn {
    background-color: #2a69c9;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    padding: 8px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.play-btn:hover {
    background-color: #2E8B57;
}

.review-btn {
    background-color: #F6F7F6;
    color: #2F4F4F;
    text-decoration: none;
    text-align: center;
    padding: 8px 10px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.review-btn:hover {
    background-color: #ccc;
}

/* ============================================================
   RATING
   ============================================================ */

.rating {
    display: inline-block;
    background: url(/images/stars.svg) center left no-repeat;
    background-size: 22px;
    padding: 4px 0 2px 28px;
    font-size: 15px;
    color: #D7D7EE;
    font-weight: 600;
}

.rating span {
    color: #4682B4;
}

/* ============================================================
   STYLED LIST
   ============================================================ */

ul.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.styled-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #f9f9f9;
}

ul.styled-list li:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.2);
}

ul.styled-list li::before {
    content: "✔";
    font-size: 1.2em;
    color: #4CAF50;
    margin-right: 10px;
    flex-shrink: 0;
}

ul.styled-list li span {
    font-size: 1em;
    color: #555;
}

/* ============================================================
   PROS / CONS BLOCK
   ============================================================ */

.pros-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* ============================================================
   MENU ICON CLASSES (sidebar icons)
   ============================================================ */

.jackpot { background: url(/images/2193465.webp) center left no-repeat; }
.wivdrau { background: url(/images/2495082.webp) center left no-repeat; }
.jack    { background: url(/images/777.webp) center left no-repeat; }
.almaz   { background: url(/images/almaz.webp) center left no-repeat; }
.bonuss  { background: url(/images/536089.webp) center left no-repeat; }
.websait { background: url(/images/web.webp) center left no-repeat; }
.top1    { background: url(/images/top1.webp) center left no-repeat; }
.top2    { background: url(/images/top2.webp) center left no-repeat; }
.top3    { background: url(/images/top3.webp) center left no-repeat; }
.top4    { background: url(/images/top4.webp) center left no-repeat; }
.top5    { background: url(/images/top5.webp) center left no-repeat; }
.menu1   { background: url(/images/menu1.webp) center left no-repeat; }
.menu2   { background: url(/images/menu2.webp) center left no-repeat; }
.menu3   { background: url(/images/menu3.webp) center left no-repeat; }
.menu4   { background: url(/images/menu4.webp) center left no-repeat; }
.menu5 { background: url(/images/slot-rank.webp) center left no-repeat; }
.menu6 { background: url(/images/megaw.webp) center left no-repeat; }
.menu7 { background: url(/images/live.webp) center left no-repeat; }
.menu8 { background: url(/images/pragmatic.webp) center left no-repeat; }

.menu1, .menu2, .menu3, .menu4,.menu5, .menu6, .menu7, .menu8,
.top1, .top2, .top3, .top4, .top5,
.websait, .bonuss, .almaz, .jack, .wivdrau, .jackpot {
    display: block;
    background-size: 26px 26px;
    padding: 5px 10px 5px 36px;
    line-height: 1.4;
}

/* ============================================================
   LANGUAGE FLAG CLASSES
   ============================================================ */

.rus     { background: url(/images/ru.svg) center left no-repeat; }
.en, .enjp { background: url(/images/en.svg) center left no-repeat; }
.de      { background: url(/images/de.svg) center left no-repeat; }
.pl      { background: url(/images/pl.svg) center left no-repeat; }
.uz      { background: url(/images/uz.svg) center left no-repeat; }
.lang-bg { background: url(/images/bg.svg) center left no-repeat; }
.hi      { background: url(/images/hi.svg) center left no-repeat; }
.az      { background: url(/images/az.svg) center left no-repeat; }
.kk      { background: url(/images/kz.svg) center left no-repeat; }
.braz    { background: url(/images/br.svg) center left no-repeat; }
.jp      { background: url(/images/jp.svg) center left no-repeat; }
.es      { background: url(/images/es.svg) center left no-repeat; }

/* ============================================================
   TABLE OF CONTENTS (TOC)
   ============================================================ */

.toc__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b47;
    margin-bottom: 13px;
    padding-left: 10px;
}

.toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: toc-counter;
}

.toc__list li {
    counter-increment: toc-counter;
    margin-bottom: 3px;
}

.toc__list li:last-child {
    margin-bottom: 0;
}

.toc__list a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #24364f;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(108, 99, 255, 0.04);
    transition: all 0.25s ease;
    position: relative;
}

.toc__list a::before {
    content: counter(toc-counter);
    min-width: 20px;
    height: 20px;
    border-radius: 20%;
    background: linear-gradient(135deg, #6c63ff, #00c2ff);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(108, 99, 255, 0.25);
    flex-shrink: 0;
}

.toc__list a:hover {
    transform: translateX(6px);
    background: rgba(108, 99, 255, 0.09);
    color: #111c2e;
    box-shadow: 0 8px 15px rgba(26, 43, 71, 0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background-color: #3a3d49;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #00bfff;
}

.lang-dropdown {
    position: relative;
}

.lang-checkbox {
    display: none;
}

.lang-label {
    cursor: pointer;
    color: #fff;
    display: inline-block;
}

.lang-label:hover {
    color: #00bfff;
}

.lang-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background-color: #333;
    min-width: 100px;
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 4px;
    margin-bottom: 10px;
}

.lang1, .lang-menu a {
    color: #fff;
    padding: 7px 20px 9px 18px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    background-size: 16px;
}

.lang-menu a:hover {
    background-color: #444;
}

.lang-checkbox:checked + .lang-label + .lang-menu {
    display: block;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    color: #aaa;
    font-size: 14px;
}

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

.footer-bottom img {
    height: 40px;
    vertical-align: middle;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    order: 1;
}

.footer-bottom > img,
.footer-bottom > a {
    order: 2;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.age-badge {
    background-color: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* ============================================================
   MEDIA QUERIES — MOBILE (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {

    /* Header */
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 10px 10px 10px;
        background-color: #1e5799;
        border-radius: 3px;
        text-align: center;
        box-sizing: border-box;
    }

    nav ul li a.nav-list,
    nav ul li a.nav-new,
    nav ul li a.nav-top {
        padding-left: 38px;
        background-position: 8px center;
        background-size: 22px;
        text-align: left;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    nav ul li a:hover {
        background-color: #174a82;
        color: white;
    }

    .menu-image {
        display: block;
        margin-top: 19px;
        padding-left: 0px;
        text-align: center;
    }

    .menu-image img {
        width: 300px;
    }

    /* Layout */
    .main-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 20px;
        font-size: 18px;
    }

    .pros {
        min-width: 0;
    }

    .menu1, .menu2, .menu3, .menu4, .menu5, .menu6, .menu7, .menu8,
    .top1, .top2, .top3, .top4, .top5 {
        width: 100%;
        box-sizing: border-box;
    }

    .menuleft {
        font-size: 20px;
    }

    .container {
        padding: 15px;
    }

    /* Casino cards */
    .highlighted-img {
        float: none;
        display: block;
        margin: 15px auto;
        width: 100%;
        max-width: 300px;
    }

    .casino-info {
        align-items: center;
        text-align: center;
    }

    .casino-name {
        padding-left: 10px;
        padding-right: 10px;
    }

    .actions {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    /* Rating */
    .rating {
        background-size: 28px;
        padding: 5px 0 5px 34px;
        font-size: 14px;
    }

    /* TOC */
    .toc__title {
        font-size: 20px;
    }

    .toc__list a {
        font-size: 15px;
        padding: 10px 12px;
    }

    .toc__list a::before {
        min-width: 20px;
        height: 20px;
        font-size: 13px;
    }

    /* Menu icons */
    .menu1, .menu2, .menu3, .menu4, .menu5, .menu6, .menu7, .menu8,
    .top1, .top2, .top3, .top4, .top5,
    .websait, .bonuss, .almaz, .jack, .wivdrau, .jackpot {
        background-size: 28px;
        padding: 10px 10px 10px 40px;
    }

    /* Language flags */
    .lang1, .lang-menu a {
        display: inline-block;
        background-size: 20px;
        padding: 6px 12px 8px 28px;
        text-align: left;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu {
        justify-content: center;
    }

    .lang-dropdown {
        margin-top: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    /* Pros/cons */
    .pros-cons {
        flex-direction: column;
    }
}

/* FAQ */

.article-meta {
  margin: 10px 0 18px;
  font-size: 14px;
  color: #777;
}

.article-meta a {
  color: inherit;
  text-decoration: underline;
}

.article-separator {
  margin: 0 8px;
}

.faq-section {
    --faq-accent: #2a69c9;
    --faq-accent-dark: #143567;
    --faq-surface: rgba(255, 255, 255, 0.92);
    position: relative;
    margin: clamp(36px, 6vw, 64px) 0;
    padding: clamp(20px, 4vw, 34px);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(42, 105, 201, 0.18), transparent 36%),
        radial-gradient(circle at bottom right, rgba(89, 176, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #f9fbff 0%, #eef4ff 55%, #ffffff 100%);
    border: 1px solid rgba(20, 53, 103, 0.08);
    box-shadow: 0 18px 40px rgba(20, 53, 103, 0.12);
    overflow: hidden;
}

.faq-section::before,
.faq-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::before {
    width: 220px;
    height: 220px;
    top: -110px;
    right: -70px;
    background: radial-gradient(circle, rgba(42, 105, 201, 0.18) 0%, rgba(42, 105, 201, 0) 70%);
}

.faq-section::after {
    width: 180px;
    height: 180px;
    bottom: -95px;
    left: -55px;
    background: radial-gradient(circle, rgba(62, 154, 255, 0.18) 0%, rgba(62, 154, 255, 0) 72%);
}

.faq-header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 53, 103, 0.08);
    color: var(--faq-accent-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a69c9, #58b0ff);
    box-shadow: 0 0 0 6px rgba(42, 105, 201, 0.12);
}

.faq-title {
    margin: 0 0 10px;
    text-align: left;
    color: var(--faq-accent-dark);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.2;
}

.faq-intro {
    margin: 0;
    max-width: 720px;
    color: #50627b;
}

.faq-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    counter-reset: faq-counter;
}

.faq-item {
    counter-increment: faq-counter;
    border-radius: 22px;
    border: 1px solid rgba(42, 105, 201, 0.14);
    background: var(--faq-surface);
    box-shadow: 0 10px 24px rgba(20, 53, 103, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(20, 53, 103, 0.12);
    border-color: rgba(42, 105, 201, 0.26);
}

.faq-item[open] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 246, 255, 0.98) 100%);
    border-color: rgba(42, 105, 201, 0.28);
}

.faq-item:last-child {
    grid-column: 1 / -1;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 62px 18px 18px;
    cursor: pointer;
    list-style: none;
    color: var(--faq-accent-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: counter(faq-counter, decimal-leading-zero);
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a69c9, #58b0ff);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(42, 105, 201, 0.24);
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(20, 53, 103, 0.08);
    color: var(--faq-accent-dark);
    font-size: 24px;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    background: var(--faq-accent-dark);
    color: #fff;
}

.faq-answer {
    margin: 0;
    padding: 0 18px 20px 74px;
    color: #4b5b71;
}

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

    .faq-item:last-child {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .faq-section {
        margin: 28px 0 36px;
        padding: 18px 14px 14px;
        border-radius: 22px;
    }

    .faq-kicker {
        font-size: 12px;
        padding: 7px 12px;
    }

    .faq-title {
        font-size: 1.45rem;
    }

    .faq-item {
        border-radius: 18px;
    }

    .faq-item summary {
        gap: 12px;
        padding: 15px 52px 15px 14px;
        font-size: 15px;
    }

    .faq-item summary::before {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 12px;
        font-size: 13px;
    }

    .faq-item summary::after {
        right: 14px;
        width: 30px;
        height: 30px;
        font-size: 21px;
    }

    .faq-answer {
        padding: 0 14px 16px 14px;
        font-size: 14px;
    }
}

/* ============================================================
   MEGAWAYS PAGE
   ============================================================ */

/* ── Theme overrides (scoped to .page-megaways body class) ── */

.page-megaways .nc-hero {
    background: linear-gradient(135deg, #0d0221 0%, #3b0764 50%, #0a1a40 100%);
}
.page-megaways .nc-hero::before {
    background: radial-gradient(circle, rgba(167,139,250,0.18) 0%, transparent 70%);
    width: 320px;
    height: 320px;
    top: -120px;
    right: -90px;
}
.page-megaways .nc-hero::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    bottom: -70px;
    left: -50px;
    background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.page-megaways .nc-badge {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    box-shadow: 0 3px 10px rgba(245,158,11,0.45);
}
.page-megaways .nc-section-line {
    background: linear-gradient(90deg, #7c3aed, transparent);
}
.page-megaways .nc-section-title h2 {
    color: #3b0764;
}
.page-megaways .nc-adv-card {
    border-color: #e9d5ff;
}
.page-megaways .nc-adv-card:hover {
    box-shadow: 0 8px 20px rgba(124,58,237,0.13);
    border-color: #a78bfa;
}
.page-megaways .nc-adv-card h3 {
    color: #3b0764;
}
.page-megaways .nc-casino-card {
    border-color: #e4d4f7;
}
.page-megaways .nc-casino-card:hover {
    box-shadow: 0 7px 22px rgba(124,58,237,0.12);
}
.page-megaways .nc-toc {
    border-color: #e9d5ff;
    box-shadow: 0 4px 14px rgba(124,58,237,0.07);
}
.page-megaways .nc-toc h2 {
    color: #3b0764;
}
.page-megaways .toc__list a::before {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}
.page-megaways .toc__list a:hover {
    background: rgba(124,58,237,0.09);
}
.page-megaways .faq-section {
    background:
        radial-gradient(circle at top left, rgba(124,58,237,0.14), transparent 36%),
        radial-gradient(circle at bottom right, rgba(167,139,250,0.12), transparent 34%),
        linear-gradient(135deg, #faf9ff 0%, #f0ebff 55%, #ffffff 100%);
}
.page-megaways .faq-section::before {
    background: radial-gradient(circle, rgba(124,58,237,0.16) 0%, rgba(124,58,237,0) 70%);
}
.page-megaways .faq-section::after {
    background: radial-gradient(circle, rgba(167,139,250,0.16) 0%, rgba(167,139,250,0) 72%);
}
.page-megaways .faq-kicker::before {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 0 0 6px rgba(124,58,237,0.12);
}
.page-megaways .faq-item summary::before {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 10px 18px rgba(124,58,237,0.24);
}
.page-megaways .faq-item[open] summary::after {
    background: #3b0764;
}
.page-megaways .faq-kicker {
    background: rgba(124,58,237,0.08);
    color: #3b0764;
}
.page-megaways .faq-title {
    color: #3b0764;
}
.page-megaways .faq-item {
    border-color: rgba(124,58,237,0.14);
}
.page-megaways .faq-item:hover {
    border-color: rgba(124,58,237,0.28);
    box-shadow: 0 16px 30px rgba(124,58,237,0.10);
}
.page-megaways .faq-item[open] {
    border-color: rgba(124,58,237,0.28);
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,240,255,0.98) 100%);
}

/* ── Stats strip ── */
.mw-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 0 0 32px;
}
.mw-stat-card {
    background: #fff;
    border: 1px solid #e9d5ff;
    border-radius: 14px;
    padding: 18px 10px 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(124,58,237,0.07);
    transition: transform 0.22s, box-shadow 0.22s;
}
.mw-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(124,58,237,0.14);
}
.mw-stat-value {
    font-size: 1.55rem;
    font-weight: 800;
    color: #7c3aed;
    display: block;
    line-height: 1.15;
}
.mw-stat-label {
    font-size: 0.76rem;
    color: #6b7280;
    margin-top: 5px;
    display: block;
    line-height: 1.35;
}

/* ── Providers grid ── */
.mw-providers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0 32px;
}
.mw-provider-card {
    background: #fff;
    border: 1px solid #e9d5ff;
    border-radius: 16px;
    padding: 20px 12px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(124,58,237,0.06);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.mw-provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(124,58,237,0.13);
    border-color: #a78bfa;
}
.mw-provider-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 9px;
}
.mw-provider-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #3b0764;
    display: block;
}
.mw-provider-note {
    font-size: 0.74rem;
    color: #9ca3af;
    margin-top: 3px;
    display: block;
    line-height: 1.3;
}

/* ── Highlight callout ── */
.mw-highlight {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 1px solid #c4b5fd;
    border-left: 4px solid #7c3aed;
    border-radius: 12px;
    padding: 18px 20px;
    margin: 20px 0 28px;
}
.mw-highlight p {
    margin: 0;
    color: #4c1d95;
    font-size: 0.95em;
    line-height: 1.6;
}

/* ── Sidebar banner ── */
.mw-sidebar-banner {
    margin-top: 16px;
    border-radius: 12px;
    background: linear-gradient(150deg, #3b0764 0%, #1e3a5f 100%);
    padding: 18px 14px 16px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.mw-sidebar-banner::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    top: -45px;
    right: -35px;
    background: radial-gradient(circle, rgba(167,139,250,0.28) 0%, transparent 70%);
    pointer-events: none;
}
.mw-sidebar-banner::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    bottom: -35px;
    left: -25px;
    background: radial-gradient(circle, rgba(99,102,241,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.mw-banner-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.mw-banner-icon a {
    display: block;
    position: relative;
    z-index: 1;
}
.mw-banner-icon img {
    max-width: 120px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    transition: transform 0.22s;
}
.mw-banner-icon a:hover img {
    transform: scale(1.04);
}
.mw-banner-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fde68a;
    margin: 0 0 7px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
}
.mw-banner-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.82);
    margin: 0 0 13px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
.mw-banner-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
    position: relative;
    z-index: 1;
    text-decoration: none;
}

/* ── Animated CTA button for banners ── */
.mw-banner-cta {
    display: inline-block;
    padding: 11px 20px;
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 50%, #f59e0b 100%);
    background-size: 200% auto;
    animation: bannerBtnShine 2.5s linear infinite;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(245,158,11,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
    max-width: 100%;
    white-space: nowrap;
}
.mw-banner-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,158,11,0.65);
    animation-play-state: paused;
}
@keyframes bannerBtnShine {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── CTA button in content ── */
.mw-cta-wrap {
    text-align: center;
    margin: 24px 0;
}
.mw-cta-btn {
    display: inline-block;
    padding: 13px 36px;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(124,58,237,0.35);
    letter-spacing: 0.02em;
    transition: box-shadow 0.22s, transform 0.22s;
}
.mw-cta-btn:hover {
    box-shadow: 0 8px 22px rgba(124,58,237,0.45);
    transform: translateY(-2px);
}

/* ── Max-win list ── */
.mw-maxwin-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mw-maxwin-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 2px 14px;
    background: #fff;
    border: 1px solid #e9d5ff;
    border-left: 4px solid #7c3aed;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 3px 8px rgba(124,58,237,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.mw-maxwin-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124,58,237,0.12);
}
.mw-win-name {
    grid-column: 1;
    grid-row: 1;
    font-weight: 700;
    color: #3b0764;
    font-size: 0.95em;
    line-height: 1.35;
}
.mw-win-value {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(124,58,237,0.28);
}
.mw-win-desc {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.85em;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* ── Mobile-only footer banner ── */
.mw-mobile-banner-footer {
    display: none;
}

/* ── Megaways responsive ── */
@media (max-width: 768px) {
    .mw-stats { grid-template-columns: repeat(2, 1fr); }
    .mw-providers { grid-template-columns: repeat(2, 1fr); }
    .mw-mobile-banner-footer {
        display: block;
        margin: 0 12px 20px;
        border-radius: 16px;
        background: linear-gradient(150deg, #3b0764 0%, #1e3a5f 100%);
        padding: 20px 16px 18px;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    .mw-mobile-banner-footer::before {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        top: -45px;
        right: -35px;
        background: radial-gradient(circle, rgba(167,139,250,0.28) 0%, transparent 70%);
        pointer-events: none;
    }
    .mw-mobile-banner-footer::after {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        bottom: -35px;
        left: -25px;
        background: radial-gradient(circle, rgba(99,102,241,0.22) 0%, transparent 70%);
        pointer-events: none;
    }
    .mw-mobile-banner-footer .mw-banner-img-link {
        display: block;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }
    .mw-mobile-banner-footer img {
        max-width: 120px;
        border-radius: 8px;
        display: block;
        margin: 0 auto;
        transition: transform 0.22s;
    }
    .mw-mobile-banner-footer .mw-banner-img-link:hover img {
        transform: scale(1.04);
    }
    .mw-mobile-banner-footer .mw-banner-title,
    .mw-mobile-banner-footer .mw-banner-text,
    .mw-mobile-banner-footer .mw-banner-cta {
        position: relative;
        z-index: 1;
    }
}
@media (max-width: 520px) {
    .mw-maxwin-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 6px;
    }
    .mw-win-value {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
        font-size: 1.05rem;
    }
    .mw-win-desc {
        grid-row: 3;
    }
}

/* ============================================================
   SLOT REVIEW PAGES — SHARED COMPONENT STYLES
   Per-theme colours are scoped via body class:
   .page-big-bass-1000 | .page-bonanza-megaways | .page-dead-or-alive-2
   ============================================================ */

/* --- Slot Hero --- */
.slot-hero {
  border-radius: 20px;
  padding: 40px 32px 32px;
  margin-bottom: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.slot-hero::before,
.slot-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.slot-hero::before { width: 400px; height: 400px; top: -200px; right: -150px; }
.slot-hero::after  { width: 300px; height: 300px; bottom: -160px; left: -100px; }
.slot-hero-inner { position: relative; z-index: 1; }
.slot-hero h1 {
  text-align: left;
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 12px;
  line-height: 1.22;
}
.slot-hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.05em;
  margin: 0 0 28px;
  max-width: 620px;
}
.slot-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.slot-hero-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.slot-hero-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.slot-score-badge {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: 2px solid transparent;
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.slot-score-num { font-size: 1.9rem; font-weight: 900; line-height: 1; }
.slot-score-label { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; margin-top: 2px; }

/* --- Specs grid --- */
.slot-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
.slot-spec {
  background: #fff;
  border: 1px solid #dde6f5;
  border-radius: 14px;
  padding: 18px 16px 14px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(20,53,103,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.slot-spec:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(20,53,103,0.13); }
.slot-spec-icon  { font-size: 1.7rem; margin-bottom: 6px; display: block; line-height: 1; }
.slot-spec-value { display: block; font-size: 1.45rem; font-weight: 900; color: #143567; line-height: 1; margin-bottom: 4px; }
.slot-spec-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #7d95b5; }

/* --- RTP + Volatility meters --- */
.slot-meters { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px; }
.slot-meter-card {
  background: #fff;
  border: 1px solid #dde6f5;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 4px 14px rgba(20,53,103,0.07);
}
.slot-meter-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: #7d95b5; margin-bottom: 8px; }
.slot-meter-value { font-size: 1.7rem; font-weight: 900; color: #143567; margin-bottom: 10px; }
.rtp-bar-track { width: 100%; height: 10px; background: #e8edf5; border-radius: 999px; overflow: hidden; }
.rtp-bar-fill  { height: 100%; border-radius: 999px; position: relative; }
.rtp-bar-fill::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
}
.vol-dots { display: flex; gap: 6px; align-items: center; margin-top: 8px; }
.vol-dot  { width: 18px; height: 18px; border-radius: 50%; background: #e8edf5; border: 2px solid #dde6f5; transition: background 0.2s; }
.vol-label { font-size: 12px; font-weight: 800; margin-left: 6px; text-transform: uppercase; letter-spacing: 0.06em; }

/* --- Feature cards --- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 32px; }
.feature-card {
  background: #fff;
  border: 1px solid #dde6f5;
  border-radius: 18px;
  padding: 24px 18px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(20,53,103,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 18px 18px 0 0; }
.feature-card.fc-blue::before  { background: linear-gradient(90deg, #2a69c9, #00c8ff); }
.feature-card.fc-green::before { background: linear-gradient(90deg, #27ae60, #00e5b0); }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(20,53,103,0.13); }
.feature-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.feature-card h3 { font-size: 1rem; color: #143567; margin: 0 0 8px; text-align: center; }
.feature-card p  { font-size: 0.88em; color: #607080; margin: 0; line-height: 1.55; }

/* --- Reel diagram --- */
.reel-diagram { border-radius: 18px; padding: 28px 24px; margin: 24px 0; position: relative; overflow: hidden; }
.reel-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 61px);
}
.reel-diagram-title { color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; position: relative; z-index: 1; }
.reel-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; position: relative; z-index: 1; max-width: 360px; margin: 0 auto; }
.reel-cell {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.reel-info   { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; position: relative; z-index: 1; justify-content: center; }
.reel-legend { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.65); }
.reel-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }

/* --- Bonus flow --- */
.bonus-flow { display: flex; gap: 0; margin: 24px 0 32px; position: relative; }
.bonus-flow::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  transform: translateY(-50%);
  z-index: 0;
}
.bonus-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.bonus-step-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 3px solid #fff;
}
.bonus-step-title { font-size: 12px; font-weight: 800; color: #143567; text-align: center; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.bonus-step-desc  { font-size: 11px; color: #7d95b5; text-align: center; max-width: 100px; }

/* --- Pros / Cons --- */
.pros-cons-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px; }
.pc-block { border-radius: 16px; padding: 20px 18px; }
.pc-block.pros-block { background: linear-gradient(135deg, #f0fff8, #e6f9f2); border: 1px solid #a8e6c8; }
.pc-block.cons-block { background: linear-gradient(135deg, #fff5f5, #ffeaea); border: 1px solid #f5b8b8; }
.pc-block-title { font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pros-block .pc-block-title { color: #1a7a4a; }
.cons-block .pc-block-title { color: #b83232; }
.pc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pc-list li {
  font-size: 0.9em; color: #445;
  display: flex; align-items: flex-start; gap: 8px;
  background: none; border: none; box-shadow: none;
  padding: 0; border-radius: 0; transition: none;
}
.pc-list li::before { display: none; }
.pc-list li .pc-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; margin-top: 1px; }
.pros-block .pc-icon { background: #27ae60; color: #fff; }
.cons-block .pc-icon { background: #e84c4c; color: #fff; }

/* --- Verdict block --- */
.slot-verdict { border-radius: 18px; padding: 30px 28px; color: #fff; margin: 28px 0 32px; position: relative; overflow: hidden; }
.slot-verdict::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 900;
  pointer-events: none;
  line-height: 1;
}
.slot-verdict h3 { text-align: left; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 10px; }
.slot-verdict p  { color: rgba(255,255,255,0.85); margin: 0; max-width: 560px; font-size: 1.02em; line-height: 1.6; }

/* --- Where to play cards --- */
.play-cards { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 32px; }
.play-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff;
  border: 1px solid #dde6f5;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(20,53,103,0.07);
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s;
}
.play-card:hover     { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(20,53,103,0.14); }
.play-card-rank      { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #143567, #2a69c9); color: #fff; font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.play-card-info      { flex: 1; }
.play-card-name      { font-size: 15px; font-weight: 700; color: #143567; margin-bottom: 2px; }
.play-card-bonus     { font-size: 12px; color: #7d95b5; }
.play-card-btn       { background: linear-gradient(90deg, #2a69c9, #1a56a0); color: #fff; font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 8px; text-decoration: none; flex-shrink: 0; transition: opacity 0.2s; }
.play-card-btn:hover { opacity: 0.85; }

/* --- Info highlight box --- */
.info-highlight { border-left: 4px solid; border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 20px 0; font-size: 0.95em; line-height: 1.6; }

/* --- Slot screenshots --- */
.slot-screenshot { width: 100%; border-radius: 16px; overflow: hidden; margin: 24px 0; box-shadow: 0 8px 30px rgba(20,53,103,0.18); line-height: 0; }
.slot-screenshot img { width: 100%; height: auto; display: block; border-radius: 16px; }
.slot-screenshot figcaption { display: block; text-align: center; font-size: 12px; color: #7d95b5; padding: 10px 12px 0; font-style: italic; line-height: 1.5; }
.slot-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.slot-img-pair .slot-screenshot { margin: 0; }

/* --- Slot pages responsive --- */
@media (max-width: 768px) {
  .slot-specs        { grid-template-columns: repeat(2, 1fr); }
  .slot-meters       { grid-template-columns: 1fr; }
  .feature-grid      { grid-template-columns: 1fr; }
  .pros-cons-split   { grid-template-columns: 1fr; }
  .bonus-flow        { flex-direction: column; gap: 12px; }
  .bonus-flow::before { display: none; }
  .bonus-step-circle { margin-bottom: 6px; }
  .slot-score-badge  { width: 60px; height: 60px; top: 16px; right: 16px; }
  .slot-score-num    { font-size: 1.5rem; }
  .slot-verdict::after { display: none; }
  .play-card         { flex-wrap: wrap; }
}
@media (max-width: 600px) { .slot-img-pair { grid-template-columns: 1fr; } }

/* ============================================================
   css-slots — per-page colour overrides for all slot reviews
   ============================================================ */

/* ── The Dog House — warm orange / playful teal ── */
.css-slots .slot-hero { background: linear-gradient(145deg, #071428 0%, #0c2d4a 45%, #281000 100%); }
.css-slots .slot-hero::before { background: radial-gradient(circle, rgba(251,146,60,0.15) 0%, transparent 70%); }
.css-slots .slot-hero::after  { background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, transparent 70%); }
.css-slots .slot-badge        { background: linear-gradient(90deg, #ea580c, #fb923c); color: #fff; box-shadow: 0 4px 14px rgba(234,88,12,0.45); }
.css-slots .slot-hero-tag strong { color: #fb923c; }
.css-slots .slot-score-badge  { border-color: rgba(251,146,60,0.5); }
.css-slots .slot-score-num    { color: #fb923c; }
.css-slots .rtp-bar-fill      { width: 96.51%; background: linear-gradient(90deg, #c2410c, #fb923c); }
.css-slots .vol-dot.active    { background: linear-gradient(135deg, #e84c4c, #fb923c); border-color: #e84c4c; box-shadow: 0 0 8px rgba(232,76,76,0.4); }
.css-slots .vol-label         { color: #e84c4c; }
.css-slots .feature-card.fc-orange::before { background: linear-gradient(90deg, #ea580c, #fb923c); }
.css-slots .reel-diagram      { background: linear-gradient(135deg, #071428 0%, #0c2d4a 100%); }
.css-slots .reel-cell.win     { background: rgba(251,146,60,0.2); border-color: rgba(251,146,60,0.5); box-shadow: 0 0 12px rgba(251,146,60,0.3); }
.css-slots .reel-cell.money   { background: rgba(251,191,36,0.2); border-color: rgba(251,191,36,0.5); box-shadow: 0 0 12px rgba(251,191,36,0.25); }
.css-slots .bonus-flow::before { background: linear-gradient(90deg, #ea580c, #38bdf8); }
.css-slots .bonus-step-circle { background: linear-gradient(135deg, #c2410c, #ea580c); box-shadow: 0 6px 18px rgba(234,88,12,0.45); }
.css-slots .slot-verdict      { background: linear-gradient(135deg, #071428 0%, #0c2d4a 60%, #281000 100%); }
.css-slots .slot-verdict::after { content: "9.4/10"; color: rgba(251,146,60,0.18); }
.css-slots .slot-verdict h3   { color: #fb923c; }
.css-slots .info-highlight    { background: linear-gradient(135deg, #fff7ed, #ffedd5); border-left-color: #ea580c; color: #7c2d12; }
.css-slots .info-highlight strong { color: #9a3412; }