/* Homepage styles extracted from inline */
:root {
    --purple-900: #1E0445;
    --purple-800: #270648;
    --purple-700: #2D117D;
    --purple-600: #3002B2;
    --accent: #A1FF03;
    --ink: #1f2937;
    --bg: #ffffff;
    --pill: #21004F;
    --bg-a: #5b2b99;
    --bg-b: #2a0a5f;
    --text: #fff;
    --container: min(1200px, 92vw);
    --strip-overhang: 120px;
}

.section {
    position: relative;
    background-image: url('/wp-content/uploads/2025/09/ELEMENTS-ANIMATION_1920x550-1.gif') !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section--tall {
    min-height: 550px;
}

.hero {
    position: relative;
    z-index: 3;
    isolation: isolate;
    color: #fff;
    overflow: visible;
    min-height: 800px;
}

.partner-strip {
    z-index: 4;
}

.hero+.section {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--strip-overhang));
    height: var(--strip-overhang);
    z-index: 2;
    pointer-events: none;
    background: transparent;
}

@media (max-width: 900px) {
    .hero+.section {
        padding-top: calc(var(--strip-overhang) + 40px);
    }

    .hero {
        min-height: 800px;
    }
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    height: auto
}

a {
    text-decoration: none;
    color: inherit
}

.accent {
    color: var(--accent)
}

.accent-link {
    color: var(--accent)
}

.container {
    width: var(--container);
    margin-inline: auto
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand img {
    width: 120px;
    height: auto
}

#story {
    background-color: #ffffff;
}

.hero .bgimg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    z-index: -1;
}

.hero .bgmedia {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-inner {
    padding: 72px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.eyebrow {
    color: var(--accent);
    font-weight: 600;
    font-size: 20px;
    margin-top: 80px;
}

.hero h1 {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.15;
    margin: 8px 0;
    font-weight: 800;
}

.hero .tagline {
    margin: 120px auto 0;
    max-width: 900px;
    text-align: center;
    margin-right: -50px;
}

@media (max-width:900px) {
    .hero .tagline {
        margin: 80px auto 0;
        padding: 0 16px
    }
}

.button-wrapper {
    display: flex;
    justify-content: center
}

.button-wrapper.left {
    justify-content: flex-start
}

.partner-strip {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: var(--container);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    overflow: visible;
    z-index: 4;
}

.promo {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    padding: 14px 16px;
    width: 100%;
    min-height: 241px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partner-strip .promo:nth-child(1) {
    background-image: url('/wp-content/uploads/2025/08/game-betArtboard-1.png');
}

.partner-strip .promo:nth-child(2) {
    background-image: url('/wp-content/uploads/2025/08/game-betArtboard-2.png');
}

.promo .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: black;
    display: grid;
    place-items: center;
}

.promo h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700
}

.promo p {
    margin: 2px 0 0;
    color: var(--accent);
    font-weight: 700
}

.promo .btn {
    margin-left: auto;
    background: #16dd00;
    color: var(--purple-800);
    font-weight: 700;
    padding: .55rem .9rem;
    border-radius: 10px;
}

@media (max-width:900px) {
    .partner-strip {
        grid-template-columns: 1fr;
        width: calc(100% - 24px);
    }
}

@media (max-width:720px) {
    .promo {
        grid-template-columns: 64px 1fr
    }

    .promo .btn {
        grid-column: 1/-1;
        justify-self: start;
        margin-top: 8px
    }
}

.section h2 {
    color: var(--purple-900);
    font-weight: 800;
    text-align: center;
    font-size: clamp(28px, 3.5vw, 50px);
    margin: 150px 0 10px;
}

.section .sub {
    color: #270648;
    text-align: center;
    font-weight: 600
}

.card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08)
}

@media (max-width:1024px) {
    .card-row {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:760px) {
    .card-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:520px) {
    .card-row {
        grid-template-columns: 1fr
    }
}

.why {
    position: relative;
    color: #fff
}

.why .bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    z-index: -1
}

.why .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 80px 0
}

.why h2 {
    color: #fff
}

.why p {
    max-width: 720px;
    color: rgba(255, 255, 255, .8)
}

.why .btn {
    display: inline-block;
    background: #fff;
    color: var(--purple-800);
    font-weight: 700;
    padding: .8rem 1.2rem;
    border-radius: 12px;
    margin-top: 10px
}

