:root{
    /* Spinomera-ish palette */
    --bg-0: #070A08;
    --bg-1: #0C110E;
    --card: rgba(18, 22, 19, 0.72);
    --card-border: rgba(255, 255, 255, 0.08);

    --gold: #D6B35A;
    --gold-hi: #F3DA8A;
    --red: #B11226;
    --red-hi: #D61B33;

    --text: rgba(255,255,255,0.92);
    --muted: rgba(255,255,255,0.72);
    --soft: rgba(255,255,255,0.12);

    --radius: 22px;
    --shadow: 0 18px 70px rgba(0,0,0,0.55);
}

.hero{
    background:
        radial-gradient(1200px 600px at 20% 20%, rgba(214,179,90,0.18), transparent 55%),
        radial-gradient(900px 500px at 75% 35%, rgba(177,18,38,0.18), transparent 60%),
        linear-gradient(180deg, var(--bg-1), var(--bg-0));
    padding: clamp(18px, 4vw, 40px);
}

.hero__inner{
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 1.05fr;
    min-height: clamp(420px, 55vh, 620px);
}

/* LEFT PANEL */
.hero__copy{
    padding: clamp(22px, 4vw, 56px);
    background:
        radial-gradient(800px 600px at 0% 0%, rgba(214,179,90,0.10), transparent 60%),
        radial-gradient(800px 600px at 0% 90%, rgba(177,18,38,0.10), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
}

.hero__title{
    margin: 0 0 16px 0;
    color: #fff;
    line-height: 0.92;
    letter-spacing: -0.03em;
    font-weight: 900;
    font-size: clamp(44px, 3vw, 88px);
    text-transform: none;
}

/* subtle gold/red highlight under title */
.hero__title::after{
    content:"";
    display:block;
    width: clamp(110px, 22vw, 220px);
    height: 8px;
    border-radius: 999px;
    margin-top: 18px;
    background:
        linear-gradient(90deg, rgba(214,179,90,0.0), rgba(214,179,90,0.85), rgba(177,18,38,0.85), rgba(177,18,38,0.0));
    filter: blur(0.1px);
    opacity: 0.95;
}

.hero__desc{
    margin: 18px 0 26px 0;
    max-width: 48ch;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.hero__actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
    user-select: none;
    will-change: transform;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
    color: #1b1206;
    background:
        linear-gradient(180deg, var(--gold-hi), var(--gold));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 10px 26px rgba(214,179,90,0.25),
        inset 0 1px 0 rgba(255,255,255,0.24);
}

.btn--primary:hover{
    box-shadow:
        0 14px 34px rgba(214,179,90,0.34),
        inset 0 1px 0 rgba(255,255,255,0.28);
    transform: translateY(-1px);
}

.btn--ghost{
    color: var(--text);
    background: rgba(0,0,0,0.18);
    border: 1px solid var(--soft);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn--ghost:hover{
    border-color: rgba(214,179,90,0.45);
    box-shadow:
        0 10px 24px rgba(177,18,38,0.10),
        inset 0 1px 0 rgba(255,255,255,0.10);
    transform: translateY(-1px);
}

.hero__fine{
    margin: 16px 0 0 0;
    color: rgba(255,255,255,0.52);
    font-size: 12.5px;
}

/* RIGHT PANEL */
.hero__media{
    position: relative;
    padding: clamp(18px, 3vw, 28px);
    background:
        radial-gradient(900px 600px at 75% 30%, rgba(214,179,90,0.14), transparent 60%),
        radial-gradient(900px 600px at 45% 80%, rgba(177,18,38,0.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__mediaFrame{
    width: min(520px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    border: 1px dashed rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.25);
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
}

/* soft glow ring behind logo */
.hero__mediaFrame::before{
    content:"";
    position:absolute;
    inset:-40%;
    background:
        conic-gradient(
            from 180deg,
            rgba(214,179,90,0.0),
            rgba(214,179,90,0.35),
            rgba(177,18,38,0.35),
            rgba(214,179,90,0.0)
        );
    filter: blur(24px);
    opacity: 0.7;
}

/* MOBILE */
@media (max-width: 920px){
    .hero__inner{
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero__media{
        padding: 18px;
    }

    .hero__mediaFrame{
        aspect-ratio: 16 / 10;
        overflow: hidden;
    }

    .hero__logo{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero__title{
        font-size: clamp(40px, 3vw, 64px);
    }
}

.hero__mediaFrame { position: relative; }
.hero__mediaFrame::before{
    z-index: 0;
    pointer-events: none;
}

.hero__mediaFrame::before{
    z-index: -1;          /* push glow behind everything */
    pointer-events: none;
}


.hero__mediaFrame{
    width: 100%;
    height: 100%;
}

.hero__logo{
    width: 158%;
    height: 100%;
    object-fit: contain;    /* no crop */
    display: block;
}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.loop{
    padding: 48px 16px;
    display:flex;
    justify-content:center;
    background: #0b0f0c;
}

.loop__card{
    width:min(980px, 100%);
    padding: 44px 28px 22px;
    border-radius: 18px;
    background:
        radial-gradient(1200px 260px at 50% 0%, rgba(255,255,255,.10), rgba(255,255,255,0) 70%),
        rgba(15,18,16,.72);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
    text-align:center;
}

.loop__title{
    margin:0;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.02em;
    color: rgba(255,255,255,.92);
    font-weight: 800;
    position: relative;
    text-align: center;
}

.loop__title::after {
    content: "";
    display: block;
    width: clamp(116px, 17vw, 208px);
    height: 8px;
    border-radius: 999px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, rgba(214, 179, 90, 0.0), rgba(214, 179, 90, 0.85), rgba(177, 18, 38, 0.85), rgba(177, 18, 38, 0.0));
    filter: blur(0.1px);
    opacity: 0.95;
}

.loop__subtitle{
    margin: 10px auto 20px;
    max-width: 680px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.5;
}

.loop__form{
    margin: 0 auto;
    width: min(560px, 100%);
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}

.loop__input{
    flex: 1;
    height: 44px;
    border-radius: 12px;
    padding: 0 14px;
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.92);
    outline: none;
}

.loop__input::placeholder{color: rgba(255,255,255,.45)}
.loop__input:focus{border-color: rgba(255,255,255,.22)}

.loop__button{
    height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.15);
    background: rgba(255,255,255,.92);
    color: rgba(10,12,10,.95);
    font-weight: 700;
    cursor:pointer;
    transition: transform .06s ease, opacity .15s ease;
    white-space: nowrap;
}
.loop__button:active{transform: translateY(1px)}
.loop__button[disabled]{opacity:.6; cursor:not-allowed}

.loop__fineprint{
    margin: 14px 0 0;
    font-size: 11px;
    color: rgba(255,255,255,.55);
}
.loop__fineprint a{color: rgba(255,255,255,.72); text-decoration: underline}

.loop__msg{
    margin: 10px 0 0;
    min-height: 18px;
    font-size: 12px;
    color: rgba(255,255,255,.75);
}

@media (max-width: 520px){
    .loop__form{flex-direction: column; align-items: stretch}
    .loop__button{width: 100%}
}

/* ========= Events (Homepage section) ========= */
.eventsHome{
    background:
        radial-gradient(1100px 500px at 20% 20%, rgba(214,179,90,0.10), transparent 60%),
        radial-gradient(900px 500px at 75% 35%, rgba(177,18,38,0.10), transparent 65%),
        linear-gradient(180deg, #0b0f0c, #070A08);
    padding: 56px 16px;
}

.eventsHome__wrap{
    width: min(980px, 100%);
    margin: 0 auto;
}

.eventsHome__kicker{
    display:inline-block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
}

.eventsHome__title{
    margin: 0;
    font-size: clamp(42px, 6vw, 64px);
    letter-spacing: -0.03em;
    line-height: 1.0;
    font-weight: 900;
    color: rgba(255,255,255,0.94);
}

.eventsHome__title::after{
    content:"";
    display:block;
    width: clamp(120px, 18vw, 220px);
    height: 8px;
    border-radius: 999px;
    margin: 14px 0 0 0;
    background: linear-gradient(90deg, rgba(214,179,90,0.0), rgba(214,179,90,0.85), rgba(177,18,38,0.85), rgba(214,179,90,0.0));
    opacity: .95;
}

.eventsHome__sub{
    margin: 14px 0 0 0;
    max-width: 70ch;
    color: rgba(255,255,255,0.70);
    line-height: 1.6;
    font-size: 14px;
}

.eventsHome__featured{
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(18,22,19,0.70);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.eventsHome__media{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 240px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
}

.eventsHome__img{
    position:absolute;
    inset:0;
    background:
        radial-gradient(700px 320px at 30% 30%, rgba(214,179,90,0.14), transparent 60%),
        radial-gradient(700px 320px at 70% 70%, rgba(177,18,38,0.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.eventsHome__date{
    position:absolute;
    top: 12px;
    left: 12px;
    width: 72px;
    border-radius: 12px;
    padding: 10px 8px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.10);
    text-align:center;
    backdrop-filter: blur(8px);
    z-index: 2;
}
.eventsHome__dow{ font-size: 11px; color: rgba(255,255,255,0.70); letter-spacing:.02em; }
.eventsHome__day{ font-size: 28px; font-weight: 900; line-height: 1.0; color: rgba(255,255,255,0.92); margin: 2px 0; }
.eventsHome__mon{ font-size: 11px; color: rgba(255,255,255,0.62); }

.eventsHome__featureCopy{
    padding: 8px 6px;
    display:flex;
    flex-direction: column;
    justify-content: center;
}

.eventsHome__tag{
    display:inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    color: rgba(255,255,255,0.80);
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.10);
}

.eventsHome__featureTitle{
    margin: 12px 0 6px 0;
    font-size: 30px;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: rgba(255,255,255,0.94);
}

.eventsHome__meta{
    font-size: 12px;
    color: rgba(255,255,255,0.62);
    margin-bottom: 10px;
}

.eventsHome__desc{
    margin: 0 0 14px 0;
    color: rgba(255,255,255,0.70);
    line-height: 1.55;
    font-size: 13px;
    max-width: 52ch;
}

.eventsHome__cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    text-decoration:none;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    background: rgba(0,0,0,0.20);
    border: 1px solid rgba(255,255,255,0.12);
    width: fit-content;
}
.eventsHome__cta:hover{
    border-color: rgba(214,179,90,0.45);
}

.eventsHome__filters{
    margin-top: 18px;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
}

.eventsHome__pill{
    appearance: none;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.22);
    color: rgba(255,255,255,0.72);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
}
.eventsHome__pill:hover{ color: rgba(255,255,255,0.90); border-color: rgba(255,255,255,0.18); }
.eventsHome__pill.is-active{
    background: rgba(255,255,255,0.92);
    color: rgba(10,12,10,.95);
    border-color: rgba(0,0,0,0.15);
}

.eventsHome__list{
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.eventsHome__row{
    display:grid;
    grid-template-columns: 88px 1fr auto;
    gap: 16px;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: center;
}

.eventsHome__rowDate{
    width: 72px;
    border-radius: 12px;
    padding: 10px 8px;
    background: rgba(0,0,0,0.30);
    border: 1px solid rgba(255,255,255,0.10);
    text-align:center;
}

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

.eventsHome__rowTitle{
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: rgba(255,255,255,0.94);
}

.eventsHome__status{
    font-size: 11px;
    padding: 5px 9px;
    border-radius: 999px;
    color: rgba(255,255,255,0.80);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
}

.eventsHome__rowDesc{
    margin: 6px 0 0 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.55;
    font-size: 13px;
    max-width: 80ch;
}

.eventsHome__rowBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height: 36px;
    padding: 0 14px;
    border-radius: 12px;
    text-decoration:none;
    font-weight: 800;
    color: rgba(255,255,255,0.88);
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.12);
    white-space: nowrap;
}
.eventsHome__rowBtn:hover{
    border-color: rgba(214,179,90,0.45);
}

.eventsHome__foot{
    margin-top: 14px;
    display:flex;
    justify-content:flex-end;
}
.eventsHome__all{
    color: rgba(255,255,255,0.72);
    text-decoration:none;
    font-weight: 700;
}
.eventsHome__all:hover{ color: rgba(255,255,255,0.92); text-decoration: underline; }

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

@media (max-width: 560px){
    .eventsHome__row{
        grid-template-columns: 88px 1fr;
        grid-template-areas:
          "date main"
          "date action";
        align-items: start;
    }
    .eventsHome__rowDate{ grid-area: date; }
    .eventsHome__rowMain{ grid-area: main; }
    .eventsHome__rowAction{ grid-area: action; margin-top: 10px; }
}


/* ========= Games (Homepage section) ========= */
.gamesHome{
    background:
        radial-gradient(1200px 700px at 20% 10%, rgba(214,179,90,0.10), transparent 55%),
        radial-gradient(900px 600px at 80% 25%, rgba(177,18,38,0.10), transparent 60%),
        linear-gradient(180deg, #0b0f0c, #070A08);
    padding: 64px 16px;
}

.gamesHome__wrap{
    width: min(1100px, 100%);
    margin: 0 auto;
}

.gamesHome__head{
    text-align: center;
    margin-bottom: 26px;
}

.gamesHome__kicker{
    display:inline-block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    margin-bottom: 10px;
}

.gamesHome__title{
    margin: 0;
    font-size: clamp(38px, 5.2vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: rgba(255,255,255,0.94);
}

.gamesHome__title::after{
    content:"";
    display:block;
    width: clamp(120px, 18vw, 220px);
    height: 8px;
    border-radius: 999px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, rgba(214,179,90,0.0), rgba(214,179,90,0.85), rgba(177,18,38,0.85), rgba(214,179,90,0.0));
    opacity: .95;
}

.gamesHome__sub{
    margin: 14px auto 0;
    max-width: 78ch;
    color: rgba(255,255,255,0.70);
    line-height: 1.65;
    font-size: 14px;
}

.gamesHome__fine{
    margin: 10px auto 0;
    color: rgba(255,255,255,0.52);
    font-size: 12px;
}

.gamesHome__grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Card */
.gamesHome__card{
    display:block;
    text-decoration:none;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(18,22,19,0.70);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease, filter .14s ease;
    will-change: transform;
}

.gamesHome__card:hover{
    transform: translateY(-3px);
    border-color: rgba(214,179,90,0.28);
    box-shadow: 0 26px 70px rgba(0,0,0,.62);
}

/* Top media */
.gamesHome__media{
    position: relative;
    aspect-ratio: 16/10;
    background: rgba(0,0,0,0.22);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gamesHome__img{
    position:absolute;
    inset:0;
    background:
        radial-gradient(700px 320px at 30% 30%, rgba(214,179,90,0.14), transparent 60%),
        radial-gradient(700px 320px at 70% 70%, rgba(177,18,38,0.12), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

/* Variants – keeps them distinct without images */
.gamesHome__img--slots{
    background-image: url('/images/slot.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.gamesHome__img--skill{
    background:
        radial-gradient(700px 320px at 30% 30%, rgba(177,18,38,0.18), transparent 60%),
        radial-gradient(700px 320px at 70% 70%, rgba(214,179,90,0.08), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.gamesHome__img--events{
    background:
        radial-gradient(700px 320px at 30% 30%, rgba(214,179,90,0.14), transparent 60%),
        radial-gradient(700px 320px at 70% 70%, rgba(177,18,38,0.16), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.gamesHome__img--table{
    background:
        radial-gradient(700px 320px at 30% 30%, rgba(40,120,214,0.14), transparent 60%),
        radial-gradient(700px 320px at 70% 70%, rgba(214,179,90,0.12), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

/* Badge */
.gamesHome__badge{
    position:absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    color: rgba(255,255,255,0.78);
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}

.gamesHome__badge.is-live{
    color: rgba(10,12,10,0.95);
    background: rgba(255,255,255,0.92);
    border-color: rgba(0,0,0,0.18);
}

/* Bottom body */
.gamesHome__body{
    padding: 16px 16px 18px;
    background:
        radial-gradient(900px 240px at 50% 0%, rgba(255,255,255,.06), rgba(255,255,255,0) 70%),
        rgba(0,0,0,0.22);
}

.gamesHome__tag{
    font-size: 12px;
    color: rgba(255,255,255,0.62);
    margin-bottom: 8px;
}

.gamesHome__h{
    margin: 0 0 10px 0;
    font-size: 28px;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: rgba(255,255,255,0.94);
    line-height: 1.05;
}

.gamesHome__p{
    margin: 0 0 14px 0;
    color: rgba(255,255,255,0.70);
    font-size: 13px;
    line-height: 1.6;
    max-width: 56ch;
}

.gamesHome__cta{
    display:flex;
    align-items:center;
    gap: 8px;
    color: rgba(255,255,255,0.82);
    font-weight: 800;
    font-size: 13px;
}

.gamesHome__card:hover .gamesHome__cta{
    color: rgba(255,255,255,0.94);
}

/* Responsive */
@media (max-width: 980px){
    .gamesHome__grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px){
    .gamesHome__grid{ grid-template-columns: 1fr; }
    .gamesHome{ padding: 52px 16px; }
    .gamesHome__h{ font-size: 26px; }
}

/* ===== Premium "shine sweep" hover effect (subtle) ===== */
/* Add this under your Games section CSS */

.gamesHome__card{
    position: relative; /* required for the pseudo elements */
    overflow: hidden;   /* keeps the shine inside the card */
}

/* the shine strip */
.gamesHome__card::before{
    content:"";
    position:absolute;
    top:-35%;
    left:-70%;
    width: 55%;
    height: 170%;
    transform: rotate(18deg) translateX(0);
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.00),
        rgba(255,255,255,0.04),
        rgba(214,179,90,0.10),
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.00)
    );
    opacity: 0;
    filter: blur(0.2px);
    pointer-events: none;
    z-index: 3;
}

/* a very soft edge glow to make it feel expensive */
.gamesHome__card::after{
    content:"";
    position:absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events:none;
    opacity: 0;
    z-index: 2;
    background:
        radial-gradient(700px 260px at 30% 10%, rgba(214,179,90,0.10), transparent 55%),
        radial-gradient(700px 260px at 70% 90%, rgba(177,18,38,0.08), transparent 60%);
}

/* Trigger on hover/focus (keyboard too) */
.gamesHome__card:hover::before,
.gamesHome__card:focus-visible::before{
    opacity: 1;
    animation: gamesShineSweep 0.95s ease-out forwards;
}

.gamesHome__card:hover::after,
.gamesHome__card:focus-visible::after{
    opacity: 1;
    transition: opacity .18s ease;
}

/* Optional: slightly “lift” the media too */
.gamesHome__card:hover .gamesHome__img,
.gamesHome__card:focus-visible .gamesHome__img{
    transform: scale(1.015);
    transition: transform .35s ease;
}

/* Keyframes: sweep left -> right */
@keyframes gamesShineSweep{
    0%   { transform: rotate(18deg) translateX(0); }
    100% { transform: rotate(18deg) translateX(340%); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
    .gamesHome__card::before,
    .gamesHome__card::after{
        animation: none !important;
        transition: none !important;
    }
    .gamesHome__card:hover::before,
    .gamesHome__card:focus-visible::before{
        opacity: 0.65;
    }
}

/* ========= Progression & XP ========= */
.progressionHome{
    background:
        radial-gradient(1000px 600px at 20% 20%, rgba(214,179,90,0.10), transparent 60%),
        radial-gradient(900px 500px at 80% 40%, rgba(177,18,38,0.10), transparent 65%),
        linear-gradient(180deg, #070A08, #0b0f0c);
    padding: 72px 16px;
}

.progressionHome__wrap{
    width: min(1100px, 100%);
    margin: 0 auto;
}

.progressionHome__head{
    text-align: center;
    margin-bottom: 36px;
}

.progressionHome__title{
    margin: 0;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.94);
}

.progressionHome__title::after{
    content:"";
    display:block;
    width: clamp(120px, 18vw, 220px);
    height: 8px;
    border-radius: 999px;
    margin: 14px auto 0;
    background: linear-gradient(
        90deg,
        rgba(214,179,90,0.0),
        rgba(214,179,90,0.85),
        rgba(177,18,38,0.85),
        rgba(214,179,90,0.0)
    );
}

.progressionHome__sub{
    margin: 14px auto 0;
    max-width: 72ch;
    color: rgba(255,255,255,0.70);
    line-height: 1.65;
    font-size: 14px;
}

.progressionHome__grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.progressionHome__card{
    background: rgba(18,22,19,0.72);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.progressionHome__icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
    font-weight: 900;
    margin-bottom: 14px;
}

.progressionHome__card h3{
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.progressionHome__card p{
    margin: 0 0 14px 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.70);
}

/* XP bar */
.progressionHome__bar{
    height: 8px;
    background: rgba(255,255,255,0.10);
    border-radius: 999px;
    overflow: hidden;
}
.progressionHome__bar span{
    display:block;
    height:100%;
    background: linear-gradient(90deg, var(--gold), var(--red));
}

/* Levels */
.progressionHome__levels{
    display:flex;
    gap: 8px;
}
.progressionHome__levels span{
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    font-size: 12px;
}
.progressionHome__levels .is-active{
    background: rgba(255,255,255,0.92);
    color: #111;
    font-weight: 800;
}

/* Unlock list */
.progressionHome__unlocks{
    list-style: none;
    padding: 0;
    margin: 0;
}
.progressionHome__unlocks li{
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
}

/* Season */
.progressionHome__season{
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 980px){
    .progressionHome__grid{ grid-template-columns: repeat(2, 1fr); }
}

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

/* ========= Trust / Responsible Play Strip (Premium v2) ========= */
.trustStrip{
    background:
        linear-gradient(
            180deg,
            rgba(20,24,20,0.85),
            rgba(10,12,10,0.92)
        );
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.4);
    padding: 18px 16px;
}

.trustStrip__wrap{
    width: min(1100px, 100%);
    margin: 0 auto;
}

.trustStrip__list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trustStrip__item{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    letter-spacing: 0.01em;
    cursor: default;
}

.trustStrip__icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

/* Link styling (quiet authority) */
.trustStrip__link{
    color: rgba(255,255,255,0.90);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.35);
}

.trustStrip__link:hover{
    color: rgba(255,255,255,1);
    border-bottom-color: rgba(214,179,90,0.6);
}

/* Hover emphasis */
.trustStrip__item:hover .trustStrip__icon{
    border-color: rgba(214,179,90,0.45);
}

/* Tooltip */
.trustStrip__item::after{
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(10,12,10,0.95);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
}

.trustStrip__item:hover::after{
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

/* Mobile tightening */
@media (max-width: 560px){
    .trustStrip{
        padding: 16px 14px;
    }
    .trustStrip__list{
        gap: 16px;
    }
}
