/*
 * S4P Slot Template — Milestone 1
 * Scoped under .s4p-slot-v2 so the existing theme remains untouched.
 */

.s4p-slot-v2 {
    --s4p-red: #c31835;
    --s4p-red-dark: #8f0b22;
    --s4p-gold: #fac557;
    --s4p-ink: #17171b;
    --s4p-muted: #6f7178;
    --s4p-card: #ffffff;
    --s4p-line: #e7e7ea;
    --s4p-soft: #f4f4f6;
    --s4p-radius: 14px;
    color: var(--s4p-ink);
    font-family: Arial, Helvetica, sans-serif;
}

.s4p-slot-v2 *,
.s4p-slot-v2 *::before,
.s4p-slot-v2 *::after {
    box-sizing: border-box;
}

.s4p-slot-v2__hero {
    position: relative;
    overflow: hidden;
    padding: 28px 0 42px;
    background:
        radial-gradient(circle at 20% 10%, rgba(195,24,53,.28), transparent 35%),
        linear-gradient(135deg, #16171b 0%, #24252b 52%, #101114 100%);
}

.s4p-slot-v2__hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.s4p-slot-v2__hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12,13,16,.96) 0%, rgba(12,13,16,.82) 42%, rgba(12,13,16,.92) 100%),
        linear-gradient(180deg, rgba(12,13,16,.25), rgba(12,13,16,.92));
}

.s4p-slot-v2__hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    filter: blur(2px) saturate(.85);
    transform: scale(1.03);
}

.s4p-slot-v2__container {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 30px));
    margin: 0 auto;
}

.s4p-slot-v2__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

.s4p-slot-v2__breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.s4p-slot-v2__heading {
    margin-bottom: 20px;
}

.s4p-slot-v2__heading h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.06;
    letter-spacing: -.025em;
}

.s4p-slot-v2__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 10px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.s4p-slot-v2__top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
    align-items: start;
}

.s4p-slot-v2__main {
    min-width: 0;
}

.s4p-slot-v2__player-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--s4p-radius);
    background: #050506;
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
}

.s4p-slot-v2__cover {
    position: relative;
    min-height: 520px;
}

.s4p-slot-v2__cover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s4p-slot-v2__cover-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(195,24,53,.08), transparent 30%),
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.58));
}

.s4p-slot-v2__play-area {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
}

.s4p-slot-v2__play-button,
.s4p-slot-v2__fullscreen-button {
    border: 0;
    cursor: pointer;
    font-weight: 800;
}

.s4p-slot-v2__play-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, #df2646, var(--s4p-red));
    color: #fff;
    box-shadow: 0 12px 28px rgba(195,24,53,.35);
}

.s4p-slot-v2__play-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding-left: 3px;
    border-radius: 50%;
    background: #fff;
    color: var(--s4p-red);
    font-size: 14px;
}

.s4p-slot-v2__fullscreen-button {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(15,15,18,.78);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}

.s4p-slot-v2__login-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(12,12,15,.82);
    color: #fff;
    text-align: center;
}

.s4p-slot-v2__login-gate strong {
    font-size: 22px;
}

.s4p-slot-v2__login-gate a {
    min-width: 140px;
    padding: 12px 18px;
    border-radius: 7px;
    background: var(--s4p-red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.s4p-slot-v2__iframe-wrap {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: #000;
}

.s4p-slot-v2__iframe-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.s4p-slot-v2__fullscreen-close {
    display: none;
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 20;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.s4p-slot-v2__player-card.is-fullscreen {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.s4p-slot-v2__player-card.is-fullscreen .s4p-slot-v2__iframe-wrap,
.s4p-slot-v2__player-card.is-fullscreen .s4p-slot-v2__iframe-wrap iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh !important;
}

.s4p-slot-v2__player-card.is-fullscreen .s4p-slot-v2__fullscreen-close {
    display: block;
}

.s4p-slot-v2__app-strip {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 14px;
    align-items: center;
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(90deg, #b50f2b, var(--s4p-red));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

.s4p-slot-v2__app-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--s4p-gold);
    color: #5c3500;
    font-weight: 900;
}

.s4p-slot-v2__app-strip strong,
.s4p-slot-v2__app-strip small {
    display: block;
}

.s4p-slot-v2__app-strip small {
    margin-top: 3px;
    color: rgba(255,255,255,.82);
}

.s4p-slot-v2__app-strip b {
    color: var(--s4p-gold);
    font-size: 12px;
}

.s4p-slot-v2__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.s4p-slot-v2__gallery-item {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: #16171a;
}

.s4p-slot-v2__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.s4p-slot-v2__gallery-item:hover img {
    transform: scale(1.025);
}

.s4p-slot-v2__sidebar {
    display: grid;
    gap: 12px;
}

.s4p-slot-v2__side-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.97);
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.s4p-slot-v2__side-card h2 {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.2;
}

.s4p-slot-v2__rating-summary {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
}

.s4p-slot-v2__rating-summary strong {
    color: var(--s4p-red);
    font-size: 34px;
    line-height: 1;
}

.s4p-slot-v2__rating-summary span {
    color: #555;
    font-weight: 700;
}

.s4p-slot-v2__rating-summary small {
    margin-left: auto;
    color: var(--s4p-muted);
    font-size: 10px;
}

.s4p-slot-v2__rmp .rmp-widgets-container {
    margin: 0 !important;
}

.s4p-slot-v2__share {
    display: flex;
    gap: 8px;
}

.s4p-slot-v2__share a,
.s4p-slot-v2__share button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--s4p-line);
    border-radius: 8px;
    background: var(--s4p-soft);
    color: #222;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
}

.s4p-slot-v2__share a:hover,
.s4p-slot-v2__share button:hover {
    border-color: var(--s4p-red);
    color: var(--s4p-red);
}

.s4p-slot-v2__copy-status {
    display: block;
    min-height: 14px;
    margin-top: 6px;
    color: var(--s4p-muted);
    font-size: 10px;
}

.s4p-slot-v2__facts {
    margin: 0;
}

.s4p-slot-v2__facts > div {
    display: grid;
    grid-template-columns: 1fr minmax(0, 1.2fr);
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--s4p-line);
}

.s4p-slot-v2__facts > div:last-child {
    border-bottom: 0;
}

.s4p-slot-v2__facts dt {
    color: var(--s4p-muted);
    font-size: 11px;
}

.s4p-slot-v2__facts dd {
    margin: 0;
    text-align: right;
    font-size: 11px;
    font-weight: 800;
}

.s4p-slot-v2__facts dd a {
    color: var(--s4p-red);
}

.s4p-slot-v2__casino-card {
    text-align: center;
}

.s4p-slot-v2__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--s4p-red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.s4p-slot-v2__casino-logo img {
    max-width: 140px;
    height: auto;
    margin: 0 auto 10px;
}