footer {
    margin-top: 64px;
    background: linear-gradient(90deg, var(--purple-800) 0%, #5E0FAE 51%, var(--purple-800) 99%);
    color: #fff;
    box-shadow: 0 4px 9px rgba(0, 0, 0, .12);
}

.f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 28px;
    padding: 48px 0
}

.f-grid h4 {
    margin: 0 0 8px;
    font-weight: 600
}

.f-grid p,
.f-grid a {
    color: rgba(255, 255, 255, .8)
}

.social {
    display: flex;
    gap: 10px;
    align-items: center
}

.social .dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #280749;
    display: grid;
    place-items: center
}

.copy {
    border-top: 1px solid rgba(255, 255, 255, .15);
    text-align: center;
    padding: 12px 0;
    color: rgba(255, 255, 255, .8);
    font-size: 12px
}

@media (max-width:960px) {
    .f-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:600px) {
    .f-grid {
        grid-template-columns: 1fr
    }
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.center {
    text-align: center
}

.grid-gap-24 {
    display: grid;
    gap: 24px
}

.flash-band {
    position: relative;
    overflow: hidden;
    background-image: url('/wp-content/uploads/2025/08/coin-animation-background-1-1.png');
    padding: 42px 0 32px;
    color: var(--text);
}

.flash-band .container {
    width: var(--container);
    margin: 0 auto;
    position: relative
}

.flash-band .topper {
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2
}

.flash-band .topper img {
    width: min(520px, 72vw);
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .35))
}

.flash-band .stat {
    position: relative;
    z-index: 2;
    width: max(280px, 280px);
    max-width: 92vw;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 12px;
    background: #103f0b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}

.flash-band .stat .coin-ic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flash-band .stat .num {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .2px
}

.flash-band .games {
    width: var(--container);
    margin: 18px auto 6px;
    position: relative;
    z-index: 2
}

.flash-band .scroller {
    overflow: hidden !important;
    white-space: nowrap;
    scroll-snap-type: none !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: none;
    backface-visibility: hidden;
    transform: translateZ(0);
    padding: 8px 6px 4px;
}

.flash-band .scroller::-webkit-scrollbar {
    display: none
}

.flash-band .card {
    flex: 0 0 92px;
    height: 121px;
    border-radius: 7px;
    background: #1c0c48 url('https://placehold.co/92x121') center/cover no-repeat;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .35), inset 0 0 0 2px #fff;
    transition: transform .2s ease, box-shadow .2s ease;
    display: inline-block;
    margin-right: 12px;
}

.flash-band .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .45), inset 0 0 0 2px #a1ff03;
}

@media (min-width:1100px) {
    .flash-band .stat {
        height: 70px
    }

    .flash-band .stat .num {
        font-size: 28px
    }
}

.coin-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1
}

.coin-sprite {
    position: absolute;
    width: var(--size, 34px);
    height: var(--size, 34px);
    transform: translate(-50%, -50%) scale(var(--scale, 1));
    animation: coinFly var(--dur, 3s) cubic-bezier(.2, .6, .3, 1) forwards;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .35));
}

@keyframes coinFly {
    0% {
        opacity: 0;
        transform: translate(calc(-50%), calc(-50%)) scale(var(--scale, 1)) rotate(0deg)
    }

    10% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px))) scale(calc(var(--scale, 1)*.9)) rotate(var(--rot, 360deg))
    }
}

.flash-band {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden
}

.topper {
    place-items: start center !important;
    margin: 0 0 16px !important
}

.topper img#emitter {
    display: block;
    margin: 0 auto;
    max-width: 540px;
    width: min(540px, 72vw);
    height: auto;
    position: relative;
    z-index: 2
}

.flash-band::after {
    content: "";
    display: block;
    height: var(--gap);
    background: #fff;
}

.why {
    padding-top: 80px;
    padding-bottom: 80px
}

.why::after {
    content: "";
    display: block;
    height: 80px;
    background: #fff;
    margin-bottom: -80px
}

.flash-band .games {
    overflow: hidden;
}

.flash-band .scroller .track {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.flash-band .scroller .track.marquee {
    animation: marqueeSet var(--marquee-duration, 30s) linear infinite;
    will-change: transform;
}

@keyframes marqueeSet {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-1 * var(--set-width)))
    }
}

.message {
    position: relative;
    display: inline-block;
    min-width: 6ch;
    user-select: none;
}

.message .cursor {
    display: inline-block;
    width: 1ch;
    border-right: 2px solid var(--accent);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    transform: translateY(2px);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1
    }

    50.01%,
    100% {
        opacity: 0
    }
}

.message .word {
    display: inline-block;
    transition: transform .2s ease;
}

.message .sparkle {
    position: absolute;
    pointer-events: none;
    font-size: 18px;
    opacity: 0;
    animation: sparkle 1s forwards;
}

@keyframes sparkle {
    0% {
        transform: translateY(0) scale(.8);
        opacity: 0
    }

    50% {
        transform: translateY(-8px) scale(1);
        opacity: 1
    }

    100% {
        transform: translateY(-16px) scale(.9);
        opacity: 0
    }
}

.expert-promise {
    margin: 48px 0
}

.expert-panel {
    background: var(--panel);
    color: var(--text);
    border: 1px solid #16dd00;
    border-radius: 20px;
    padding: clamp(20px, 3.5vw, 32px);
}

.expert-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center
}

@media (max-width:980px) {
    .expert-grid {
        grid-template-columns: 1fr
    }
}

.expert-copy h2 {
    font-size: clamp(26px, 3.6vw, 44px);
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -.02em;
    color: black;
}

.expert-copy .hl {
    color: var(--accent);
    font-weight: 800
}

.expert-copy p {
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 62ch;
    color: black;
}

.expert-copy a {
    color: black;
}

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: #16dd00;
    color: black;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(124, 58, 237, .28);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease
}

.btn-brand:hover {
    background: var(--accent-700);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(124, 58, 237, .35)
}

.expert-media {
    margin: 0
}

.expert-media img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(10, 10, 22, .12);
    display: block
}

.expert-media figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: var(--muted)
}

.expert-media figcaption a {
    color: var(--accent);
    text-decoration: underline
}

/* ---- Generic slider ---- */
.slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* spacing between images */
.slider .slides {
    display: flex;
    gap: 16px;
    /* gap between images */
    will-change: transform;
    transition: transform 420ms cubic-bezier(.2, .6, .2, 1);
}

.slider .slide {
    display: grid;
    place-items: center;
    background: transparent;
}

/* Show 4 images in front (responsive) */
.slider .slide {
    flex: 0 0 25%;
}

/* 4 per view desktop */
@media (max-width:1024px) {
    .slider .slide {
        flex: 0 0 33.333%;
    }
}

/* 3 per view */
@media (max-width:768px) {
    .slider .slide {
        flex: 0 0 50%;
    }
}

/* 2 per view */
@media (max-width:480px) {
    .slider .slide {
        flex: 0 0 100%;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .slider .slides {
        transition: none;
    }
}

/* 1 per view */
.slider .slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* side buttons */
.slider .slider-btn {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 15, 20, .55);
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease;
}

.slider .slider-btn:hover,
.slider .slider-btn:focus-visible {
    background: rgba(15, 15, 20, .85);
}

.slider .slider-btn.prev {
    left: 8px;
}

.slider .slider-btn.next {
    right: 8px;
}

/* dots */
.slider .slider-dots {
    position: absolute;
    left: 50%;
    bottom: 8px;
    translate: -50% 0;
    display: flex;
    gap: 8px;
}

.slider .slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
}

.slider .slider-dots button[aria-current="true"] {
    background: #fff;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Increase top spacing for the three sections */
@media (max-width: 768px) {

    #top-picks,
    #why-bonus-policy,
    #top-rated-games {
        margin-top: 56px;
    }
}

/* ---- Generic slider ---- */
.slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* spacing between images */
.slider .slides {
    display: flex;
    gap: 16px;
    /* gap between images */
    will-change: transform;
    transition: transform 420ms cubic-bezier(.2, .6, .2, 1);
}

.slider .slide {
    display: grid;
    place-items: center;
    background: transparent;
}

/* Show 4 images in front (responsive) */
.slider .slide {
    flex: 0 0 25%;
}

/* 4 per view desktop */
@media (max-width:1024px) {
    .slider .slide {
        flex: 0 0 33.333%;
    }
}

/* 3 per view */
@media (max-width:768px) {
    .slider .slide {
        flex: 0 0 50%;
    }
}