.s4p-slot-v2__casino-button {
    display: block;
    margin-top: 10px;
    padding: 12px;
    border-radius: 7px;
    background: linear-gradient(180deg, #df2646, var(--s4p-red));
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.s4p-slot-v2__casino-review {
    display: block;
    margin-top: 9px;
    color: var(--s4p-red);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.s4p-slot-v2__casino-terms {
    display: block;
    margin-top: 8px;
    color: var(--s4p-muted);
    font-size: 9px;
}

@media (max-width: 991px) {
    .s4p-slot-v2__top-grid {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .s4p-slot-v2__casino-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__hero {
        padding-top: 18px;
    }

    .s4p-slot-v2__container {
        width: min(100% - 18px, 1240px);
    }

    .s4p-slot-v2__heading h1 {
        font-size: 30px;
    }

    .s4p-slot-v2__player-card,
    .s4p-slot-v2__cover,
    .s4p-slot-v2__iframe-wrap iframe {
        min-height: 360px;
    }

    .s4p-slot-v2__app-strip {
        grid-template-columns: 46px 1fr;
    }

    .s4p-slot-v2__app-strip b {
        grid-column: 2;
    }

    .s4p-slot-v2__gallery {
        grid-template-columns: 1fr 1fr;
    }

    .s4p-slot-v2__gallery-item:first-child {
        grid-column: 1 / -1;
    }

    .s4p-slot-v2__sidebar {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__casino-card {
        grid-column: auto;
    }
}


/* =========================================================
   PASS 2 — HEADER OFFSET + JUMP NAV + REVIEW CONTENT
   ========================================================= */

/*
 * The S4P site header sits above the custom slot layout.
 * This gives the hero enough breathing room on desktop.
 */
.s4p-slot-v2__hero {
    padding-top: 108px;
}

/* Jump / TOC navigation */
.s4p-slot-v2__jump-shell {
    position: relative;
    z-index: 5;
    margin-top: -22px;
}

.s4p-slot-v2__jump {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    padding: 8px;
    border: 1px solid #e5e6ea;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(19, 25, 35, .09);
    scrollbar-width: none;
}

.s4p-slot-v2__jump::-webkit-scrollbar {
    display: none;
}

.s4p-slot-v2__jump a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 8px;
    color: #2a2c31;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.s4p-slot-v2__jump a:hover,
.s4p-slot-v2__jump a:focus {
    background: #f7edf0;
    color: var(--s4p-red);
}

/* Main light-grey review area */
.s4p-slot-v2__body {
    padding: 36px 0 54px;
    background: #eef0f3;
}

.s4p-slot-v2__content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
    align-items: start;
}

.s4p-slot-v2__content-main,
.s4p-slot-v2__content-side {
    min-width: 0;
}

.s4p-slot-v2__content-card,
.s4p-slot-v2__app-card {
    border: 1px solid #e2e4e8;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(22, 28, 37, .07);
}

.s4p-slot-v2__content-card {
    padding: 22px 24px;
}

.s4p-slot-v2__section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.s4p-slot-v2__section-heading h2 {
    margin: 0;
    color: #15171b;
    font-size: 24px;
    line-height: 1.15;
}

.s4p-slot-v2__section-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 10px;
    background: #f5f6f8;
    color: #17234f;
    font-size: 20px;
    font-weight: 900;
}

.s4p-slot-v2__editor {
    color: #3e424a;
    font-size: 15px;
    line-height: 1.7;
}

.s4p-slot-v2__editor > :first-child {
    margin-top: 0;
}

.s4p-slot-v2__editor > :last-child {
    margin-bottom: 0;
}

.s4p-slot-v2__editor h2,
.s4p-slot-v2__editor h3,
.s4p-slot-v2__editor h4 {
    color: #17191d;
}

.s4p-slot-v2__editor a {
    color: var(--s4p-red);
    font-weight: 700;
}

/* Sidebar app card under the hero */
.s4p-slot-v2__app-card {
    position: sticky;
    top: 95px;
    padding: 18px;
}

.s4p-slot-v2__app-card-badge {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(145deg, #dd2444, var(--s4p-red));
    color: #fff;
    font-weight: 900;
}

.s4p-slot-v2__app-card h2 {
    margin: 4px 0 8px;
    color: #17234f;
    font-size: 22px;
}

.s4p-slot-v2__app-card p {
    margin: 0 0 16px;
    color: #6b6f77;
    font-size: 12px;
    line-height: 1.6;
}

.s4p-slot-v2__app-card-button {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffdb6e, var(--s4p-gold));
    color: #4f3300;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

@media (max-width: 991px) {
    .s4p-slot-v2__hero {
        padding-top: 92px;
    }

    .s4p-slot-v2__content-grid {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__content-side {
        display: none;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__hero {
        padding-top: 78px;
    }

    .s4p-slot-v2__jump-shell {
        margin-top: -14px;
    }

    .s4p-slot-v2__jump {
        padding: 6px;
    }

    .s4p-slot-v2__jump a {
        padding: 9px 11px;
        font-size: 10px;
    }

    .s4p-slot-v2__body {
        padding-top: 28px;
    }

    .s4p-slot-v2__content-card {
        padding: 18px;
    }

    .s4p-slot-v2__section-heading h2 {
        font-size: 20px;
    }

    .s4p-slot-v2__editor {
        font-size: 14px;
    }
}


/* =========================================================
   PASS 3 — FEATURES + PROS & CONS
   ========================================================= */

.s4p-slot-v2__features-card {
    margin-top: 16px;
}

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

.s4p-slot-v2__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 148px;
    padding: 16px 12px;
    border: 1px solid #e7e9ed;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8f9fb, #f3f5f7);
    text-align: center;
}

.s4p-slot-v2__feature-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 16px rgba(21, 28, 39, .08);
}

.s4p-slot-v2__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s4p-slot-v2__feature-icon--fallback {
    color: var(--s4p-gold);
    font-size: 30px;
}

.s4p-slot-v2__feature h3 {
    margin: 0;
    color: #1b1d22;
    font-size: 13px;
    line-height: 1.3;
}

.s4p-slot-v2__feature h3 a {
    color: inherit;
    text-decoration: none;
}

.s4p-slot-v2__feature h3 a:hover {
    color: var(--s4p-red);
}


/* Pros & Cons */
.s4p-slot-v2__pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.s4p-slot-v2__pros,
.s4p-slot-v2__cons {
    padding: 20px;
    border: 1px solid;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(22, 28, 37, .05);
}

.s4p-slot-v2__pros {
    border-color: #d8eee1;
    background:
        linear-gradient(135deg, rgba(27, 163, 80, .08), rgba(255,255,255,.92));
}

.s4p-slot-v2__cons {
    border-color: #f2d9de;
    background:
        linear-gradient(135deg, rgba(218, 36, 66, .08), rgba(255,255,255,.94));
}

.s4p-slot-v2__pros h2,
.s4p-slot-v2__cons h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.2;
}

.s4p-slot-v2__pros h2 {
    color: #138443;
}

.s4p-slot-v2__cons h2 {
    color: #d0203d;
}

.s4p-slot-v2__pros ul,
.s4p-slot-v2__cons ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.s4p-slot-v2__pros li,
.s4p-slot-v2__cons li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
    align-items: start;
    color: #41454d;
    font-size: 13px;
    line-height: 1.45;
}

.s4p-slot-v2__pros li > span,
.s4p-slot-v2__cons li > span {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.s4p-slot-v2__pros li > span {
    background: #16934d;
}

.s4p-slot-v2__cons li > span {
    background: #dc2544;
}

@media (max-width: 991px) {
    .s4p-slot-v2__features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .s4p-slot-v2__pros-cons {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__pros,
    .s4p-slot-v2__cons {
        padding: 17px;
    }
}

@media (max-width: 420px) {
    .s4p-slot-v2__features-grid {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__feature {
        min-height: 120px;
    }
}


/* =========================================================
   PASS 4 — EXISTING TEXT / CASINO / BONUS / FAQ MODULES
   ========================================================= */

.s4p-slot-v2__modules {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.s4p-slot-v2__legacy-module {
    overflow: hidden;
    border: 1px solid #e2e4e8;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(22, 28, 37, .06);
}

/*
 * Existing module templates contain their own .container.
 * Inside our new content column it must behave as a local wrapper,
 * not as another site-width container.
 */
.s4p-slot-v2__legacy-module > .container,
.s4p-slot-v2__legacy-module .container {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* Text Blocks */
.s4p-slot-v2__legacy-module--text-section {
    padding: 4px 0;
}

.s4p-slot-v2__legacy-module--text-section .ts {
    margin: 0 !important;
    padding: 20px 22px !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.s4p-slot-v2__legacy-module--text-section .wp-editor {
    color: #3e424a;
    line-height: 1.7;
}

.s4p-slot-v2__legacy-module--text-section h2,
.s4p-slot-v2__legacy-module--text-section h3 {
    color: #17191d;
}

/* Bonuses Listing */
.s4p-slot-v2__legacy-module--list-bonuses {
    padding: 8px 0 14px;
}

.s4p-slot-v2__legacy-module--list-bonuses .bl {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

/* FAQ */
.s4p-slot-v2__legacy-module--faq {
    padding: 0;
}

.s4p-slot-v2__legacy-module--faq .faq-wr {
    margin: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.s4p-slot-v2__legacy-module--faq h2 {
    color: #17191d;
}

/* Keep nested old module spacing from becoming enormous in the new cards. */
.s4p-slot-v2__legacy-module .pt-30 {
    padding-top: 20px;
}

.s4p-slot-v2__legacy-module .pb-30 {
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .s4p-slot-v2__legacy-module--text-section .ts {
        padding: 17px !important;
    }
}


/* =========================================================
   PASS 5 — AUTHOR / COMMENTS / RELATED SLOTS
   ========================================================= */

.s4p-slot-v2__after-content {
    padding: 0 0 56px;
    background: #eef0f3;
}

.s4p-slot-v2__after-card {
    margin-top: 16px;
    border: 1px solid #e2e4e8;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(22, 28, 37, .06);
}

.s4p-slot-v2__author {
    overflow: hidden;
}

.s4p-slot-v2__author .container {
    width: 100%;
    max-width: none;
    margin: 0;
}

.s4p-slot-v2__author .author-box,
.s4p-slot-v2__author .ab {
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.s4p-slot-v2__comments {
    padding: 22px 24px;
}

.s4p-slot-v2__comments .s4p-slot-v2__section-heading h2 small {
    color: #7a7e85;
    font-size: 13px;
    font-weight: 700;
}

.s4p-slot-v2__comments-inner {
    min-width: 0;
}

.s4p-slot-v2__comments-inner #wpdcom {
    max-width: none !important;
    margin: 0 !important;
}

.s4p-slot-v2__related {
    padding: 22px 24px;
}

.s4p-slot-v2__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.s4p-slot-v2__related-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.s4p-slot-v2__related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #15171a;
}

.s4p-slot-v2__related-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.s4p-slot-v2__related-image:hover img {
    transform: scale(1.03);
}

.s4p-slot-v2__related-body {
    padding: 14px;
}

.s4p-slot-v2__related-body h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
}

.s4p-slot-v2__related-body h3 a {
    color: #17191d;
    text-decoration: none;
}

.s4p-slot-v2__related-body h3 a:hover {
    color: var(--s4p-red);
}

.s4p-slot-v2__related-provider {
    margin: 5px 0 10px;
    color: #777b83;
    font-size: 10px;
}

.s4p-slot-v2__related-facts {
    margin: 0 0 12px;
}

.s4p-slot-v2__related-facts > div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #edf0f2;
}

.s4p-slot-v2__related-facts dt {
    color: #777b83;
    font-size: 10px;
}

.s4p-slot-v2__related-facts dd {
    margin: 0;
    color: #2b2e33;
    font-size: 10px;
    font-weight: 800;
    text-align: right;
}

.s4p-slot-v2__related-button {
    display: block;
    padding: 10px 12px;
    border-radius: 7px;
    background: linear-gradient(180deg, #ffe074, var(--s4p-gold));
    color: #513600;
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
}

@media (max-width: 767px) {
    .s4p-slot-v2__comments,
    .s4p-slot-v2__related {
        padding: 18px;
    }

    .s4p-slot-v2__related-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PASS 6 — PROVIDER SLOTS + PREVIOUS / NEXT
   ========================================================= */

.s4p-slot-v2__provider-area {
    padding: 0 0 58px;
    background: #eef0f3;
}

.s4p-slot-v2__provider-slots {
    padding: 22px 24px;
}

.s4p-slot-v2__provider-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.s4p-slot-v2__provider-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.s4p-slot-v2__provider-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #15171a;
}

.s4p-slot-v2__provider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.s4p-slot-v2__provider-image:hover img {
    transform: scale(1.03);
}

.s4p-slot-v2__provider-body {
    padding: 13px;
}

.s4p-slot-v2__provider-body h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
}

.s4p-slot-v2__provider-body h3 a {
    color: #17191d;
    text-decoration: none;
}

.s4p-slot-v2__provider-body h3 a:hover {
    color: var(--s4p-red);
}

.s4p-slot-v2__provider-rating {
    margin-top: 7px;
    color: #d99f14;
    font-size: 11px;
    font-weight: 800;
}

.s4p-slot-v2__provider-button {
    display: block;
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 7px;
    background: linear-gradient(180deg, #ffe074, var(--s4p-gold));
    color: #513600;
    text-align: center;
    text-decoration: none;
    font-size: 9px;
    font-weight: 900;
}

/* Previous / Next */
.s4p-slot-v2__post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.s4p-slot-v2__post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 15px 17px;
    border: 1px solid #e2e4e8;
    border-radius: 12px;
    background: #fff;
    color: #17191d;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(22, 28, 37, .05);
}

.s4p-slot-v2__post-nav-link span {
    color: var(--s4p-red);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.s4p-slot-v2__post-nav-link strong {
    font-size: 13px;
    line-height: 1.3;
}

.s4p-slot-v2__post-nav-link--next {
    text-align: right;
}

.s4p-slot-v2__post-nav-link:hover {
    border-color: #d8b6bd;
}

@media (max-width: 991px) {
    .s4p-slot-v2__provider-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__provider-slots {
        padding: 18px;
    }

    .s4p-slot-v2__provider-grid {
        grid-template-columns: 1fr 1fr;
    }

    .s4p-slot-v2__post-nav {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__post-nav-link--next {
        text-align: left;
    }
}

@media (max-width: 440px) {
    .s4p-slot-v2__provider-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PASS 7 FIXED — LOCKED MOCKUP LAYOUT
   ========================================================= */

.s4p-slot-v2__top-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
}

.s4p-slot-v2__content-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
}

.s4p-slot-v2__content-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.s4p-slot-v2__app-card {
    position: static;
}

.s4p-slot-v2__sidebar-card {
    padding: 16px;
    border: 1px solid #e2e4e8;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(22, 28, 37, .06);
}

.s4p-slot-v2__sidebar-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.s4p-slot-v2__sidebar-card-head h2 {
    margin: 0;
    color: #17191d;
    font-size: 17px;
}

.s4p-slot-v2__sidebar-card-head > span {
    display: grid;
    place-items: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border-radius: 9px;
    background: var(--s4p-gold);
    color: #513600;
    font-size: 11px;
    font-weight: 900;
}

.s4p-slot-v2__recommended {
    text-align: center;
}

.s4p-slot-v2__recommended-logo {
    margin: 4px 0 10px;
}

.s4p-slot-v2__recommended-logo img {
    max-width: 155px;
    height: auto;
}

.s4p-slot-v2__recommended h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

.s4p-slot-v2__recommended-cta {
    display: block;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffdb6e, var(--s4p-gold));
    color: #4f3300;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.s4p-slot-v2__recommended-review {
    display: block;
    margin-top: 10px;
    color: #0b5dd7;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
}

.s4p-slot-v2__comments-card {
    overflow: hidden;
}

.s4p-slot-v2__comments-card #wpdcom {
    max-width: none !important;
    margin: 0 !important;
}

/* Locked mockup: three thumbnails */
.s4p-slot-v2__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.s4p-slot-v2__gallery-item,
.s4p-slot-v2__gallery-item:first-child {
    grid-column: auto;
    aspect-ratio: 16 / 9;
}

/* Locked mockup: compact 2x2 features */
.s4p-slot-v2__features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.s4p-slot-v2__feature {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 108px;
    padding: 12px 14px;
    text-align: left;
}

.s4p-slot-v2__feature-icon {
    width: 64px;
    height: 64px;
    margin: 0;
}

.s4p-slot-v2__pros-cons {
    gap: 12px;
}

@media (max-width: 991px) {
    .s4p-slot-v2__top-grid,
    .s4p-slot-v2__content-grid {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__content-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .s4p-slot-v2__comments-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .s4p-slot-v2__content-side {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__comments-card {
        grid-column: auto;
    }

    .s4p-slot-v2__features-grid {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__feature {
        grid-template-columns: 62px 1fr;
    }

    .s4p-slot-v2__feature-icon {
        width: 56px;
        height: 56px;
    }
}


/* =========================================================
   PASS 8 — BOXED MOCKUP ALIGNMENT + ICON SYSTEM
   ========================================================= */

.s4p-slot-v2 {
    --s4p-page-grey: #eef2f5;
    --s4p-card: #ffffff;
    --s4p-navy: #071a3d;
    --s4p-line: #dfe5eb;
}

/* Make the lower page visibly boxed instead of one continuous white sheet. */
.s4p-slot-v2__content-area {
    background: var(--s4p-page-grey);
    padding-top: 14px;
    padding-bottom: 22px;
}

.s4p-slot-v2__content-main,
.s4p-slot-v2__content-side {
    gap: 14px;
}

/* Every major module is its own white card with grey space around it. */
.s4p-slot-v2__after-card,
.s4p-slot-v2__review-card,
.s4p-slot-v2__features,
.s4p-slot-v2__pros-cons,
.s4p-slot-v2__casinos,
.s4p-slot-v2__sidebar-card,
.s4p-slot-v2__app-card {
    background: var(--s4p-card);
    border: 1px solid var(--s4p-line);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(10, 28, 55, .045);
}

/* Do not visually fuse adjacent modules. */
.s4p-slot-v2__content-main > *,
.s4p-slot-v2__content-side > * {
    margin-top: 0;
    margin-bottom: 0;
}

.s4p-slot-v2__section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.s4p-slot-v2__svg-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: var(--s4p-navy);
}

.s4p-slot-v2__svg-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Stronger boxed TOC/navigation bar like the locked design. */
.s4p-slot-v2__nav {
    background: #fff;
    border: 1px solid var(--s4p-line);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(10, 28, 55, .04);
    overflow: hidden;
}

.s4p-slot-v2__nav a {
    min-height: 48px;
    padding: 0 14px;
    font-weight: 700;
}

.s4p-slot-v2__nav a:first-child {
    box-shadow: inset 0 -4px 0 #1b73e8;
}

/* Target design has a generous main game column and a compact sidebar. */
.s4p-slot-v2__top-grid,
.s4p-slot-v2__content-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 16px;
}

/* Hero/game should feel dominant. */
.s4p-slot-v2__game-stage {
    border-radius: 12px;
    overflow: hidden;
}

.s4p-slot-v2__gallery {
    width: 100%;
}

.s4p-slot-v2__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* App banner closer to locked mockup: dark bar + yellow action. */
.s4p-slot-v2__app-strip {
    background: linear-gradient(90deg, #111a2d, #111827);
    border-radius: 0 0 10px 10px;
}

.s4p-slot-v2__app-strip a,
.s4p-slot-v2__app-strip .button {
    background: #ffd21c;
    color: #111;
    border-radius: 8px;
    font-weight: 900;
}

/* Summary feature cards remain compact 2x2 and clearly boxed. */
.s4p-slot-v2__features {
    padding: 16px;
}

.s4p-slot-v2__feature {
    background: #f7f9fb;
    border: 1px solid #edf0f3;
    border-radius: 9px;
}

/* Pros/cons are two boxed panels inside their own white module. */
.s4p-slot-v2__pros-cons {
    padding: 10px;
    background: #fff;
}

.s4p-slot-v2__pros,
.s4p-slot-v2__cons {
    border-radius: 9px;
}

/* Sidebar cards should be visually separate with grey gutters. */
.s4p-slot-v2__content-side {
    align-content: start;
}

.s4p-slot-v2__comments-card,
.s4p-slot-v2__recommended {
    padding: 14px;
}

/* Mobile keeps the same boxed language instead of collapsing into one sheet. */
@media (max-width: 991px) {
    .s4p-slot-v2__top-grid,
    .s4p-slot-v2__content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__content-area {
        padding-top: 10px;
    }

    .s4p-slot-v2__content-main,
    .s4p-slot-v2__content-side {
        gap: 10px;
    }

    .s4p-slot-v2__after-card,
    .s4p-slot-v2__review-card,
    .s4p-slot-v2__features,
    .s4p-slot-v2__pros-cons,
    .s4p-slot-v2__casinos,
    .s4p-slot-v2__sidebar-card {
        border-radius: 9px;
    }
}


/* =========================================================
   PASS 9 — HERO MATCH TO LOCKED MOCKUP
   ========================================================= */

/* Strong illustrated top area behind breadcrumb/title/player. */
.s4p-slot-v2__hero {
    position: relative;
    padding: 28px 0 34px;
    background: #0b0d12;
}

.s4p-slot-v2__hero-bg {
    opacity: 1;
}

.s4p-slot-v2__hero-bg-image {
    opacity: .48;
    filter: blur(2px) saturate(1.08) contrast(1.03);
    transform: scale(1.08);
}

.s4p-slot-v2__hero-bg::after {
    background:
        linear-gradient(90deg, rgba(8,10,15,.82) 0%, rgba(8,10,15,.63) 52%, rgba(8,10,15,.78) 100%),
        linear-gradient(180deg, rgba(8,10,15,.2) 0%, rgba(8,10,15,.55) 58%, #0b0d12 100%);
}

.s4p-slot-v2__container {
    width: min(1180px, calc(100% - 34px));
}

.s4p-slot-v2__breadcrumbs {
    margin-bottom: 10px;
    font-size: 12px;
}

.s4p-slot-v2__heading {
    margin-bottom: 16px;
}

.s4p-slot-v2__heading h1 {
    max-width: 900px;
    font-size: clamp(34px, 3.3vw, 50px);
    font-weight: 900;
}

.s4p-slot-v2__meta {
    margin-top: 9px;
    gap: 8px 18px;
    font-size: 12px;
}

/* Larger player and sidebar ratio. */
.s4p-slot-v2__top-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 16px;
}

.s4p-slot-v2__player-card,
.s4p-slot-v2__cover {
    min-height: 540px;
}

.s4p-slot-v2__cover-image {
    object-fit: cover;
}

.s4p-slot-v2__cover-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.18) 48%, rgba(0,0,0,.28));
}

/* Mockup top controls. */
.s4p-slot-v2__player-toolbar {
    position: absolute;
    z-index: 5;
    top: 16px;
    right: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.s4p-slot-v2__try-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ffd51e;
    color: #16120a;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 5px 16px rgba(0,0,0,.16);
}

.s4p-slot-v2__player-actions {
    display: flex;
    gap: 7px;
}

.s4p-slot-v2__toolbar-button {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(9,12,18,.77);
    color: #fff;
    backdrop-filter: blur(8px);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.s4p-slot-v2__toolbar-button--icon {
    width: 38px;
    padding: 0;
    justify-content: center;
}

.s4p-slot-v2__toolbar-button .s4p-slot-v2__svg-icon {
    width: 18px;
    height: 18px;
    color: #fff;
}

.s4p-slot-v2__toolbar-button .s4p-slot-v2__svg-icon svg {
    width: 17px;
    height: 17px;
}

/* Big circular Play Demo in center. */
.s4p-slot-v2__play-area {
    gap: 8px;
}

.s4p-slot-v2__play-button {
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-shadow: 0 2px 5px rgba(0,0,0,.65);
    font-size: 20px;
}

.s4p-slot-v2__play-icon {
    width: 76px;
    height: 76px;
    border: 4px solid #fff;
    background: rgba(16,19,25,.48);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* Login gate stays centered but gets mockup-like polish. */
.s4p-slot-v2__login-gate {
    min-width: 300px;
    padding: 22px 26px;
    background: rgba(8,10,15,.8);
    backdrop-filter: blur(6px);
}

/* App strip: target dark bar + yellow button. */
.s4p-slot-v2__app-strip {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    margin-top: 0;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(90deg, #111827, #151b2a);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.s4p-slot-v2__app-strip b {
    display: inline-grid;
    place-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    background: #ffd21c;
    color: #121212;
    font-size: 11px;
    font-weight: 900;
}

/* Three gallery cells use all available width; if fewer exist they stay left-aligned. */
.s4p-slot-v2__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.s4p-slot-v2__gallery-item {
    border: 2px solid rgba(255,255,255,.72);
    border-radius: 9px;
}

.s4p-slot-v2__gallery-item:first-child {
    border-color: #cf1a37;
}

/* Hero sidebar cards */
.s4p-slot-v2__sidebar {
    gap: 11px;
}

.s4p-slot-v2__side-card {
    padding: 15px;
    border-radius: 12px;
}

.s4p-slot-v2__side-card h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0d1b38;
}

.s4p-slot-v2__side-card h2 .s4p-slot-v2__svg-icon {
    width: 22px;
    height: 22px;
    color: #10224b;
}

.s4p-slot-v2__rating-summary strong {
    font-size: 38px;
}

.s4p-slot-v2__share a,
.s4p-slot-v2__share button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.s4p-slot-v2__share a:nth-child(1) {
    background: #287be8;
    color: #fff;
}

.s4p-slot-v2__share a:nth-child(2) {
    background: #111;
    color: #fff;
}

.s4p-slot-v2__share a:nth-child(3) {
    background: #ed4b25;
    color: #fff;
}

.s4p-slot-v2__facts > div {
    padding: 8px 0;
}

.s4p-slot-v2__facts dt {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #536078;
}

.s4p-slot-v2__facts dt .s4p-slot-v2__svg-icon {
    width: 18px;
    height: 18px;
    color: #10224b;
}

.s4p-slot-v2__facts dt .s4p-slot-v2__svg-icon svg {
    width: 16px;
    height: 16px;
}

.s4p-slot-v2__facts dd {
    color: #14213e;
    font-weight: 800;
}

/* Mobile hero */
@media (max-width: 991px) {
    .s4p-slot-v2__player-card,
    .s4p-slot-v2__cover {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__hero {
        padding-top: 18px;
    }

    .s4p-slot-v2__container {
        width: min(100% - 18px, 1180px);
    }

    .s4p-slot-v2__heading h1 {
        font-size: 30px;
    }

    .s4p-slot-v2__player-card,
    .s4p-slot-v2__cover,
    .s4p-slot-v2__iframe-wrap iframe {
        min-height: 370px;
    }

    .s4p-slot-v2__player-toolbar {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .s4p-slot-v2__try-pill {
        min-height: 32px;
        padding: 0 12px;
        font-size: 9px;
    }

    .s4p-slot-v2__toolbar-button span:not(.s4p-slot-v2__svg-icon) {
        display: none;
    }

    .s4p-slot-v2__toolbar-button {
        width: 34px;
        padding: 0;
        justify-content: center;
    }

    .s4p-slot-v2__play-icon {
        width: 66px;
        height: 66px;
    }

    .s4p-slot-v2__app-strip {
        grid-template-columns: 44px 1fr;
    }

    .s4p-slot-v2__app-strip b {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 4px;
    }
}


/* =========================================================
   PASS 10 — MORE VISIBLE HERO ART + SINGLE-LINE DESKTOP H1
   ========================================================= */

/*
 * The featured 900x500 artwork should read as atmosphere,
 * not disappear behind an almost-black overlay.
 */
.s4p-slot-v2__hero-bg-image {
    opacity: .72;
    filter: blur(7px) saturate(1.18) contrast(1.06) brightness(.82);
    transform: scale(1.11);
    object-position: center 36%;
}

.s4p-slot-v2__hero-bg::after {
    background:
        linear-gradient(
            90deg,
            rgba(7, 9, 14, .60) 0%,
            rgba(7, 9, 14, .34) 45%,
            rgba(7, 9, 14, .54) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 9, 14, .10) 0%,
            rgba(7, 9, 14, .24) 56%,
            rgba(7, 9, 14, .84) 100%
        );
}

/* Slight glow behind heading/meta so text stays readable over bright art. */
.s4p-slot-v2__breadcrumbs,
.s4p-slot-v2__heading {
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

/*
 * Keep the desktop H1 on one line.
 * At narrower/mobile widths we intentionally allow wrapping so it
 * doesn't destroy the responsive layout.
 */
.s4p-slot-v2__heading h1 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(28px, 2.75vw, 43px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

/* Let more of the blurred image show around the actual player. */
.s4p-slot-v2__hero {
    background: #0a0d12;
}

.s4p-slot-v2__top-grid {
    position: relative;
}

/* A touch more translucency in top cards so the hero artwork remains visible. */
.s4p-slot-v2__side-card {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(7px);
}

/* Keep the foreground game crisp and separate from the blurred hero art. */
.s4p-slot-v2__player-card {
    box-shadow:
        0 22px 50px rgba(0,0,0,.36),
        0 0 0 1px rgba(255,255,255,.08);
}

@media (max-width: 1100px) {
    .s4p-slot-v2__heading h1 {
        font-size: clamp(25px, 2.7vw, 34px);
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__hero-bg-image {
        opacity: .62;
        filter: blur(6px) saturate(1.12) brightness(.78);
        transform: scale(1.16);
    }

    .s4p-slot-v2__hero-bg::after {
        background:
            linear-gradient(
                180deg,
                rgba(7,9,14,.30) 0%,
                rgba(7,9,14,.42) 48%,
                rgba(7,9,14,.90) 100%
            );
    }

    .s4p-slot-v2__heading h1 {
        white-space: normal;
        font-size: 30px;
        line-height: 1.08;
    }
}


/* =========================================================
   PASS 11 — STICKY HEADER CLEARANCE
   Keeps breadcrumb, H1 and metadata below the S4P header.
   ========================================================= */

.s4p-slot-v2__hero {
    padding-top: 128px;
}

@media (max-width: 1100px) {
    .s4p-slot-v2__hero {
        padding-top: 112px;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__hero {
        padding-top: 84px;
    }
}


/* =========================================================
   PASS 12 — GAME FRAME FILL + ORIGINAL AD + GALLERY IN CONTENT
   ========================================================= */

/*
 * All current slot featured images are 900x500.
 * Make the player itself exactly that ratio so neither the preview image
 * nor the loaded iframe leaves a black strip underneath.
 */
.s4p-slot-v2__player-card {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0 !important;
    aspect-ratio: 900 / 500;
    background: #050506;
}

.s4p-slot-v2__cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0 !important;
}

.s4p-slot-v2__cover-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center;
}

.s4p-slot-v2__iframe-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.s4p-slot-v2__iframe-wrap iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    border: 0;
}

/*
 * Original live-theme casino advertisement.
 * Keep its existing PHP/template/data system but constrain it to the
 * new game's main column instead of allowing an inner .container to
 * behave like a second page-width container.
 */
.s4p-slot-v2__hero-ad {
    margin-top: 14px;
}

.s4p-slot-v2__hero-ad > .container,
.s4p-slot-v2__hero-ad .container {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.s4p-slot-v2__hero-ad .pt-30 {
    padding-top: 0 !important;
}

.s4p-slot-v2__hero-ad .pb-0 {
    padding-bottom: 0 !important;
}

/* The original list-casino ad should read as one clean horizontal card. */
.s4p-slot-v2__hero-ad .lc {
    margin: 0 !important;
}

.s4p-slot-v2__hero-ad .lc__item,
.s4p-slot-v2__hero-ad .lc > div {
    max-width: 100%;
}

/*
 * Gallery is NOT part of the hero.
 * It is rendered by the existing modular renderer in its editor-defined
 * position between content sections.
 */
.s4p-slot-v2__legacy-module--gallery {
    overflow: hidden;
    border: 1px solid var(--s4p-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(10, 28, 55, .045);
}

.s4p-slot-v2__legacy-module--gallery > .container,
.s4p-slot-v2__legacy-module--gallery .container {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Fullscreen must ignore the normal 900x500 page ratio. */
.s4p-slot-v2__player-card.is-fullscreen {
    aspect-ratio: auto !important;
    height: 100vh !important;
    min-height: 100vh !important;
}

/* Responsive: keep the game correctly filled rather than forcing old min-heights. */
@media (max-width: 991px) {
    .s4p-slot-v2__player-card,
    .s4p-slot-v2__cover,
    .s4p-slot-v2__iframe-wrap iframe {
        min-height: 0 !important;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__player-card {
        aspect-ratio: 900 / 500;
    }

    .s4p-slot-v2__hero-ad {
        margin-top: 10px;
    }
}


/* =========================================================
   PASS 13 — MOCKUP CONTENT FLOW + NAV ICONS + BOXED GUTTERS
   ========================================================= */

/* Jump navigation: large white boxed strip with icons. */
.s4p-slot-v2__jump-shell {
    background: #eef2f5;
    padding-top: 10px;
}

.s4p-slot-v2__jump {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dfe5eb;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(14, 31, 56, .06);
}

.s4p-slot-v2__jump a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 52px;
    padding: 8px 10px;
    border-right: 1px solid #edf0f3;
    border-radius: 0;
    color: #14213e;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.s4p-slot-v2__jump a:last-child {
    border-right: 0;
}

.s4p-slot-v2__jump a:first-child::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 0;
    left: 12px;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: #1c73ea;
}

.s4p-slot-v2__jump .s4p-slot-v2__svg-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
    color: #10254f;
}

.s4p-slot-v2__jump .s4p-slot-v2__svg-icon svg {
    width: 18px;
    height: 18px;
}

/* Strong grey gutters between every major white module. */
.s4p-slot-v2__body {
    padding-top: 14px;
    background: #eef2f5;
}

.s4p-slot-v2__content-main {
    display: grid;
    gap: 14px;
}

.s4p-slot-v2__content-card,
.s4p-slot-v2__pros-cons,
.s4p-slot-v2__legacy-module {
    margin: 0 !important;
}

/* Review intro is a single clean card even though it uses the old Text Block renderer. */
.s4p-slot-v2__review-summary {
    overflow: hidden;
}

.s4p-slot-v2__summary-module > .container,
.s4p-slot-v2__summary-module .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.s4p-slot-v2__review-summary .s4p-slot-v2__summary-module .ts,
.s4p-slot-v2__review-summary .s4p-slot-v2__summary-module .wp-editor {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Features summary: 2 x 2 like the locked mockup. */
.s4p-slot-v2__features-card {
    padding: 18px 20px;
}

.s4p-slot-v2__features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.s4p-slot-v2__feature {
    min-height: 94px;
    padding: 10px 12px;
    border-radius: 9px;
    background: #f7f9fb;
}

/* Pros/Cons should look like two colored boxes inside the grey-gutter flow. */
.s4p-slot-v2__pros-cons {
    padding: 10px;
    border: 1px solid #dfe5eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(10, 28, 55, .045);
}

/* Top Casinos is deliberately promoted before long review text. */
.s4p-slot-v2__top-casinos {
    overflow: hidden;
    padding: 18px 20px;
}

.s4p-slot-v2__top-casinos .s4p-slot-v2__summary-module--casinos .lc,
.s4p-slot-v2__top-casinos .s4p-slot-v2__summary-module--casinos > div {
    margin: 0 !important;
}

.s4p-slot-v2__top-casinos .s4p-slot-v2__summary-module--casinos .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

/* Remaining long modules are separate white cards, never fused together. */
.s4p-slot-v2__modules {
    display: grid;
    gap: 14px;
    margin-top: 0;
}

.s4p-slot-v2__legacy-module {
    border: 1px solid #dfe5eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(10, 28, 55, .045);
}

/* Detailed gallery stays in content and is visually boxed. */
.s4p-slot-v2__legacy-module--gallery {
    padding: 12px;
}

/* Section heading icon treatment */
.s4p-slot-v2__section-heading .s4p-slot-v2__svg-icon {
    width: 26px;
    height: 26px;
    color: #10254f;
}

.s4p-slot-v2__section-heading h2 {
    color: #12213f;
    font-weight: 900;
}

/* Sidebar keeps its independent white cards on same grey field. */
.s4p-slot-v2__content-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

@media (max-width: 991px) {
    .s4p-slot-v2__jump {
        display: flex;
        overflow-x: auto;
    }

    .s4p-slot-v2__jump a {
        flex: 0 0 auto;
        min-width: 145px;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__content-main,
    .s4p-slot-v2__modules,
    .s4p-slot-v2__content-side {
        gap: 10px;
    }

    .s4p-slot-v2__features-grid {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__jump a {
        min-width: 132px;
        min-height: 48px;
    }
}


/* =========================================================
   PASS 14 — FEATURED IMAGE RESTORE + ORIGINAL AD POLISH
   ========================================================= */

/*
 * Featured image is intentionally used twice:
 * 1) sharp as the game cover
 * 2) blurred/darkened as the hero atmosphere.
 * The gallery remains only between content modules.
 */
.s4p-slot-v2__hero-bg {
    display: block !important;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.s4p-slot-v2__hero-bg-image {
    display: block !important;
    position: absolute;
    inset: -6%;
    width: 112% !important;
    height: 112% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center;
    opacity: .74 !important;
    filter: blur(8px) saturate(1.18) contrast(1.05) brightness(.78);
    transform: scale(1.05);
}

.s4p-slot-v2__hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7,9,14,.58) 0%,
            rgba(7,9,14,.31) 48%,
            rgba(7,9,14,.54) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7,9,14,.08) 0%,
            rgba(7,9,14,.20) 52%,
            rgba(7,9,14,.86) 100%
        );
}

/* Keep the actual 900x500 featured image visible and sharp in the player. */
.s4p-slot-v2__cover-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/*
 * Original casino advert:
 * retain the original theme's card styling and internal spacing.
 * Only neutralise the nested page-width container so it fits our main column.
 */
.s4p-slot-v2__original-ad {
    margin-top: 14px;
    margin-bottom: 0;
}

.s4p-slot-v2__original-ad > .container,
.s4p-slot-v2__original-ad .container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Restore useful spacing from the original list-casino module. */
.s4p-slot-v2__original-ad .pt-30 {
    padding-top: 14px !important;
}

.s4p-slot-v2__original-ad .pb-0 {
    padding-bottom: 0 !important;
}

/* Give the original horizontal advert the roomy look it has on the live template. */
.s4p-slot-v2__original-ad .lc {
    margin: 0 !important;
}

.s4p-slot-v2__original-ad .lc__item,
.s4p-slot-v2__original-ad .lc > .container > div,
.s4p-slot-v2__original-ad .lc > div {
    border-radius: 12px;
}

/* Avoid our generic module font shrinking the original advert. */
.s4p-slot-v2__original-ad .btn {
    white-space: nowrap;
}

/* Important: no hero gallery styling/display. Gallery belongs in content only. */
.s4p-slot-v2__main > .s4p-slot-v2__gallery {
    display: none !important;
}

@media (max-width: 767px) {
    .s4p-slot-v2__original-ad {
        margin-top: 10px;
    }

    .s4p-slot-v2__original-ad .pt-30 {
        padding-top: 10px !important;
    }
}


/* =========================================================
   PASS 15 — HERO AD REBUILD
   Keep original casino data/links/terms, but give this page its
   own compact horizontal layout instead of Bootstrap column widths.
   ========================================================= */

.s4p-slot-v2__original-ad {
    margin-top: 14px;
}

.s4p-slot-v2__original-ad .container {
    padding: 0 !important;
}

/* Remove spacing intended for the old full-width slot template. */
.s4p-slot-v2__original-ad .lc {
    padding: 0 !important;
    border-radius: 12px !important;
    background: transparent !important;
}

.s4p-slot-v2__original-ad .lc > .js-append-casinos > .mb-30 {
    margin: 0 !important;
}

/* The actual advert card. */
.s4p-slot-v2__original-ad .cl {
    position: relative;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px !important;
    background: rgba(255,255,255,.97) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/*
 * Ignore the old responsive col-* widths here.
 * Build exactly the compact horizontal ad we want:
 * logo | casino/rating | bonus | 3 benefits | CTA
 */
.s4p-slot-v2__original-ad .cl > .row {
    display: grid !important;
    grid-template-columns:
        minmax(110px, 145px)
        minmax(120px, 150px)
        minmax(170px, 1.15fr)
        minmax(190px, 1fr)
        minmax(120px, 145px);
    align-items: center;
    gap: 14px;
}

.s4p-slot-v2__original-ad .cl > .row > [class*="col-"] {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Logo */
.s4p-slot-v2__original-ad figure {
    display: grid;
    place-items: center;
    min-height: 84px;
    margin: 0 !important;
    border-radius: 9px !important;
}

.s4p-slot-v2__original-ad .cl__thumb {
    display: grid;
    place-items: center;
    min-height: 84px;
    padding: 12px !important;
}

.s4p-slot-v2__original-ad .cl__thumb img {
    display: block;
    width: auto !important;
    max-width: 118px !important;
    max-height: 62px !important;
    margin: auto;
    object-fit: contain;
}

/* Casino name + rating */
.s4p-slot-v2__original-ad h4,
.s4p-slot-v2__original-ad .h5 {
    margin: 0 0 5px !important;
    padding: 0 !important;
    font-size: 15px !important;
    line-height: 1.15;
    text-align: left !important;
}

.s4p-slot-v2__original-ad .cc__rating {
    justify-content: flex-start !important;
    padding: 0 !important;
    white-space: nowrap;
}

.s4p-slot-v2__original-ad .cc__rating .rating svg {
    width: 16px !important;
    height: 16px !important;
}

.s4p-slot-v2__original-ad .cc__rating .fs-20 {
    font-size: 15px !important;
}

.s4p-slot-v2__original-ad .cc__rating .sf-16 {
    font-size: 12px !important;
}

/* Bonus */
.s4p-slot-v2__original-ad .cl > .row > :nth-child(3) p {
    margin: 0 !important;
    padding: 0 !important;
    color: #161616 !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 500;
    text-align: left !important;
}

/* Advantages */
.s4p-slot-v2__original-ad .cl__pros {
    display: grid;
    gap: 5px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.s4p-slot-v2__original-ad .cl__pros li {
    position: relative;
    margin: 0 !important;
    padding: 0 0 0 21px !important;
    color: #343434;
    font-size: 12px !important;
    line-height: 1.3;
    font-weight: 700;
}

.s4p-slot-v2__original-ad .cl__pros li::before {
    content: "✓";
    position: absolute;
    top: -1px;
    left: 0;
    color: #cf1734;
    font-size: 15px;
    font-weight: 900;
}

/* CTA */
.s4p-slot-v2__original-ad .ta-o-xs-c {
    padding: 0 !important;
    text-align: right !important;
}

.s4p-slot-v2__original-ad .btn {
    display: inline-grid !important;
    place-items: center;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 145px;
    min-height: 44px;
    margin: 0 !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    background: #ffc957 !important;
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

/* Badge */
.s4p-slot-v2__original-ad .cc__badge {
    top: -8px !important;
    left: -8px !important;
    border-radius: 7px !important;
    font-size: 9px !important;
}

/* Terms stay underneath, subtle and contained. */
.s4p-slot-v2__original-ad .lc__tc {
    margin: 5px 0 0 !important;
    padding: 0 8px !important;
    color: rgba(255,255,255,.58) !important;
    font-size: 8px !important;
    line-height: 1.3;
    text-align: left !important;
}

.s4p-slot-v2__original-ad .lc__tc a {
    color: rgba(255,255,255,.82) !important;
}

/*
 * Tablet: make it a clean 3-row compact card.
 * We'll do the full site-wide mobile polish later, after desktop is locked.
 */
@media (max-width: 1180px) {
    .s4p-slot-v2__original-ad .cl > .row {
        grid-template-columns: 120px 1fr 150px;
        gap: 10px 14px;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(3) {
        grid-column: 2;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(4) {
        grid-column: 1 / 3;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(5) {
        grid-column: 3;
        grid-row: 1 / 3;
        align-self: center;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__original-ad .cl {
        padding: 10px !important;
    }

    .s4p-slot-v2__original-ad .cl > .row {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 9px 11px;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(4) {
        grid-column: 1 / -1;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(5) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .s4p-slot-v2__original-ad figure,
    .s4p-slot-v2__original-ad .cl__thumb {
        min-height: 74px;
    }

    .s4p-slot-v2__original-ad .cl__thumb img {
        max-width: 74px !important;
        max-height: 54px !important;
    }

    .s4p-slot-v2__original-ad .cl > .row > :nth-child(3) p {
        font-size: 14px !important;
    }

    .s4p-slot-v2__original-ad .cl__pros {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__original-ad .ta-o-xs-c {
        text-align: center !important;
    }

    .s4p-slot-v2__original-ad .btn {
        max-width: none;
    }
}


/* =========================================================
   PASS 16 — AD LOGO CONTAINMENT
   Override legacy theme image sizing without stretching the logo.
   ========================================================= */

.s4p-slot-v2__original-ad .cl > .row > :first-child,
.s4p-slot-v2__original-ad .cl__thumb,
.s4p-slot-v2__original-ad figure {
    min-width: 0 !important;
    overflow: hidden !important;
}

.s4p-slot-v2__original-ad .cl__thumb {
    box-sizing: border-box !important;
    width: 100% !important;
    height: 92px !important;
    min-height: 92px !important;
    padding: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.s4p-slot-v2__original-ad .cl__thumb picture {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
}

.s4p-slot-v2__original-ad .cl__thumb img,
.s4p-slot-v2__original-ad figure img,
.s4p-slot-v2__original-ad picture img {
    position: static !important;
    inset: auto !important;
    display: block !important;
    flex: 0 1 auto !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 64px !important;
    margin: auto !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
}

/* Give the logo a little more breathing room than Pass 15. */
.s4p-slot-v2__original-ad .cl > .row {
    grid-template-columns:
        minmax(130px, 160px)
        minmax(120px, 150px)
        minmax(170px, 1.15fr)
        minmax(190px, 1fr)
        minmax(120px, 145px);
}

@media (max-width: 1180px) {
    .s4p-slot-v2__original-ad .cl > .row {
        grid-template-columns: 130px 1fr 150px;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__original-ad .cl > .row {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .s4p-slot-v2__original-ad .cl__thumb {
        height: 74px !important;
        min-height: 74px !important;
        padding: 9px !important;
    }

    .s4p-slot-v2__original-ad .cl__thumb img,
    .s4p-slot-v2__original-ad figure img,
    .s4p-slot-v2__original-ad picture img {
        max-height: 52px !important;
    }
}


/* =========================================================
   PASS 17 — RESTORE SUMMARY MODULES + TOP CASINO TABLE POLISH
   ========================================================= */

/* Features summary */
.s4p-slot-v2__features-card {
    padding: 20px !important;
}

.s4p-slot-v2__features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.s4p-slot-v2__feature {
    display: grid !important;
    grid-template-columns: 66px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 96px !important;
    padding: 12px !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 10px !important;
    background: #f7f9fb !important;
}

.s4p-slot-v2__feature-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 !important;
    border-radius: 10px !important;
    background: #fff !important;
}

.s4p-slot-v2__feature h3 {
    margin: 0 !important;
    color: #17213a !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    text-align: left !important;
}

/* Pros & Cons */
.s4p-slot-v2__pros-cons {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 10px !important;
}

.s4p-slot-v2__pros,
.s4p-slot-v2__cons {
    min-height: 0 !important;
    padding: 18px !important;
}

.s4p-slot-v2__pros h2,
.s4p-slot-v2__cons h2 {
    margin-bottom: 12px !important;
    font-size: 18px !important;
}

.s4p-slot-v2__pros li,
.s4p-slot-v2__cons li {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

/*
 * Top Casinos:
 * keep the existing query/business logic but make list rows look like
 * the compact comparison table in the locked design.
 */
.s4p-slot-v2__top-casinos {
    padding: 18px !important;
}

.s4p-slot-v2__top-casinos .lc {
    padding: 0 !important;
    background: transparent !important;
}

.s4p-slot-v2__top-casinos .js-append-casinos {
    display: grid !important;
    gap: 8px !important;
}

.s4p-slot-v2__top-casinos .js-append-casinos > .mb-30 {
    margin: 0 !important;
}

.s4p-slot-v2__top-casinos .cl {
    margin: 0 !important;
    padding: 8px 10px !important;
    border: 1px solid #e6ebf0 !important;
    border-radius: 9px !important;
    background: #fff !important;
}

.s4p-slot-v2__top-casinos .cl > .row {
    display: grid !important;
    grid-template-columns:
        minmax(110px, 1.2fr)
        minmax(82px, .7fr)
        minmax(150px, 1.45fr)
        minmax(90px, .8fr) !important;
    align-items: center !important;
    gap: 12px !important;
}

.s4p-slot-v2__top-casinos .cl > .row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Casino logo + name become one compact first cell. */
.s4p-slot-v2__top-casinos .cl > .row > :nth-child(1) {
    grid-column: 1 !important;
}

.s4p-slot-v2__top-casinos .cl > .row > :nth-child(2) {
    grid-column: 2 !important;
}

.s4p-slot-v2__top-casinos .cl > .row > :nth-child(3) {
    grid-column: 3 !important;
}

.s4p-slot-v2__top-casinos .cl > .row > :nth-child(4) {
    display: none !important;
}

.s4p-slot-v2__top-casinos .cl > .row > :nth-child(5) {
    grid-column: 4 !important;
}

.s4p-slot-v2__top-casinos figure {
    display: grid !important;
    place-items: center !important;
    min-height: 54px !important;
    margin: 0 !important;
    border-radius: 7px !important;
    overflow: hidden !important;
}

.s4p-slot-v2__top-casinos .cl__thumb {
    display: grid !important;
    place-items: center !important;
    min-height: 54px !important;
    padding: 8px !important;
}

.s4p-slot-v2__top-casinos .cl__thumb img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 92px !important;
    max-height: 40px !important;
    margin: auto !important;
    object-fit: contain !important;
}

.s4p-slot-v2__top-casinos h4,
.s4p-slot-v2__top-casinos .h5 {
    margin: 0 0 4px !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.s4p-slot-v2__top-casinos .cc__rating {
    padding: 0 !important;
    font-size: 11px !important;
}

.s4p-slot-v2__top-casinos .cc__rating svg {
    width: 14px !important;
    height: 14px !important;
}

.s4p-slot-v2__top-casinos .cc__rating .fs-20 {
    font-size: 12px !important;
}

.s4p-slot-v2__top-casinos .cl > .row > :nth-child(3) p {
    margin: 0 !important;
    padding: 0 !important;
    color: #36415a !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    text-align: left !important;
}

.s4p-slot-v2__top-casinos .btn {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 7px !important;
    background: #ffd21c !important;
    color: #111 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

.s4p-slot-v2__top-casinos .lc__tc {
    margin: 3px 0 0 !important;
    padding: 0 4px !important;
    font-size: 8px !important;
    line-height: 1.25 !important;
}

@media (max-width: 900px) {
    .s4p-slot-v2__features-grid {
        grid-template-columns: 1fr !important;
    }

    .s4p-slot-v2__pros-cons {
        grid-template-columns: 1fr !important;
    }

    .s4p-slot-v2__top-casinos .cl > .row {
        grid-template-columns: 96px 1fr 110px !important;
    }

    .s4p-slot-v2__top-casinos .cl > .row > :nth-child(1) {
        grid-column: 1 !important;
    }

    .s4p-slot-v2__top-casinos .cl > .row > :nth-child(2) {
        grid-column: 2 !important;
    }

    .s4p-slot-v2__top-casinos .cl > .row > :nth-child(3) {
        grid-column: 2 !important;
    }

    .s4p-slot-v2__top-casinos .cl > .row > :nth-child(5) {
        grid-column: 3 !important;
        grid-row: 1 / 3 !important;
    }
}


/* =========================================================
   PASS 18 — HERO FADE + MAIN-COLUMN TOC + REVIEW CTA
   ========================================================= */

/*
 * Fade the dark illustrated hero naturally into the light-grey content.
 * This is deliberately part of the hero rather than a hard black/grey cut.
 */
.s4p-slot-v2__hero {
    position: relative;
    padding-bottom: 64px;
}

.s4p-slot-v2__hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 118px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(238, 242, 245, 0) 0%,
            rgba(238, 242, 245, .18) 30%,
            rgba(238, 242, 245, .72) 72%,
            #eef2f5 100%
        );
}

.s4p-slot-v2__hero > .s4p-slot-v2__container {
    position: relative;
    z-index: 3;
}

/*
 * TOC belongs to the MAIN content column only.
 * It must never run beneath/into the 310px sidebar.
 */
.s4p-slot-v2__jump-shell {
    position: relative;
    z-index: 6;
    margin-top: -38px;
    padding-top: 0;
    background: transparent;
}

.s4p-slot-v2__jump-shell > .s4p-slot-v2__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 16px;
}

.s4p-slot-v2__jump {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.s4p-slot-v2__jump a {
    min-width: 0;
    padding-right: 7px;
    padding-left: 7px;
    font-size: 10px;
}

.s4p-slot-v2__jump a span {
    min-width: 0;
    white-space: nowrap;
}

/* Write Review CTA beneath the existing rating widget. */
.s4p-slot-v2__write-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    margin-top: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #d71938;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    transition:
        transform .16s ease,
        background-color .16s ease,
        box-shadow .16s ease;
}

.s4p-slot-v2__write-review:hover,
.s4p-slot-v2__write-review:focus {
    background: #bb1230;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(183, 16, 45, .18);
}

.s4p-slot-v2__write-review .s4p-slot-v2__svg-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    color: #fff;
}

.s4p-slot-v2__write-review .s4p-slot-v2__svg-icon svg {
    width: 17px;
    height: 17px;
}

/* Make the final Release Date row look intentional. */
.s4p-slot-v2__facts > div:last-child {
    border-bottom: 0;
}

@media (max-width: 991px) {
    .s4p-slot-v2__jump-shell > .s4p-slot-v2__container {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__jump {
        grid-column: 1;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__hero {
        padding-bottom: 48px;
    }

    .s4p-slot-v2__hero::after {
        height: 82px;
    }

    .s4p-slot-v2__jump-shell {
        margin-top: -28px;
    }
}


/* =========================================================
   PASS 19 — CONTINUOUS RIGHT SIDEBAR + CLEAN TRANSITION
   ========================================================= */

/*
 * Right sidebar continuation.
 *
 * The app / recommended casino / comments now belong to the same
 * visual sidebar as Rating / Share / Game Details.
 *
 * On desktop they are positioned just below Game Details without
 * increasing the hero row height, so the TOC can remain immediately
 * below the advert on the left.
 */
.s4p-slot-v2__sidebar {
    position: relative;
    align-self: start;
}

.s4p-slot-v2__hero-sidebar-lower {
    position: absolute;
    z-index: 8;
    top: calc(100% + 14px);
    right: 0;
    left: 0;
    display: grid;
    gap: 14px;
}

.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__app-card,
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__sidebar-card {
    width: 100%;
    margin: 0 !important;
}

/* Keep the continuation cards crisp over the page transition. */
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__app-card,
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__sidebar-card {
    background: rgba(255,255,255,.98) !important;
    backdrop-filter: blur(7px);
}

/*
 * Close the gap between the advert and the TOC.
 * The hero no longer gets the large artificial bottom pad.
 */
.s4p-slot-v2__hero {
    padding-bottom: 24px !important;
}

/*
 * Softer fade only — no white horizontal band.
 */
.s4p-slot-v2__hero::after {
    height: 62px !important;
    background:
        linear-gradient(
            180deg,
            rgba(238,242,245,0) 0%,
            rgba(238,242,245,.16) 45%,
            rgba(238,242,245,.72) 82%,
            #eef2f5 100%
        ) !important;
}

/*
 * Pull the TOC upward so it visually follows the advert.
 * It still occupies only the left/main column.
 */
.s4p-slot-v2__jump-shell {
    margin-top: -18px !important;
    padding-top: 0 !important;
    background: transparent !important;
}

.s4p-slot-v2__jump-shell > .s4p-slot-v2__container {
    align-items: start;
}

/*
 * Preserve the empty right column below the hero because the absolutely
 * positioned sidebar continuation occupies that space visually.
 */
.s4p-slot-v2__content-grid {
    grid-template-columns: minmax(0, 1fr) 310px !important;
    gap: 16px !important;
}

.s4p-slot-v2__content-main {
    grid-column: 1 !important;
}

/*
 * Remove the visible white transition line / stripe.
 */
.s4p-slot-v2__body {
    border-top: 0 !important;
    padding-top: 12px !important;
    background: #eef2f5 !important;
}

.s4p-slot-v2__jump-shell::before,
.s4p-slot-v2__jump-shell::after,
.s4p-slot-v2__body::before,
.s4p-slot-v2__body::after {
    content: none !important;
    display: none !important;
}

/*
 * The TOC itself remains strictly the same width as the left content column.
 */
.s4p-slot-v2__jump {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/*
 * At tablet/mobile sizes, return the lower sidebar cards to normal flow,
 * because absolute placement is only appropriate for the locked desktop layout.
 */
@media (max-width: 991px) {
    .s4p-slot-v2__hero-sidebar-lower {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 14px;
    }

    .s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__comments-card {
        grid-column: 1 / -1;
    }

    .s4p-slot-v2__content-grid {
        grid-template-columns: 1fr !important;
    }

    .s4p-slot-v2__jump-shell {
        margin-top: -10px !important;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__hero-sidebar-lower {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__comments-card {
        grid-column: auto;
    }

    .s4p-slot-v2__hero {
        padding-bottom: 16px !important;
    }

    .s4p-slot-v2__hero::after {
        height: 42px !important;
    }
}


/* =========================================================
   PASS 20 — SIDEBAR CONTINUES BELOW HERO + REAL S4P APP ICON
   ========================================================= */

/*
 * The lower sidebar cards were correctly placed after Game Details,
 * but the light content layer was painting over them.
 * Keep the hero/sidebar stack above the following content section.
 */
.s4p-slot-v2__hero {
    position: relative;
    z-index: 3;
    overflow: visible !important;
}

.s4p-slot-v2__hero .s4p-slot-v2__container,
.s4p-slot-v2__top-grid,
.s4p-slot-v2__sidebar {
    overflow: visible !important;
}

.s4p-slot-v2__hero-sidebar-lower {
    z-index: 30 !important;
}

/* Following page sections must not cover the continuing sidebar. */
.s4p-slot-v2__jump-shell,
.s4p-slot-v2__body {
    position: relative;
    z-index: 2;
}

/*
 * Reserve the right-hand lane visually for the continuing sidebar,
 * while the main article stays in its existing left column.
 */
@media (min-width: 992px) {
    .s4p-slot-v2__content-grid {
        grid-template-columns: minmax(0, 1fr) 310px !important;
    }

    .s4p-slot-v2__content-main {
        grid-column: 1 !important;
    }
}

/* Real Slots4Play app icon. */
.s4p-slot-v2__app-icon {
    overflow: hidden;
    padding: 0 !important;
    background: transparent !important;
}

.s4p-slot-v2__app-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}


/* =========================================================
   PASS 21 — TOC LAYER + GREY TRANSITION FIX
   ========================================================= */

/*
 * The TOC must sit in the same grey content field as the article,
 * not on a separate white strip.
 */
.s4p-slot-v2__jump-shell {
    position: relative;
    z-index: 40 !important;
    margin-top: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 0 !important;
    background: #eef2f5 !important;
}

/*
 * Keep the TOC strictly inside the left/main column.
 * The right column stays reserved for the continuing sidebar.
 */
.s4p-slot-v2__jump-shell > .s4p-slot-v2__container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 310px !important;
    gap: 16px !important;
    align-items: start !important;
}

.s4p-slot-v2__jump {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

/*
 * The continuing sidebar must no longer sit above / cover the TOC.
 * It stays in the right-hand lane but below the hero card stack.
 */
.s4p-slot-v2__hero-sidebar-lower {
    z-index: 20 !important;
}

/*
 * The page transition itself is grey all the way through.
 * Remove the white band between hero and article.
 */
.s4p-slot-v2__hero::after {
    height: 54px !important;
    background:
        linear-gradient(
            180deg,
            rgba(238,242,245,0) 0%,
            rgba(238,242,245,.28) 48%,
            #eef2f5 100%
        ) !important;
}

.s4p-slot-v2__body {
    margin-top: 0 !important;
    padding-top: 12px !important;
    background: #eef2f5 !important;
}

.s4p-slot-v2__content-area,
.s4p-slot-v2__after-content,
.s4p-slot-v2__provider-area {
    background: #eef2f5 !important;
}

/*
 * Kill any legacy white separators/pseudo layers in this transition area.
 */
.s4p-slot-v2__jump-shell::before,
.s4p-slot-v2__jump-shell::after,
.s4p-slot-v2__body::before,
.s4p-slot-v2__body::after,
.s4p-slot-v2__content-area::before,
.s4p-slot-v2__content-area::after {
    content: none !important;
    display: none !important;
}

/*
 * Keep the TOC visible above the grey field, but below the fixed site header.
 */
.s4p-slot-v2__jump {
    position: relative;
    z-index: 41 !important;
    background: #fff !important;
}

/* Desktop alignment: TOC and article use the exact same left-column width. */
@media (min-width: 992px) {
    .s4p-slot-v2__content-grid {
        grid-template-columns: minmax(0, 1fr) 310px !important;
        gap: 16px !important;
    }

    .s4p-slot-v2__content-main {
        grid-column: 1 !important;
    }
}

/* Tablet/mobile return to one column. */
@media (max-width: 991px) {
    .s4p-slot-v2__jump-shell > .s4p-slot-v2__container {
        grid-template-columns: 1fr !important;
    }

    .s4p-slot-v2__jump {
        grid-column: 1 !important;
    }
}


/* =========================================================
   PASS 22 — KEEP CONTINUING SIDEBAR ABOVE TRANSITION
   ========================================================= */

/*
 * The right sidebar continuation is still part of the hero stack.
 * Give that entire stack a higher stacking context than the TOC/body
 * so App / Recommended Casino / Comments never disappear behind the
 * grey transition layer.
 */
.s4p-slot-v2__hero {
    position: relative !important;
    z-index: 50 !important;
    overflow: visible !important;
}

.s4p-slot-v2__top-grid,
.s4p-slot-v2__sidebar {
    position: relative !important;
    z-index: 55 !important;
    overflow: visible !important;
}

.s4p-slot-v2__hero-sidebar-lower {
    position: absolute !important;
    z-index: 70 !important;
    top: calc(100% + 14px) !important;
    right: 0 !important;
    left: 0 !important;
    display: grid !important;
    gap: 14px !important;
    overflow: visible !important;
}

/*
 * TOC remains above the normal article, but below the continuing
 * right sidebar. Because the TOC itself only occupies column 1,
 * the two no longer fight for the same visible layer.
 */
.s4p-slot-v2__jump-shell {
    z-index: 20 !important;
}

.s4p-slot-v2__jump {
    z-index: 21 !important;
}

.s4p-slot-v2__body,
.s4p-slot-v2__content-area,
.s4p-slot-v2__after-content,
.s4p-slot-v2__provider-area {
    position: relative !important;
    z-index: 10 !important;
}

/*
 * Prevent the full-width grey transition container from painting
 * over the continuing sidebar lane.
 */
@media (min-width: 992px) {
    .s4p-slot-v2__jump-shell > .s4p-slot-v2__container,
    .s4p-slot-v2__body > .s4p-slot-v2__container {
        position: relative;
    }

    .s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__app-card,
    .s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__sidebar-card {
        position: relative !important;
        z-index: 71 !important;
    }
}

/* Tablet/mobile: normal flow, no overlap mechanics needed. */
@media (max-width: 991px) {
    .s4p-slot-v2__hero {
        z-index: 3 !important;
    }

    .s4p-slot-v2__top-grid,
    .s4p-slot-v2__sidebar {
        z-index: auto !important;
    }

    .s4p-slot-v2__hero-sidebar-lower {
        position: static !important;
        z-index: auto !important;
    }
}


/* =========================================================
   PASS 23 — SIDEBAR POSITION / CARD OVERLAP FIX
   ========================================================= */

/*
 * The hero sidebar must size itself only to Rating / Share / Game Details.
 * Do not let the grid stretch it to the full height of the left hero column,
 * otherwise the continuation starts far too low.
 */
.s4p-slot-v2__top-grid {
    align-items: start !important;
}

.s4p-slot-v2__sidebar {
    align-self: start !important;
    height: max-content !important;
    min-height: 0 !important;
}

/*
 * Continue the sidebar immediately below Game Details.
 */
.s4p-slot-v2__hero-sidebar-lower {
    top: calc(100% + 10px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: max-content !important;
    align-items: start !important;
    gap: 14px !important;
}

/*
 * Old styles on the App card included sticky/positioning behavior.
 * Reset every continuation card so each one occupies its own normal grid row.
 */
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__app-card,
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__sidebar-card,
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__recommended,
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__comments-card {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    transform: none !important;
    overflow: hidden !important;
}

/* Restore the App card's internal layout after resetting its outer positioning. */
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__app-card {
    padding: 18px !important;
}

.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__app-card-badge,
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__app-icon {
    margin-bottom: 14px !important;
}

.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__app-card-button {
    display: block !important;
    width: 100% !important;
    margin-top: 14px !important;
}

/* Recommended Casino must start only after the App card has fully ended. */
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__recommended {
    clear: both !important;
}

/* Comments then follow naturally below Recommended Casino. */
.s4p-slot-v2__hero-sidebar-lower .s4p-slot-v2__comments-card {
    clear: both !important;
}

/*
 * Make sure the continuing cards remain above the grey page, but not above
 * the site's fixed navigation.
 */
.s4p-slot-v2__hero-sidebar-lower {
    z-index: 60 !important;
}

/* Mobile/tablet remains normal document flow. */
@media (max-width: 991px) {
    .s4p-slot-v2__sidebar {
        height: auto !important;
    }

    .s4p-slot-v2__hero-sidebar-lower {
        position: static !important;
        margin-top: 14px !important;
        gap: 14px !important;
    }
}


/* =========================================================
   PASS 24 — CLOSE GAP ABOVE TOC
   ========================================================= */

@media (min-width: 992px) {
    .s4p-slot-v2__content-shell {
        margin-top: -42px !important;
    }
}


/* =========================================================
   PASS 25 — ACTUAL TOC GAP FIX
   Previous pass targeted a class that does not exist.
   Move the real jump-shell upward.
   ========================================================= */

@media (min-width: 992px) {
    .s4p-slot-v2__jump-shell {
        margin-top: -48px !important;
        padding-top: 0 !important;
    }
}


/* =========================================================
   PASS 26 — KEEP TOC ABOVE HERO FADE
   ========================================================= */

/*
 * The TOC is now in the correct vertical position.
 * It was slipping underneath the hero fade because the fade's stacking
 * context sat above the jump bar. Keep the same position and simply
 * place the TOC above the fade layer.
 */
.s4p-slot-v2__hero::after {
    z-index: 1 !important;
}

.s4p-slot-v2__hero > .s4p-slot-v2__container {
    z-index: 3 !important;
}

.s4p-slot-v2__jump-shell {
    position: relative !important;
    z-index: 80 !important;
    isolation: isolate;
}

.s4p-slot-v2__jump {
    position: relative !important;
    z-index: 81 !important;
}

/*
 * Keep the continuing right sidebar above both the fade and the TOC.
 */
.s4p-slot-v2__hero-sidebar-lower {
    z-index: 90 !important;
}


/* =========================================================
   PASS 27 — RESTORE VISIBLE HERO → CONTENT FADE
   Keep TOC position/layering exactly as Pass 26.
   ========================================================= */

/*
 * The hero fade was technically still there, but the grey jump-shell
 * painted over it. Let the shell itself carry the transition instead.
 */
.s4p-slot-v2__jump-shell {
    background:
        linear-gradient(
            180deg,
            rgba(238,242,245,0) 0px,
            rgba(238,242,245,.18) 18px,
            rgba(238,242,245,.56) 42px,
            #eef2f5 78px
        ) !important;
    padding-top: 34px !important;
    margin-top: -48px !important;
}

/* Keep the TOC sitting visually above the fade. */
.s4p-slot-v2__jump-shell > .s4p-slot-v2__container {
    position: relative !important;
    z-index: 82 !important;
}

.s4p-slot-v2__jump {
    position: relative !important;
    z-index: 83 !important;
}

/*
 * Avoid a second competing fade from the hero pseudo-element.
 * Leave only a subtle dark-to-transparent tail at the bottom of the hero.
 */
.s4p-slot-v2__hero::after {
    z-index: 1 !important;
    height: 46px !important;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,.10) 100%
        ) !important;
}

/* Main content begins on solid light grey immediately after the shell fade. */
.s4p-slot-v2__body {
    background: #eef2f5 !important;
    padding-top: 12px !important;
}

/* Sidebar continuation remains above the transition. */
.s4p-slot-v2__hero-sidebar-lower {
    z-index: 90 !important;
}

@media (max-width: 991px) {
    .s4p-slot-v2__jump-shell {
        margin-top: -20px !important;
        padding-top: 20px !important;
        background:
            linear-gradient(
                180deg,
                rgba(238,242,245,0) 0px,
                rgba(238,242,245,.45) 24px,
                #eef2f5 52px
            ) !important;
    }
}


/* =========================================================
   PASS 28 — STRUCTURAL SIDEBAR FIX
   No more absolute sidebar / z-index fighting.
   ========================================================= */

/*
 * New stable area below the hero:
 *
 * LEFT:  TOC + review/modules
 * RIGHT: App + Recommended Casino + Comments
 *
 * Both columns are in the SAME grid, so neither can disappear
 * behind the fade or overlap the other cards.
 */
.s4p-slot-v2__below-hero {
    position: relative;
    z-index: 5;
    background: #eef2f5;
    overflow: visible;
}

/* Fade is now purely a BACKGROUND behind both columns. */
.s4p-slot-v2__below-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -72px;
    right: 0;
    left: 0;
    height: 74px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(238,242,245,0) 0%,
            rgba(238,242,245,.22) 34%,
            rgba(238,242,245,.72) 72%,
            #eef2f5 100%
        );
}

.s4p-slot-v2__below-hero > .s4p-slot-v2__container {
    position: relative;
    z-index: 2;
}

.s4p-slot-v2__below-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 16px;
    align-items: start;
}

.s4p-slot-v2__below-main,
.s4p-slot-v2__below-side {
    min-width: 0;
}

/*
 * TOC stays pulled up into the fade, but the fade can NEVER cover it
 * because the fade is just the below-hero background.
 */
.s4p-slot-v2__below-main .s4p-slot-v2__jump-shell {
    position: relative !important;
    z-index: 3 !important;
    margin-top: -38px !important;
    padding: 0 !important;
    background: transparent !important;
}

.s4p-slot-v2__below-main .s4p-slot-v2__jump-shell > .s4p-slot-v2__container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.s4p-slot-v2__below-main .s4p-slot-v2__jump {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

/* Main review content uses only the left column. */
.s4p-slot-v2__below-main .s4p-slot-v2__body {
    margin: 0 !important;
    padding: 12px 0 0 !important;
    background: transparent !important;
}

.s4p-slot-v2__below-main .s4p-slot-v2__body > .s4p-slot-v2__container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.s4p-slot-v2__below-main .s4p-slot-v2__content-grid {
    display: block !important;
}

.s4p-slot-v2__below-main .s4p-slot-v2__content-main {
    width: 100% !important;
    max-width: none !important;
}

/*
 * Right sidebar is ordinary document flow now.
 * This is the important part: no absolute positioning, no overlap,
 * no stacking-context hacks.
 */
.s4p-slot-v2__below-side {
    position: relative !important;
    z-index: 4 !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: -12px;
    align-content: start;
}

.s4p-slot-v2__below-side .s4p-slot-v2__app-card,
.s4p-slot-v2__below-side .s4p-slot-v2__sidebar-card:not(.s4p-slot-v2__recommended--original),
.s4p-slot-v2__below-side .s4p-slot-v2__comments-card {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    transform: none !important;
}

/*
 * IMPORTANT:
 * Do NOT set position/top/transform with !important on this card.
 * The original S4P sticky-sidebar JavaScript writes those values inline
 * while scrolling. Any !important positioning here would disable it.
 */
.s4p-slot-v2__below-side .s4p-slot-v2__recommended--original {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #dfe5eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(10, 28, 55, .045);
}

/* Real app icon in the sidebar card. */
.s4p-slot-v2__below-side .s4p-slot-v2__app-card-badge {
    overflow: hidden !important;
    padding: 0 !important;
    background: transparent !important;
}

.s4p-slot-v2__below-side .s4p-slot-v2__app-card-badge img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

/*
 * Disable all old absolute continuation behavior from earlier passes.
 * The old wrapper is no longer present, but this prevents stale selectors
 * from affecting anything if browser cache mixes files during testing.
 */
.s4p-slot-v2__hero-sidebar-lower {
    display: none !important;
}

/* Hero itself no longer needs to fight the content layers. */
.s4p-slot-v2__hero {
    z-index: 1 !important;
    overflow: visible !important;
}

.s4p-slot-v2__jump-shell,
.s4p-slot-v2__body,
.s4p-slot-v2__content-area {
    z-index: auto !important;
}

/* Solid grey continues below the fade. */
.s4p-slot-v2__after-content,
.s4p-slot-v2__provider-area {
    background: #eef2f5 !important;
}

@media (max-width: 991px) {
    .s4p-slot-v2__below-grid {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__below-main .s4p-slot-v2__jump-shell {
        margin-top: -20px !important;
    }

    .s4p-slot-v2__below-side {
        margin-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .s4p-slot-v2__below-side .s4p-slot-v2__comments-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__below-side {
        grid-template-columns: 1fr;
    }

    .s4p-slot-v2__below-side .s4p-slot-v2__comments-card {
        grid-column: auto;
    }
}


/* =========================================================
   PASS 29 — APP STRIP LINKS + NATIVE THEME BUTTON
   ========================================================= */

/*
 * The app strip itself is no longer one giant link.
 * Only the real S4P icon and the Download App button are clickable.
 */
.s4p-slot-v2__app-strip {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: center !important;
    margin-top: 12px !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    background: linear-gradient(90deg, #111827, #151b2a) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.16) !important;
}

.s4p-slot-v2__app-icon-link {
    display: block;
    width: 54px;
    height: 54px;
    border-radius: 11px;
    text-decoration: none !important;
}

.s4p-slot-v2__app-icon {
    display: block !important;
    width: 54px !important;
    height: 54px !important;
    overflow: hidden !important;
    border-radius: 11px !important;
    background: transparent !important;
}

.s4p-slot-v2__app-icon img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: inherit !important;
}

.s4p-slot-v2__app-copy {
    min-width: 0;
}

.s4p-slot-v2__app-copy strong,
.s4p-slot-v2__app-copy small {
    display: block !important;
    text-decoration: none !important;
}

.s4p-slot-v2__app-copy strong {
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.s4p-slot-v2__app-copy small {
    margin-top: 3px !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

/*
 * Use the theme's own casino/button system:
 * .btn .btn--180 .fw-bl .tc-d .btn--pv
 *
 * Only sizing/layout is constrained here so it fits this strip.
 * Background, border, hover state, etc. come from the site theme.
 */
.s4p-slot-v2__app-download {
    width: auto !important;
    min-width: 155px !important;
    max-width: none !important;
    margin: 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
    text-decoration: none !important;
}

/* Remove old custom yellow <b> button rules from affecting anything. */
.s4p-slot-v2__app-strip > b {
    display: none !important;
}

@media (max-width: 767px) {
    .s4p-slot-v2__app-strip {
        grid-template-columns: 48px minmax(0, 1fr) !important;
    }

    .s4p-slot-v2__app-icon-link,
    .s4p-slot-v2__app-icon {
        width: 48px !important;
        height: 48px !important;
    }

    .s4p-slot-v2__app-download {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-width: 0 !important;
        margin-top: 3px !important;
    }
}


/* =========================================================
   PASS 30 — SIDEBAR S4P APP IMAGE PROMO
   ========================================================= */

.s4p-slot-v2__app-card--image {
    padding: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.s4p-slot-v2__app-promo-image-link {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    text-decoration: none !important;
    line-height: 0 !important;
}

.s4p-slot-v2__app-promo-image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 12px !important;
    object-fit: contain !important;
}

@media (max-width: 767px) {
    .s4p-slot-v2__app-card--image,
    .s4p-slot-v2__app-promo-image-link,
    .s4p-slot-v2__app-promo-image {
        width: 100% !important;
        max-width: 100% !important;
    }
}


/* =========================================================
   PASS 31 — REAL CASINO DATA IN RECOMMENDED SIDEBAR CARD
   ========================================================= */

.s4p-slot-v2__recommended {
    padding: 16px !important;
}

.s4p-slot-v2__recommended-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.s4p-slot-v2__recommended-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 72px;
    padding: 10px;
    overflow: hidden;
    border-radius: 9px;
    text-decoration: none !important;
}

.s4p-slot-v2__recommended-logo-img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 56px !important;
    margin: auto !important;
    object-fit: contain !important;
}

.s4p-slot-v2__recommended-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    color: #17213a;
    font-size: 15px;
}

.s4p-slot-v2__recommended-rating-star {
    color: #ed1c2f;
    font-size: 22px;
    line-height: 1;
}

.s4p-slot-v2__recommended-rating strong {
    font-size: 14px;
    font-weight: 900;
}

.s4p-slot-v2__recommended-name {
    margin: 10px 0 0 !important;
    color: #111827 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    text-align: center !important;
}

.s4p-slot-v2__recommended-name a {
    color: inherit !important;
    text-decoration: none !important;
}

.s4p-slot-v2__recommended-bonus {
    margin: 11px 0 0 !important;
    color: #374151 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    text-align: center !important;
    font-weight: 700 !important;
}

.s4p-slot-v2__recommended-pros {
    display: grid;
    gap: 7px;
    margin: 13px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.s4p-slot-v2__recommended-pros li {
    position: relative;
    margin: 0 !important;
    padding-left: 22px !important;
    color: #526078 !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
}

.s4p-slot-v2__recommended-pros li::before {
    content: "✓";
    position: absolute;
    top: -1px;
    left: 0;
    display: grid;
    place-items: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #12b76a;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.s4p-slot-v2__recommended-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 40px;
    margin: 14px 0 0 !important;
    text-align: center !important;
    text-decoration: none !important;
}

.s4p-slot-v2__recommended-review {
    display: block !important;
    margin-top: 10px !important;
    color: #0563e8 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-decoration: underline !important;
}


/* =========================================================
   COMMENTS — FULL MAIN CONTENT WIDTH
   ========================================================= */

.s4p-slot-v2__comments-section {
    width: 100%;
    margin-top: 24px;
    overflow: visible;
}

.s4p-slot-v2__comments-section .s4p-slot-v2__comments-inner {
    width: 100%;
    max-width: none;
    overflow: visible;
}

.s4p-slot-v2__comments-section #wpdcom {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.s4p-slot-v2__comments-section #wpdcom,
.s4p-slot-v2__comments-section #wpdcom * {
    box-sizing: border-box;
}

/* The old sidebar comments card is no longer used. */
.s4p-slot-v2__comments-card {
    display: none !important;
}

@media (max-width: 767px) {
    .s4p-slot-v2__comments-section {
        margin-top: 16px;
    }
}


/* =========================================================
   PASS 43 — ORIGINAL THEME STICKY SIDEBAR
   ========================================================= */

/*
 * Desktop:
 *   <aside data-sticky-container>
 *       <section class="js-sticky-sidebar" ...>
 *
 * This is the same structure used by the original slot-content.php.
 * The card can travel only inside the sidebar column, so it stops
 * before the author/after-content section.
 */
@media (max-width: 991px) {
    .s4p-slot-v2__below-side .s4p-slot-v2__recommended--original {
        position: static !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        transform: none !important;
    }
}


/* =========================================================
   PASS 44 — FAQ / RELATED SLOTS / COMMENTS COLOUR PANELS
   ========================================================= */

/* FAQ — cream background */
.s4p-slot-v2__legacy-module--faq {
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #fff1c7 !important;
}

.s4p-slot-v2__legacy-module--faq .faq-wr {
    margin: 0 !important;
    padding: 22px 24px !important;
    border-radius: 14px !important;
    background: #fff1c7 !important;
    box-shadow: none !important;
}

.s4p-slot-v2__legacy-module--faq h2 {
    margin-bottom: 8px !important;
    color: #17191d !important;
}

.s4p-slot-v2__legacy-module--faq .faq {
    border-bottom: 1px solid rgba(105, 91, 55, .16);
}

.s4p-slot-v2__legacy-module--faq .faq:last-of-type {
    border-bottom: 0;
}

.s4p-slot-v2__legacy-module--faq .faq__q {
    color: #17191d !important;
}

.s4p-slot-v2__legacy-module--faq .faq .wp-editor {
    background: #fffaf0 !important;
}

/* FAQ — first 5 only */
.s4p-slot-v2__faq-hidden {
    display: none !important;
}

.s4p-slot-v2__faq-load-more-wrap {
    display: flex;
    justify-content: center;
    padding-top: 18px;
}

.s4p-slot-v2__faq-load-more {
    appearance: none;
    border: 0;
    border-radius: 7px;
    padding: 11px 22px;
    background: #c91935;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(91, 7, 21, .22);
}

.s4p-slot-v2__faq-load-more:hover {
    background: #ad152d;
}

/* Similar Slots — same cream panel */
.s4p-slot-v2__related {
    background: #fff1c7 !important;
    border-color: #f0dfae !important;
}

.s4p-slot-v2__related-card {
    background: #fffaf0 !important;
    border-color: rgba(105, 91, 55, .14) !important;
}

.s4p-slot-v2__related-facts > div {
    border-bottom-color: rgba(105, 91, 55, .16) !important;
}

/* Comments — soft sky-blue panel */
.s4p-slot-v2__comments-section {
    background: #e8f6ff !important;
    border-color: #cce8f7 !important;
}

.s4p-slot-v2__comments-section .s4p-slot-v2__comments-inner,
.s4p-slot-v2__comments-section #wpdcom {
    background: transparent !important;
}

@media (max-width: 767px) {
    .s4p-slot-v2__legacy-module--faq .faq-wr {
        padding: 16px !important;
    }

    .s4p-slot-v2__faq-load-more {
        width: 100%;
        max-width: 240px;
    }

    .s4p-slot-v2__related,
    .s4p-slot-v2__comments-section {
        border-radius: 12px !important;
    }
}


/* =========================================================
   PASS 45 — COMPACT SPACING + 4 FULL RELATED SLOT CARDS
   ========================================================= */

/* Remove the oversized generic heading height that creates dead space. */
.s4p-slot-v2__section-heading h2 {
    height: auto !important;
    min-height: 0 !important;
}

/* Comments: compact sky-blue panel, no giant empty area. */
.s4p-slot-v2__comments-section {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 14px !important;
    padding: 20px 24px !important;
}

.s4p-slot-v2__comments-section .s4p-slot-v2__section-heading {
    margin-bottom: 8px !important;
}

.s4p-slot-v2__comments-section .s4p-slot-v2__comments-inner,
.s4p-slot-v2__comments-section #wpdcom {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* wpDiscuz adds generous vertical spacing by default. Tighten it here only. */
.s4p-slot-v2__comments-section #wpdcom .wpd-form-head,
.s4p-slot-v2__comments-section #wpdcom .wpd-thread-head,
.s4p-slot-v2__comments-section #wpdcom .wpd-form {
    margin-top: 8px !important;
    margin-bottom: 10px !important;
}

.s4p-slot-v2__comments-section #wpdcom .wpd-thread-list {
    min-height: 0 !important;
    padding-bottom: 0 !important;
}

/* Author / similar / lower sections: remove the large white/grey bands. */
.s4p-slot-v2__after-content {
    padding-top: 0 !important;
    padding-bottom: 14px !important;
}

.s4p-slot-v2__after-card {
    margin-top: 14px !important;
    margin-bottom: 0 !important;
}

.s4p-slot-v2__provider-area {
    padding-top: 0 !important;
    padding-bottom: 16px !important;
}

.s4p-slot-v2__provider-area > .s4p-slot-v2__container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.s4p-slot-v2__post-nav {
    margin-top: 14px !important;
    margin-bottom: 0 !important;
}

/* Similar slots — four cards on desktop, matching the original detailed layout. */
.s4p-slot-v2__related {
    padding: 20px 22px !important;
}

.s4p-slot-v2__related .s4p-slot-v2__section-heading {
    margin-bottom: 16px !important;
}

.s4p-slot-v2__related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.s4p-slot-v2__related-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
}

.s4p-slot-v2__related-image {
    flex: 0 0 auto !important;
}

.s4p-slot-v2__related-body {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    padding: 13px !important;
}

.s4p-slot-v2__related-body h3 {
    min-height: 38px;
    margin-bottom: 8px !important;
    font-size: 14px !important;
}

.s4p-slot-v2__related-provider {
    display: none !important;
}

.s4p-slot-v2__related-facts {
    flex: 1 1 auto;
    margin: 0 0 12px !important;
}

.s4p-slot-v2__related-facts > div {
    align-items: flex-start;
    padding: 7px 0 !important;
}

.s4p-slot-v2__related-facts dt,
.s4p-slot-v2__related-facts dd {
    font-size: 10px !important;
    line-height: 1.3 !important;
}

.s4p-slot-v2__related-facts dt {
    flex: 0 0 42%;
}

.s4p-slot-v2__related-facts dd {
    flex: 1 1 auto;
    overflow-wrap: anywhere;
}

.s4p-slot-v2__related-button {
    margin-top: auto !important;
    padding: 11px 10px !important;
    font-size: 11px !important;
}

/* Medium desktop: two cards if four would become cramped. */
@media (min-width: 768px) and (max-width: 1199px) {
    .s4p-slot-v2__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .s4p-slot-v2__comments-section {
        padding: 16px !important;
    }

    .s4p-slot-v2__related {
        padding: 16px !important;
    }

    .s4p-slot-v2__related-grid {
        grid-template-columns: 1fr !important;
    }

    .s4p-slot-v2__related-body h3 {
        min-height: 0;
    }
}


/* =========================================================
   PASS 46 — PREVIOUS / NEXT AREA: NO BACKGROUND STRIP
   ========================================================= */

.s4p-slot-v2__provider-area {
    background: transparent !important;
}

/* Keep the nav itself compact without a coloured section behind it. */
.s4p-slot-v2__provider-area > .s4p-slot-v2__container {
    background: transparent !important;
}

.s4p-slot-v2__post-nav {
    background: transparent !important;
}


/* =========================================================
   PASS 47 — REMOVE GAP BETWEEN COMMENTS + AUTHOR
   ========================================================= */

/* Comments section: no bottom spacing / strip before author */
.s4p-slot-v2__comments-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Author starts immediately after comments */
.s4p-slot-v2__author-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove spacing from wrappers separating the two sections */
.s4p-slot-v2__comments-section + .s4p-slot-v2__author-section,
.s4p-slot-v2__comments-section + * .s4p-slot-v2__author-section {
    margin-top: 0 !important;
}

/* Kill the white separator created by generic section spacing */
.s4p-slot-v2__comments-section + section,
.s4p-slot-v2__comments-section + div {
    margin-top: 0 !important;
}


/* =========================================================
   PASS 48 — REMOVE ACTUAL SECTION BREAK BELOW COMMENTS
   ========================================================= */

/*
 * The visible white strip was caused by the first .after-card margin
 * collapsing outside .s4p-slot-v2__after-content.
 * Keep the next section on the same grey page background and start
 * the author card immediately.
 */
.s4p-slot-v2__after-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    background: #eef2f5 !important;
    overflow: auto !important;
}

.s4p-slot-v2__after-content > .s4p-slot-v2__container {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: transparent !important;
}

.s4p-slot-v2__after-content .s4p-slot-v2__after-card:first-child,
.s4p-slot-v2__after-content .s4p-slot-v2__author {
    margin-top: 0 !important;
}

/* Ensure the section above does not leave a bottom margin behind. */
.s4p-slot-v2__below-hero,
.s4p-slot-v2__below-grid,
.s4p-slot-v2__below-main {
    margin-bottom: 0 !important;
}

.s4p-slot-v2__comments-section {
    margin-bottom: 0 !important;
}


/* =========================================================
   PASS 49 — SMALL GAP BETWEEN COMMENTS + AUTHOR
   ========================================================= */

.s4p-slot-v2__after-content {
    padding-top: 14px !important;
}


/* =========================================================
   PASS 50 — POPULAR SLOT MACHINES SIDEBAR
   ========================================================= */

.s4p-slot-v2__popular-slots {
    padding: 18px !important;
    background: #fff !important;
    border: 1px solid #dfe5eb !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 14px rgba(10, 28, 55, .045) !important;
}

.s4p-slot-v2__popular-slots-head {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e8ec;
}

.s4p-slot-v2__popular-slots-head h2 {
    margin: 0 !important;
    color: #17191d !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.s4p-slot-v2__popular-slots-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.s4p-slot-v2__popular-slot {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    min-height: 54px;
    padding: 7px 10px !important;
    background: #f3f4f6 !important;
    border-radius: 8px !important;
    color: #17191d !important;
    text-decoration: none !important;
    transition:
        background .18s ease,
        transform .18s ease;
}

.s4p-slot-v2__popular-slot:hover {
    background: #e9ebee !important;
    transform: translateX(2px);
}

.s4p-slot-v2__popular-slot-thumb {
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.s4p-slot-v2__popular-slot-thumb img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.s4p-slot-v2__popular-slot-title {
    min-width: 0;
    color: #17191d;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.s4p-slot-v2__popular-slots-all {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 14px !important;
    background: #fff !important;
    border: 1px solid #cfd5dc !important;
    border-radius: 8px !important;
    color: #17191d !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
}

.s4p-slot-v2__popular-slots-all:hover {
    border-color: #c91935 !important;
    color: #c91935 !important;
}

/* Keep spacing even between the 3 sidebar modules */
.s4p-slot-v2__below-side > .s4p-slot-v2__app-card--image,
.s4p-slot-v2__below-side > .s4p-slot-v2__popular-slots,
.s4p-slot-v2__below-side > .s4p-slot-v2__recommended--original {
    margin-bottom: 14px !important;
}

.s4p-slot-v2__below-side > .s4p-slot-v2__recommended--original:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 991px) {
    .s4p-slot-v2__popular-slots {
        padding: 16px !important;
    }

    .s4p-slot-v2__popular-slot {
        min-height: 58px;
    }

    .s4p-slot-v2__popular-slot-thumb {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }
}


/* =========================================================
   PASS 52 — MOBILE HERO / SIDEBAR STACK FIX
   The later desktop overrides were re-applying the 2-column
   310px sidebar after the earlier mobile media queries.
   Force a true single-column mobile layout here at the END.
   ========================================================= */

@media (max-width: 767px) {

    /* HERO: one column only */
    .s4p-slot-v2__top-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .s4p-slot-v2__main,
    .s4p-slot-v2__sidebar {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }

    /* Right-hand Rating / Share / Details become full-width cards */
    .s4p-slot-v2__sidebar {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-self: auto !important;
    }

    .s4p-slot-v2__sidebar > *,
    .s4p-slot-v2__side-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Main game area must not shrink beside sidebar */
    .s4p-slot-v2__player-card,
    .s4p-slot-v2__game-stage,
    .s4p-slot-v2__cover,
    .s4p-slot-v2__iframe-wrap,
    .s4p-slot-v2__iframe-wrap iframe {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    /* Keep game usable without the very tall desktop ratio */
    .s4p-slot-v2__player-card,
    .s4p-slot-v2__cover {
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
    }

    .s4p-slot-v2__cover-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* App strip and the horizontal casino advert under the game */
    .s4p-slot-v2__app-strip,
    .s4p-slot-v2__main .lc,
    .s4p-slot-v2__main .list-casinos,
    .s4p-slot-v2__main [class*="casino"] {
        max-width: 100% !important;
    }

    /* App strip: keep icon / copy / CTA readable */
    .s4p-slot-v2__app-strip {
        display: grid !important;
        grid-template-columns: 54px minmax(0, 1fr) !important;
        gap: 10px 12px !important;
        align-items: center !important;
        padding: 12px !important;
    }

    .s4p-slot-v2__app-strip .s4p-slot-v2__app-strip-button,
    .s4p-slot-v2__app-strip a[class*="button"],
    .s4p-slot-v2__app-strip .btn {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    /* Rating card */
    .s4p-slot-v2__rating-line,
    .s4p-slot-v2__rating-score-row {
        flex-wrap: wrap !important;
    }

    /* Share buttons stay neat */
    .s4p-slot-v2__share {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    /* Game details text must never overflow */
    .s4p-slot-v2__details-row,
    .s4p-slot-v2__game-details-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) !important;
    }

    .s4p-slot-v2__details-row > *,
    .s4p-slot-v2__game-details-row > * {
        min-width: 0 !important;
        overflow-wrap: anywhere !important;
    }

    /* Old continuation positioning is desktop-only */
    .s4p-slot-v2__hero-sidebar-lower {
        position: static !important;
        inset: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 14px !important;
        margin-top: 14px !important;
        transform: none !important;
    }

    /* TOC: remain one line and scroll horizontally instead of squeezing */
    .s4p-slot-v2__jump-shell,
    .s4p-slot-v2__nav-shell {
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    .s4p-slot-v2__nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        min-width: 100% !important;
    }

    .s4p-slot-v2__nav a {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }
}


/* =========================================================

/* =========================================================
   SCROLL TO TOP ABOVE NOTIFICATION BELL
   ========================================================= */

.scroll-top {
    position: fixed !important;
    right: 18px !important;
    bottom: 82px !important;
    z-index: 9998 !important;
}

@media (max-width: 767px) {
    .scroll-top {
        right: 14px !important;
        bottom: 78px !important;
    }
}

/* =========================================================
   CASINO LISTING MODULE — FINAL
   =========================================================
   One production section replacing old PASS 54–60 overrides.

   Covers:
   - native module containment
   - card/grid mode
   - list mode
   - Load More native behaviour
   - tablet layout
   - mobile list layout
   - mobile card/grid logo panel
   ========================================================= */


/* ---------------------------------------------------------
   BASE / MODULE WRAPPER
   --------------------------------------------------------- */

.s4p-slot-v2__legacy-module--list-casinos {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 14px 8px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.s4p-slot-v2__legacy-module--list-casinos > .container,
.s4p-slot-v2__legacy-module--list-casinos .container,
.s4p-slot-v2__legacy-module--list-casinos .lc,
.s4p-slot-v2__legacy-module--list-casinos .js-list-casinos,
.s4p-slot-v2__legacy-module--list-casinos .js-append-casinos,
.s4p-slot-v2__legacy-module--list-casinos .cl {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   NATIVE LOAD MORE
   ---------------------------------------------------------
   The original module decides whether more results exist.
   Never force the hidden Load More button back into view.
   --------------------------------------------------------- */

.s4p-slot-v2__legacy-module--list-casinos
.js-casinos-loadmore[style*="display: none"] {
    display: none !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos > .ta-c {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* ---------------------------------------------------------
   CARD / GRID MODE — DESKTOP
   --------------------------------------------------------- */

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="card"] {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="card"]
.js-append-casinos {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
    gap: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="card"]
.js-append-casinos > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="card"] .cc {
    width: 100% !important;
    min-width: 0 !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="card"] .cc__thumb,
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="card"] figure {
    width: 100% !important;
    max-width: 100% !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="card"] .cc__thumb img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}


/* ---------------------------------------------------------
   LIST MODE — DESKTOP
   --------------------------------------------------------- */

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl {
    padding: 12px !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl > .row {
    display: grid !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns:
        minmax(0, 1.20fr)
        minmax(0, 1.10fr)
        minmax(0, 1.40fr)
        minmax(0, 1.30fr)
        minmax(118px, .85fr) !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl > .row > [class*="col-"] {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}


/* Logo */

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] figure,
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl__thumb {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl__thumb {
    display: grid !important;
    place-items: center !important;
    min-height: 100px !important;
    padding: 12px !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl__thumb img {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 92px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}


/* Casino name + rating */

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl > .row > :nth-child(2),
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl > .row > :nth-child(3),
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] h4,
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .h5,
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] p,
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] li,
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cc__rating {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] h4,
.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .h5 {
    margin: 0 0 7px !important;
    padding: 0 !important;
    font-size: 17px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cc__rating {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}


/* Bonus */

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl > .row > :nth-child(3) p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 19px !important;
    line-height: 1.18 !important;
    font-weight: 500 !important;
    text-align: left !important;
    white-space: normal !important;
}


/* Benefits */

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl__pros {
    display: grid !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl__pros li {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
}


/* CTA */

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .cl > .row > :nth-child(5) {
    min-width: 0 !important;
    text-align: right !important;
}

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"]
.cl > .row > :nth-child(5) .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}


/* T&Cs */

.s4p-slot-v2__legacy-module--list-casinos
.js-list-casinos[data-view="list"] .lc__tc {
    margin-top: 6px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* ---------------------------------------------------------
   LIST MODE — NARROW DESKTOP / TABLET
   --------------------------------------------------------- */

@media (max-width: 1280px) {

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row {
        grid-template-columns:
            minmax(120px, .85fr)
            minmax(0, 1.15fr)
            minmax(0, 1.25fr) !important;
        gap: 10px 12px !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(4) {
        grid-column: 3;
        grid-row: 1;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(5) {
        grid-column: 3;
        grid-row: 2;
        align-self: end !important;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .s4p-slot-v2__legacy-module--list-casinos {
        padding: 10px 8px !important;
    }


    /* Card / grid mode */

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"]
    .js-append-casinos {
        grid-template-columns: 1fr !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 12px !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc > .col-o-xs-auto,
    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc > .col-o-xs {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc > .col-o-xs {
        text-align: center !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc__thumb {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 150px !important;
        min-height: 150px !important;
        margin: 0 0 14px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc__thumb__link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
        padding: 18px !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc__thumb img {
        display: block !important;
        width: auto !important;
        max-width: 82% !important;
        height: auto !important;
        max-height: 110px !important;
        margin: 0 auto !important;
        object-fit: contain !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] h4 {
        margin-top: 0 !important;
        text-align: center !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc__rating {
        justify-content: center !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc > p,
    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cl__pros,
    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="card"] .cc > .ta-c {
        width: 100% !important;
        max-width: 100% !important;
    }


    /* List mode */

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row {
        grid-template-columns: 94px minmax(0, 1fr) !important;
        gap: 10px 12px !important;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(4),
    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"] .cl > .row > :nth-child(5) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .s4p-slot-v2__legacy-module--list-casinos
    .js-list-casinos[data-view="list"]
    .cl > .row > :nth-child(5) .btn {
        max-width: none !important;
    }
}