/* 2 per view */
@media (max-width:480px) {
    .slider .slide {
        flex: 0 0 100%;
    }
}

/* 1 per view */
.slider .slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* side buttons */
.slider .slider-btn {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 15, 20, .55);
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease;
}

.slider .slider-btn:hover,
.slider .slider-btn:focus-visible {
    background: rgba(15, 15, 20, .85);
}

.slider .slider-btn.prev {
    left: 8px;
}

.slider .slider-btn.next {
    right: 8px;
}

/* ---- Slider Dots Styling (no absolute positioning) ---- */
.slider .slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider .slider-dots button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.slider .slider-dots button[aria-current="true"] {
    background: #16dd00;
    border-color: #16dd00;
    transform: scale(1.2);
}

/* Mobile responsive dots */
@media (max-width: 768px) {
    .slider .slider-dots button {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .slider .slides {
        transition: none;
    }
}

.expert-promise {
    margin: 48px 0
}

.expert-panel {
    background: #f6fff4;
    color: var(--text);
    border: 1px solid #16dd00;
    border-radius: 20px;
    padding: clamp(20px, 3.5vw, 32px);
}

.expert-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center
}

@media (max-width:980px) {
    .expert-grid {
        grid-template-columns: 1fr
    }
}

.expert-copy h2 {
    font-size: clamp(26px, 3.6vw, 44px);
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -.02em;
    color: black;
}

.expert-copy .hl {
    color: var(--accent);
    font-weight: 800
}

.expert-copy p {
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 62ch;
    color: black;
}

.expert-copy a {
    color: black;
}

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 18px;
    border-radius: 12px;
    background: #16dd00;
    color: #fff;
    font-weight: 700;
    width: 150px;
    margin-top: 20px;
    ;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(124, 58, 237, .28);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease
}

.btn-brand:hover {
    background: var(--accent-700);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(124, 58, 237, .35)
}

/* ========================= MOBILE (≤768px) OVERRIDES ========================= */
.hero.hero-mobile {
    background-image: url('bg-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    /* full screen height */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* pushes content to bottom */
    align-items: center;
    /* optional: centers horizontally */
    padding: 2rem;
    /* space from bottom */
    box-sizing: border-box;
}

.hero-inner {
    z-index: 2;
    /* keep content above any overlay */
}

/* Optional: add a dark overlay for better readability */
.hero.hero-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    z-index: 1;
}

@media (max-width: 768px) {
    .card-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 520px) {
    .card-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* 2) Sliders: Our Top Pickup for August + Top Rated Online Sweepstakes Games Show 2 slides per view on phones (override the old 100% single-slide rule) */
@media (max-width: 768px) {

    #top-picks .slides .slide,
    #top-rated-games .slides .slide {
        flex: 0 0 50% !important;
        /* 2 per view */
    }
}

@media (max-width: 480px) {

    #top-picks .slides .slide,
    #top-rated-games .slides .slide {
        flex: 0 0 50% !important;
        /* keep 2 per view on small phones too */
    }
}

/* 3) Optional: reduce big heading top margin on small screens for nicer spacing */
@media (max-width: 768px) {
    .section h2 {
        margin-top: 24px !important;
    }
}

/* Cards: tighten at smaller widths */
@media (max-width: 1200px) {
    .promo {
        min-height: 210px;
    }
}

/* ========================================= PARTNER-STRIP – tablets & phones Move into normal flow, stack 1-up, no overlap ========================================= */
@media (max-width: 900px) {
    .partner-strip {
        position: static;
        transform: none;
        width: 100%;
        margin: 16px auto 0;
        padding: 0 12px;
        grid-template-columns: 1fr;
    }

    /* since strip is no longer overlapping the next section, remove the fake spacer */
    .hero::after {
        display: none;
    }

    /* ensure the next .section doesn’t add extra large top padding */
    .hero+.section {
        padding-top: 24px !important;
    }

    /* Compact the promo layout for mobile */
    .promo {
        grid-template-columns: 64px 1fr;
        align-items: start;
        min-height: auto;
        padding: 12px 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .promo .icon {
        width: 56px;
        height: 56px;
    }

    .promo h3 {
        font-size: 18px;
        line-height: 1.25;
    }

    .promo p {
        font-size: 14px;
        margin-top: 4px;
        margin-bottom: 8px;
    }

    .promo .button-wrapper {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
}

/* ultra-small phones: tighten a bit more */
@media (max-width: 380px) {
    .promo {
        grid-template-columns: 52px 1fr;
        padding: 10px 12px;
    }

    .promo .icon {
        width: 52px;
        height: 52px;
    }

    .promo h3 {
        font-size: 17px;
    }

    .promo p {
        font-size: 13px;
    }
}

/* ========================================= OPTIONAL: keep headings from jumping too low when strip becomes in-flow on phones ========================================= */
@media (max-width: 900px) {

    #top-picks h2,
    #why-bonus-policy h2,
    #top-rated-games h2 {
        margin-top: 40px;
        /* was 56–150px; tighter on phones */
    }
}

/* ========================= HERO (readability on phones) ========================= */
.hero {
    min-height: clamp(520px, 70vh, 880px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, .45));
    pointer-events: none;
    z-index: 0;
    /* above video, below content */
}

.hero .bgmedia {
    object-fit: cover;
    object-position: center 30%;
}

/* ========================= PARTNER-STRIP – responsive ========================= */
@media (max-width: 900px) {
    .partner-strip {
        position: static;
        transform: none;
        width: 100%;
        padding: 0 12px;
        margin: 16px auto 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero::after {
        display: none;
    }

    .hero+.section {
        padding-top: 24px !important;
    }

    .partner-strip .promo {
        position: relative;
        overflow: hidden;
        grid-template-columns: 56px 1fr;
        /* icon + text */
        align-items: start;
        min-height: auto;
        padding: 12px 14px;
        gap: 12px;
        border-radius: 14px;
        background-position: 100% center;
        background-size: cover;
    }

    .partner-strip .promo::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 60%);
        pointer-events: none;
    }

    .partner-strip .promo .icon {
        width: 56px;
        height: 56px;
    }

    .partner-strip .promo h3 {
        font-size: 18px;
        line-height: 1.25;
        margin: 0;
        color: #fff;
    }

    .partner-strip .promo p {
        font-size: 14px;
        margin: 4px 0 0;
        color: var(--accent);
        font-weight: 700;
    }

    .partner-strip .promo .button-wrapper {
        grid-column: 1 / -1;
        margin-top: 8px;
    }

    .partner-strip .promo .button-wrapper img {
        max-width: min(220px, 52vw) !important;
        width: 100%;
        height: auto;
        display: block;
    }
}

/* ultra-small phones */
@media (max-width: 380px) {
    .partner-strip .promo {
        grid-template-columns: 50px 1fr;
        padding: 10px 12px;
    }

    .partner-strip .promo .icon {
        width: 50px;
        height: 50px;
    }

    .partner-strip .promo .button-wrapper img {
        max-width: min(200px, 60vw) !important;
    }
}

/* 2-column layout: left copy, right 4-card grid */
.expert-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
    align-items: center;
}

/* Right side: 4 columns on desktop, 2 on tablet/phone, 1 on tiny phones */
.expert-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 1100px) {
    .expert-grid {
        grid-template-columns: 1fr;
    }

    /* stack columns */
    .expert-links {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 2-up on mobile/tablet */
}

@media (max-width: 420px) {
    .expert-links {
        grid-template-columns: 1fr;
    }
}

/* 1-up on very small phones */
/* Card look */
.link-card {
    display: grid;
    grid-template-columns: 48px 1fr 20px;
    /* icon | title | arrow */
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: #f6fff4;
    color: #fff;
    border: 1px solid #16dd00;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.link-card:hover,
.link-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18, 6, 40, .35);
    border-color: rgba(161, 255, 3, .5);
    outline: none;
}

/* Icon box + image */
.lc-ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.lc-ic img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

/* Title + arrow */
.lc-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: black;
}

/* ---- Expert links: force 2×2 grid ---- */
.expert-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
}

.expert-links .link-card {
    height: 100%;
}

/* equal-height cards */
@media (max-width: 1100px) {
    .expert-grid {
        grid-template-columns: 1fr !important;
    }

    .expert-links {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Tiny phones: fall back to 1-up */
@media (max-width: 420px) {
    .expert-links {
        grid-template-columns: 1fr !important;
    }
}

/* Default hero (desktop), keep as-is */
.hero {
    display: block;
    position: relative;
    isolation: isolate;
}

.hero .bgmedia {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Mobile hero is hidden by default (desktop shows) */
.hero.hero-mobile {
    display: none;
}

/* -------------------- TABLET & MOBILE -------------------- */
@media (max-width: 1024px) {

    /* Hide desktop hero and show the mobile one */
    .hero:not(.hero-mobile) {
        display: none;
    }

    .hero.hero-mobile {
        display: block;
        position: relative;
        /* Banner background for mobile + tablet */
        background: url('/wp-content/uploads/2025/09/bonus-policy-mobile-image.png') center center / cover no-repeat;
        /* Keep nice proportions without stretching */
        aspect-ratio: 21 / 9;
        /* tablet default */
        min-height: clamp(420px, 60vh, 620px);
        width: 100%;
        padding: 24px 16px;
        text-align: center;
        /* Make inner content stack and allow pushing promos to bottom */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
    }

    /* So text/buttons are readable on bright images */
    .hero.hero-mobile::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.45) 100%);
        pointer-events: none;
    }

    /* --- Kill unwanted dark overlay / dimming in hero --- */
    .hero::before,
    .hero::after,
    .hero.hero-mobile::before,
    .hero.hero-mobile::after {
        content: none !important;
        background: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
    }

    /* Ensure no black bg leaks through */
    .hero,
    .hero.hero-mobile {
        background-color: transparent !important;
    }

    /* On phones: hide <video> to avoid black frame */
    @media (max-width: 768px) {
        .hero .bgmedia {
            display: none !important;
        }
    }

    /* Safety: keep content above background */
    .hero .container.hero-inner {
        position: relative;
        z-index: 1;
    }

    /* (Optional) If a theme bar is showing at the very top (green strip), remove hero top gap */
    .hero,
    .hero.hero-mobile {
        margin-top: 0 !important;
        padding-top: 16px;
    }

    .hero.hero-mobile .hero-inner {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    /* Title/CTA sizes scale down cleanly */
    .hero.hero-mobile h1 {
        margin: 8px 0 12px;
        line-height: 1.12;
        font-size: clamp(26px, 5vw, 40px);
    }

    .hero.hero-mobile .eyebrow {
        margin: 0;
        opacity: .95;
    }

    .hero.hero-mobile .button-wrapper {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    /* Bonus section sticks to bottom of banner on mobile/tablet */
    .hero.hero-mobile .mobile-promos {
        margin-top: auto;
        /* pushes it to the bottom */
        width: min(100%, 560px);
        display: grid;
        gap: 12px;
        padding-bottom: 12px;
        /* breathing room above page content */
    }

    .hero.hero-mobile .promo {
        background: rgba(16, 23, 42, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        padding: 12px;
        backdrop-filter: blur(6px);
        color: #fff;
        text-align: center;
    }

    /* Ensure hero video doesn't leave black box on mobile */
    @media (max-width: 768px) {
        .hero.hero-mobile .hero-inner {
            margin-top: 200px;
            gap: 2px;
        }
    }

    /* Remove any theme overlay if it exists */
    .hero::before,
    .hero::after {
        background: none !important;
        content: none !important;
    }

    .hero.hero-mobile .promo h3 {
        margin: 4px 0;
        font-size: 16px;
        line-height: 1.25;
    }

    .hero.hero-mobile .promo p {
        margin: 0 0 8px;
        font-size: 14px;
        opacity: .95;
    }

    /* If your desktop hero had video, hide it on small screens to avoid black frames */
    .hero .bgmedia {
        display: none;
    }
}

/* Hide on desktop by default */
.bonus-offers {
    display: none;
}

/* Show only on tablet & mobile */
@media (max-width: 1024px) {
    .bonus-offers {
        display: grid;
        margin: 24px auto;
        max-width: 900px;
        gap: 18px;
        padding: 0 16px;
    }
}

.bonus-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1a1f36, #0d111f);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
    background: #f6fff4 !important;
}

.bonus-text h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.bonus-text p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #ffd700;
}

.bonus-btn img {
    max-width: 150px;
    height: auto;
}

/* Stack vertically on phones */
@media (max-width: 768px) {
    .bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 5px;
        gap: 8px;
    }

    .bonus-btn img {
        max-width: 200px;
    }
}

/* Hide on desktop */
.bonus-offers {
    display: none;
}

/* Show as two columns, one row on mobile/tablet */
@media (max-width: 1024px) {
    .bonus-offers {
        display: flex;
        justify-content: center;
        /* center section horizontally */
        gap: 16px;
        /* space between the two cards */
        margin: 24px auto;
        max-width: 900px;
        padding: 0 16px;
    }

    .bonus-card {
        flex: 0 0 48%;
        /* each card takes about half the width */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        ;
        border: 1px solid #16dd00;
        border-radius: 14px;
        text-align: center;
        color: #fff;
        background: #f6fff4 !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .bonus-text h3 {
        margin: 0;
        font-size: 16px;
        line-height: 1.3;
    }

    .bonus-text p {
        margin: 4px 0 0;
        font-size: 14px;
        color: #ffd700;
    }

    .bonus-btn img {
        max-width: 140px;
        height: auto;
    }
}

@media (max-width: 360px) {
    .bonus-offers {
        flex-direction: column;
        /* stack only on very tiny screens */
    }
}

/* -------------------- PHONE TUNING -------------------- */
@media (max-width: 768px) {
    .hero.hero-mobile {
        /* phone has a taller ratio to keep text above promos comfortably */
        aspect-ratio: 9 / 16;
        padding: 20px 14px;
        height: 400px;
    }

    .hero.hero-mobile .promo h3 {
        font-size: 15px;
    }

    .hero.hero-mobile .promo p {
        font-size: 13px;
    }

    .hero.hero-mobile .button-wrapper img {
        max-width: 200px;
    }
}

/* Optional: if your theme restricts container width, let it breathe on mobile */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}

.mobile-btn {
    margin-top: -20px;
    display: inline-flex;
    align-items: center !important;
    justify-content: center;
    padding: 15px 18px;
    border-radius: 12px;
    background: #16dd00;
    color: #fff;
    font-weight: 700;
    width: 150px;
    margin-left: 100px;
}

/* Split hero layout */
.split-hero {
    padding: clamp(24px, 4vw, 56px) 0;
    background: linear-gradient(173deg, #17c705 0%, #121810 0.9%, #17c705 209%) !important;
}

.split-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    /* image | text */
    gap: clamp(16px, 3vw, 40px);
    align-items: center;
}

/* Media (left) */
.split-hero__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Content (right) */
.split-hero__content h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.6vw, 54px);
    line-height: 1.1;
    color: #fff;
    /* set to #000 if on light bg */
}

.split-hero__content p {
    margin: 0 0 16px;
    font-size: clamp(16px, 1.4vw, 20px);
    color: #fff;
    /* set to #333 if on light bg */
}

.split-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Optional ghost button style if you use it */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

/* Responsive: stack on tablet/phone and center content */
@media (max-width: 1024px) {
    .split-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split-hero__cta {
        justify-content: center;
    }
}

/* Show this banner only on mobile/tablet */
.banner-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .banner-mobile {
        display: block;
    }
}

/* Base safety */
.banner-mobile,
.banner-mobile * {
    box-sizing: border-box;
}

.banner-mobile {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

/* Image fills the banner */
.banner-media {
    margin: 0;
    position: relative;
}

.banner-media img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    /* keeps art looking right */
    aspect-ratio: 9 / 16;
    /* tall banner feel on phones */
    border-radius: 16px;
    /* nice rounded corners */
    display: none;
}

/* Soft bottom gradient so text is readable */
.banner-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .55) 100%);
    pointer-events: none;
    border-radius: 16px;
}

/* Bottom content panel (glass) */
.banner-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px clamp(14px, 4vw, 22px) calc(16px + env(safe-area-inset-bottom));
    display: grid;
    gap: 10px;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.banner-content .eyebrow {
    margin: 0;
    opacity: .95;
    font-size: 14px;
}

.banner-content h1 {
    margin: 0;
    line-height: 1.15;
    font-size: clamp(22px, 5.4vw, 32px);
}

.banner-content .accent {
    color: #b6ff3b;
    font-weight: 800;
}

/* CTA */
.mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: #16dd00;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
    transform: translateZ(0);
    /* crisp on mobile */
}

.mobile-btn:active {
    transform: scale(.98);
}

/* Smaller phones: tighten */
@media (max-width: 400px) {
    .banner-content {
        padding-bottom: 12px;
    }

    .banner-content h1 {
        font-size: clamp(20px, 6vw, 28px);
    }
}

/* Hide your desktop hero on mobile if needed */
@media (max-width: 1024px) {
    .hero:not(.banner-mobile) .bgmedia {
        display: none !important;
    }
}

/* Show the double-image banner on mobile + tablets, hide desktop hero */
.banner-mobile {
    display: none;
}

/* Tablet tuning (768–1366px): make images a bit wider/less tall */
@media (min-width: 768px) and (max-width: 1366px) {
    .banner-media--double {
        gap: 16px;
        padding: 0 24px;
    }

    .banner-media--double .banner-img {
        aspect-ratio: 4 / 5;
    }

    .banner-content h1 {
        font-size: clamp(28px, 2.6vw, 40px);
    }

    .mobile-btn {
        padding: 14px 22px;
    }
}

/* Optional: landscape tablets get even wider images */
@media (min-width: 1025px) and (max-width: 1366px) and (orientation: landscape) {
    .banner-media--double .banner-img {
        aspect-ratio: 3 / 4;
    }
}

/* Show only on mobile/tablet */
.bonus-offers {
    display: none;
}

@media (max-width: 1024px) {
    .bonus-offers {
        display: block;
        margin: 24px 0;
    }

    .bonus-row {
        display: flex;
        justify-content: center;
        gap: 14px;
        padding: 0 12px;
        max-width: 900px;
        margin: 0 auto;
    }
}

/* Card shell (white rounded container) */
.bonus-card {
    position: relative;
    flex: 0 0 calc(50% - 7px);
    /* 2 columns, 1 row */
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    overflow: hidden;
    min-height: 190px;
}

/* Green inner slab */
.bonus-inner {
    z-index: 1;
    margin: 8px;
    /* creates the white border look */
    border-radius: 14px;
    padding: 14px 12px 12px;
    text-align: center;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15);
    display: grid;
    gap: 8px;
    align-content: center;
}

/* Top logo badge (overlapping) */
.bonus-badge {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -45%);
    top: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .35);
    z-index: 2;
}

/* Text styles to match the look */
.bonus-eyebrow {
    display: block;
    font-weight: 700;
    letter-spacing: .2px;
    font-size: 13px;
    opacity: .95;
    color: black;
}

.bonus-number {
    line-height: 1;
}

.bonus-number .big {
    display: block;
    font-weight: 900;
    font-weight: 600;
    color: #a1ff03;
    letter-spacing: -0.02em;
}

.bonus-number .sub {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    opacity: .95;
}

/* CTA pill */
.bonus-cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #3ee600 0%, #23c400 100%);
    color: #0b1a06;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 6px 14px rgba(27, 196, 0, .35), inset 0 -2px 0 rgba(0, 0, 0, .18);
    text-transform: uppercase;
}

/* Tiny phones: breath a bit */
@media (max-width: 380px) {
    .bonus-card {
        min-height: 180px;
    }

    .bonus-number .big {}
}

.promo .bonus-h {
    gap: 14px;
    margin-top: 20px;
}

/* Dot visuals */
.slider .slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, .45);
    background: rgba(0, 0, 0, .12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
}

.slider .slider-dots button:hover {
    background: rgba(0, 0, 0, .2);
    border-color: rgba(0, 0, 0, .6);
}

.slider .slider-dots button[aria-current="true"] {
    background: #16dd00;
    border-color: #16dd00;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider .slider-dots button {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }
}

/* Reserve a small strip at the bottom of any slider that has dots */
.slider:has(> .slider-dots) {
    position: relative !important;
    padding-bottom: 28px !important;
    /* space for dots */
}

/* Center the dots at the bottom */
.slider>.slider-dots {
    position: absolute !important;
    left: 50% !important;
    bottom: 8px !important;
    /* adjust up/down as needed */
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    z-index: 5 !important;
}

/* Dot visuals (optional; keep if you want the glow style) */
.slider>.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .14);
    border: 1px solid rgba(0, 0, 0, .35);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .35), inset 0 0 0 2px rgba(0, 0, 0, .12);
    opacity: .75;
    cursor: pointer;
    padding: 0;
    transition: transform .2s ease, opacity .2s ease;
}

.slider>.slider-dots button[aria-current="true"] {
    background: #16dd00;
    border-color: #16dd00;
    opacity: 1;
    transform: scale(1.35);
    box-shadow: 0 0 0 4px rgba(18, 186, 255, .22), 0 0 18px #16dd00;
}

section backlgrouns gif is not visible