/* =========================
   GLOBAL / RESET
========================= */
:root {
    color-scheme: dark;
    --bg0: #050914;
    --bg1: #0a1026;
    --blue: #2f5bff;
    --blue2: #5d7cff;
    --text: #eaf0ff;
    --muted: rgba(234,240,255,.62);
    --line: rgba(255,255,255,.08);
    --gold: #f2c24f;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color: var(--text);
    overflow-x: hidden;
    /* ✅ ONE unified site background */
    background: radial-gradient(1500px 700px at 18% 22%, rgba(93,124,255,.18), transparent 60%), radial-gradient(900px 600px at 82% 18%, rgba(242,194,79,.10), transparent 62%), radial-gradient(900px 650px at 55% 105%, rgba(93,124,255,.10), transparent 60%), linear-gradient(180deg, var(--bg1) 0%, #070c1c 55%, var(--bg0) 100%);
    background-attachment: fixed;
}

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

/* container you use in many sections */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 34px 20px;
}

/* tp container used in header/hero/footer */
.tp-container {
    width: min(1500px, calc(100% - 44px));
    margin: 0 auto;
}

/* =========================
   (Optional) OLD TP HEADER (kept)
========================= */
.tp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(5,8,20,.72), rgba(5,8,20,.25));
    border-bottom: 1px solid var(--line);
}

.tp-nav {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.tp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    min-width: 190px;
}

.tp-brand__text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-brand__logo {
    width: 108px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(93,124,255,.35));
}

.tp-brand__tag {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(234,240,255,.45);
    text-transform: uppercase;
    white-space: nowrap;
}

.tp-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    margin-right: 10px;
}

    .tp-menu a {
        font-size: 11px;
        letter-spacing: 1.4px;
        color: rgba(234,240,255,.62);
        text-decoration: none;
        padding: 8px 8px;
        border-radius: 10px;
        text-transform: uppercase;
    }

        .tp-menu a:hover {
            color: rgba(234,240,255,.92);
        }

        .tp-menu a.is-active {
            color: rgba(234,240,255,.98);
        }

.tp-login {
    font-size: 11px;
    letter-spacing: 1.1px;
    text-decoration: none;
    color: rgba(234,240,255,.92);
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    text-transform: uppercase;
}

    .tp-login:hover {
        border-color: rgba(93,124,255,.35);
        box-shadow: 0 0 0 3px rgba(93,124,255,.12) inset;
    }

/* =========================
   HERO (FINAL / SINGLE SOURCE)
========================= */
.tp-hero {
    position: relative;
    overflow: hidden;
    padding: 32px 0 34px;
}

.tp-hero__wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

/* base overlay (NO image here) */
.tp-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(1000px 650px at 24% 35%, rgba(93,124,255,.14), transparent 60%), radial-gradient(900px 600px at 75% 15%, rgba(0,0,0,.72), transparent 60%), linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

    /* page-specific images */
    .tp-hero__bg.tp-hero__bg--home {
        background: radial-gradient(1000px 650px at 24% 35%, rgba(93,124,255,.14), transparent 60%), radial-gradient(900px 600px at 75% 15%, rgba(0,0,0,.72), transparent 60%), linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15)), url("assets/bg/banner.webp");
    }

    .tp-hero__bg.tp-hero__bg--casino {
        background: radial-gradient(1000px 650px at 24% 35%, rgba(93,124,255,.14), transparent 60%), radial-gradient(900px 600px at 75% 15%, rgba(0,0,0,.72), transparent 60%), linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15)), url("assets/bg/casino.webp");
    }

    .tp-hero__bg.tp-hero__bg--slots {
        background: radial-gradient(1000px 650px at 24% 35%, rgba(93,124,255,.14), transparent 60%), radial-gradient(900px 600px at 75% 15%, rgba(0,0,0,.72), transparent 60%), linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15)), url("assets/bg/slots.webp");
    }

/* content above bg */
.tp-hero__grid {
    position: relative;
    z-index: 1;
    padding: 26px 26px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 30px;
    min-height: 420px;
}

/* left text */
.tp-hero__jackpot {
    color: var(--gold);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-shadow: 0 0 18px rgba(242,194,79,.2);
}

.tp-hero__title {
    margin: 0 0 16px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 56px;
    line-height: 1.02;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(0,0,0,.35), 0 10px 30px rgba(0,0,0,.55);
}

.tp-hero__desc {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-style: italic;
}

.tp-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(90deg, rgba(47,91,255,.95), rgba(93,124,255,.95));
    box-shadow: 0 14px 30px rgba(47,91,255,.18), 0 0 0 4px rgba(93,124,255,.10) inset;
}

    .tp-hero__cta:hover {
        filter: brightness(1.05);
        box-shadow: 0 18px 38px rgba(47,91,255,.22), 0 0 0 4px rgba(93,124,255,.14) inset;
    }

.tp-hero__arrow {
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    opacity: .9;
}

/* right (chips) */
.tp-hero__right {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.tp-chip {
    position: absolute;
    width: 92px;
    height: auto;
    opacity: .95;
    filter: drop-shadow(0 22px 24px rgba(0,0,0,.45)) drop-shadow(0 0 14px rgba(93,124,255,.16));
    animation: floatY 4.4s ease-in-out infinite;
}

@keyframes floatY {
    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(10deg);
    }
}

/* chip positions */
.tp-chip.c1 {
    right: 22%;
    bottom: 48%;
    width: 88px;
    animation-duration: 4.8s;
}

.tp-chip.c2 {
    right: 12%;
    bottom: 34%;
    width: 110px;
    animation-duration: 5.2s;
    animation-delay: .2s;
}

.tp-chip.c3 {
    right: 34%;
    bottom: 22%;
    width: 78px;
    animation-duration: 4.2s;
    animation-delay: .15s;
}

.tp-chip.c4 {
    right: 18%;
    bottom: 14%;
    width: 84px;
    animation-duration: 4.6s;
    animation-delay: .35s;
}

.tp-chip.c5 {
    right: 28%;
    bottom: 30%;
    width: 70px;
    opacity: .85;
    animation-duration: 5.6s;
    animation-delay: .1s;
}

/* responsive hero */
@media (max-width:980px) {
    .tp-menu {
        display: none;
    }

    .tp-hero__grid {
        grid-template-columns: 1fr;
        min-height: 380px;
    }

    .tp-hero__right {
        height: 320px;
    }

    .tp-hero__title {
        font-size: 44px;
    }
}

@media (max-width:620px) {
    .tp-brand__tag {
        display: none;
    }

    .tp-hero__title {
        font-size: 38px;
    }
}

/* =========================
   JACKPOT BOXES
========================= */
.jackpot-boxes {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding-top: 10px;
}

    .jackpot-boxes .box {
        background: radial-gradient(260px 120px at 50% 0%, rgba(93,124,255,.18), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 14px;
        padding: 22px;
        box-shadow: 0 18px 40px rgba(0,0,0,.30);
    }

        .jackpot-boxes .box h3 {
            margin: 0 0 10px;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255,255,255,.75);
        }

.counter {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 18px rgba(242,194,79,.35), 0 0 40px rgba(242,194,79,.15);
}

@media (max-width:620px) {
    .jackpot-boxes {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PROVIDERS (SINGLE SOURCE) — slider row + arrows
   Uses: .providers .prov2-head .prov2-title .prov2-arrows .prov2-arrow .prov2-slider .prov2-grid .p2-item ...
========================= */
.providers {
    padding: 16px 0;
}

.prov2-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.prov2-title {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
}

.prov2-arrows {
    display: flex;
    gap: 8px;
}

.prov2-arrow {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

    .prov2-arrow:hover {
        background: rgba(42,167,255,.25);
    }

/* viewport */
.prov2-slider {
    margin-top: 12px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* row */
.prov2-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    min-width: 0;
    overflow-x: auto; /* ✅ scroll */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .prov2-grid::-webkit-scrollbar {
        display: none;
    }

/* item tile (fixed width) */
.p2-item {
    flex: 0 0 96px;
    max-width: 96px;
    position: relative;
    display: grid;
    gap: 6px;
    justify-items: center;
    text-decoration: none;
    color: rgba(255,255,255,.78);
    padding: 2px 0;
}

.p2-icon {
    width: 58px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 20px rgba(0,0,0,.35);
    color: rgba(255,255,255,.70);
    font-weight: 900;
    transition: transform .15s ease, border-color .15s ease;
}

    .p2-icon img {
        width: 70%;
        height: 70%;
        object-fit: contain;
        opacity: .9;
        filter: grayscale(1) brightness(1.15);
    }

.p2-name {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
    text-align: center;
}

.p2-item.active .p2-icon {
    width: 72px; /* ლოგო უფრო დიდი */
    height: 52px;
    border-color: rgba(100,255,210,.35);
    background: linear-gradient(180deg, rgba(44,220,170,.18), rgba(255,255,255,.02));
    box-shadow: 0 0 0 2px rgba(44,220,170,.18), inset 0 1px 0 rgba(255,255,255,.06), 0 14px 24px rgba(0,0,0,.45);
}

.p2-item.active .p2-name {
    color: rgba(255,255,255,.92);
}

.p2-all {
    font-size: 22px;
    line-height: 1;
    opacity: .9;
}

.p2-badge {
    position: absolute;
    top: -6px;
    right: 10px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 900;
    border-radius: 6px;
    background: #ff4d4d;
    color: #fff;
    letter-spacing: .3px;
    box-shadow: 0 8px 14px rgba(0,0,0,.35);
}

.p2-item:hover .p2-icon {
    border-color: rgba(255,255,255,.16);
    transform: translateY(-1px);
}

    .p2-item:hover .p2-icon img {
        filter: grayscale(.15) brightness(1.25);
        opacity: 1;
    }

/* allow flex children to shrink inside container */
.providers.container {
    min-width: 0;
}

/* =========================
   TOP GAMES PANELS
========================= */
.games {
    padding-top: 0;
}

.tg-panel {
    position: relative;
    margin: 26px auto;
    padding: 22px 26px 18px;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)), radial-gradient(900px 380px at 50% 0%, rgba(93,124,255,.12), transparent 60%);
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 18px 50px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
    overflow: hidden;
}

    .tg-panel::before,
    .tg-panel::after {
        content: "";
        position: absolute;
        top: -40px;
        bottom: -40px;
        width: 220px;
        pointer-events: none;
        opacity: .9;
    }

    .tg-panel::before {
        left: -140px;
        background: radial-gradient(closest-side, rgba(93,124,255,.18), transparent 70%);
    }

    .tg-panel::after {
        right: -140px;
        background: radial-gradient(closest-side, rgba(93,124,255,.18), transparent 70%);
    }

.tg-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 0 14px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,.82);
}

.tg-star {
    filter: drop-shadow(0 6px 10px rgba(0,0,0,.45));
    transform: translateY(-1px);
}

.tg-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px 18px;
    padding: 6px 6px 10px;
}

.tg-card {
    min-width: 0;
}

.tg-thumb {
    position: relative;
    display: block;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 22px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}

    .tg-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        filter: saturate(1.05) contrast(1.02);
    }

.tg-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 2;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .6px;
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    background: linear-gradient(180deg,#ff6a3d,#e3452e);
    box-shadow: 0 8px 16px rgba(0,0,0,.35);
    text-transform: uppercase;
}

.tg-meta {
    padding: 9px 2px 0;
}

.tg-provider {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .7px;
    color: rgba(255,255,255,.78);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tg-win {
    font-size: 10px;
    color: rgba(255,255,255,.50);
    font-style: italic;
}

    .tg-win span {
        color: rgba(255,255,255,.62);
        font-weight: 700;
        font-style: normal;
    }

.tg-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 6px;
    margin-top: 6px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(140,180,255,.70);
}

    .tg-more:hover {
        color: rgba(170,205,255,.9);
        text-decoration: underline;
    }

.tg-thumb:hover {
    border-color: rgba(140,180,255,.20);
    box-shadow: 0 14px 28px rgba(0,0,0,.42), 0 0 0 1px rgba(93,124,255,.10) inset;
}

@media (max-width:1100px) {
    .tg-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:900px) {
    .tg-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-thumb {
        height: 130px;
    }
}

@media (max-width:620px) {
    .tg-panel {
        padding: 18px 14px 14px;
    }

    .tg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tg-thumb {
        height: 120px;
    }
}

/* =========================
   FOOTER
========================= */
.tp-footer {
    margin-top: 40px;
    padding: 34px 0;
    background: radial-gradient(1500px 420px at 50% -40%, rgba(93,124,255,.10), transparent 60%), rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.tp-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr .85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.tp-footer__col {
    position: relative;
    padding-left: 22px;
}

    .tp-footer__col:first-child {
        padding-left: 0;
    }

    .tp-footer__col:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        bottom: 6px;
        width: 1px;
        background: rgba(255,255,255,.07);
    }

.tp-footer__head {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    margin-bottom: 12px;
}

.tp-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.tp-footer__mark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(93,124,255,.12);
    border: 1px solid rgba(93,124,255,.22);
}

.tp-footer__name {
    font-weight: 900;
    letter-spacing: .6px;
    color: rgba(150,190,255,.9);
    font-size: 13px;
}

.tp-footer__tag {
    font-size: 9px;
    letter-spacing: .8px;
    color: rgba(255,255,255,.35);
    margin-top: 2px;
    text-transform: uppercase;
}

.tp-footer__text {
    margin: 0 0 14px;
    font-size: 11px;
    line-height: 1.65;
    color: rgba(255,255,255,.42);
    font-style: italic;
}

    .tp-footer__text.small {
        margin-top: -2px;
    }

.tp-footer__copy {
    font-size: 10px;
    line-height: 1.6;
    color: rgba(255,255,255,.30);
}

.tp-footer__link {
    display: block;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    color: rgba(255,255,255,.66);
    margin: 10px 0;
    text-transform: uppercase;
}

    .tp-footer__link:hover {
        color: rgba(170,205,255,.92);
    }

.tp-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    text-decoration: none;
    font-size: 11px;
    color: rgba(255,255,255,.60);
}

    .tp-footer__social:hover {
        color: rgba(170,205,255,.92);
    }

.tp-ico {
    width: 22px;
    height: 22px;
    border-radius: 3px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(150,190,255,.85);
    font-weight: 900;
    font-size: 12px;
}

.tp-footer__form {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-top: 12px;
}

.tp-footer__input {
    flex: 1;
    height: 38px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.85);
    padding: 0 12px;
    outline: none;
}

    .tp-footer__input::placeholder {
        color: rgba(255,255,255,.35);
        font-style: italic;
    }

.tp-footer__btn {
    width: 42px;
    height: 38px;
    border-radius: 4px;
    border: 1px solid rgba(93,124,255,.25);
    background: linear-gradient(180deg, rgba(47,91,255,.95), rgba(93,124,255,.90));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 20px rgba(47,91,255,.16);
}

    .tp-footer__btn:hover {
        filter: brightness(1.05);
    }

@media (max-width:980px) {
    .tp-footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .tp-footer__subscribe {
        grid-column: 1 / -1;
    }
}

@media (max-width:620px) {
    .tp-footer__grid {
        grid-template-columns: 1fr;
    }

    .tp-footer__col {
        padding-left: 0;
    }

        .tp-footer__col::before {
            display: none;
        }
}

/* =========================
   HEADER (Screenshot style) + OLD COLORS
========================= */
.hdr {
    position: sticky;
    top: 0;
    z-index: 80;
}

/* TOP BAR */
.hdrTop {
    background: linear-gradient(180deg, rgba(5,8,20,.88), rgba(5,8,20,.65));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.hdrTop__inner {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px;
}

.hdrBrand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hdrBrand__logo {
    width: 170px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(93,124,255,.35));
}

/* auth */
.hdrAuth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hdrField {
    display: flex;
    align-items: center;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    overflow: hidden;
}

.hdrInput {
    width: 210px;
    height: 38px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
    padding: 0 12px;
    font-size: 13px;
}

    .hdrInput::placeholder {
        color: rgba(234,240,255,.45);
    }

.hdrIconBtn {
    width: 42px;
    height: 38px;
    border: 0;
    background: rgba(0,0,0,.25);
    color: rgba(234,240,255,.65);
    cursor: pointer;
    border-left: 1px solid rgba(255,255,255,.10);
}

    .hdrIconBtn:hover {
        color: rgba(234,240,255,.95);
    }

.hdrBtn {
    height: 38px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: rgba(234,240,255,.92);
    font-weight: 800;
    letter-spacing: .5px;
    cursor: pointer;
}

    .hdrBtn:hover {
        background: rgba(255,255,255,.08);
    }

.hdrBtn--green {
    background: linear-gradient(90deg, rgba(47,91,255,.95), rgba(93,124,255,.95));
    border-color: rgba(93,124,255,.45);
    box-shadow: 0 14px 30px rgba(47,91,255,.25), 0 0 0 3px rgba(93,124,255,.12) inset;
}

    .hdrBtn--green:hover {
        filter: brightness(1.05);
    }

.hdrLang {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.hdrFlag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

/* BOTTOM NAV */
.hdrNav {
    background: linear-gradient(180deg, rgba(12,20,52,.92), rgba(8,14,36,.96));
    border-bottom: 1px solid var(--line);
}

.hdrNav__inner {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px;
}

.hdrMenu {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: hidden;
}

    .hdrMenu a {
        position: relative;
        text-decoration: none;
        color: rgba(234,240,255,.70);
        font-weight: 800;
        letter-spacing: .4px;
        font-size: 12px;
        text-transform: uppercase;
        padding: 10px 0 12px; /* ადგილი ხაზისთვის */
        white-space: nowrap;
    }

        .hdrMenu a:hover {
            color: rgba(234,240,255,.95);
        }

        /* ✅ support both .is-active and .active */
        .hdrMenu a.is-active,
        .hdrMenu a.active {
            color: #fff;
        }

            .hdrMenu a.is-active::after,
            .hdrMenu a.active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 2px;
                background: var(--blue);
                box-shadow: 0 0 10px rgba(93,124,255,.65);
                border-radius: 2px;
            }

/* NEW badge */
.hdrBadge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 900;
    border-radius: 6px;
    background: #ff3b3b;
    color: #fff;
    transform: translateY(-1px);
}

/* promotions */
.hdrPromo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(234,240,255,.85);
    font-weight: 900;
    letter-spacing: .4px;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

    .hdrPromo:hover {
        color: rgba(234,240,255,1);
    }

.hdrPromo__ico {
    opacity: .9;
}

@media (max-width:1100px) {
    .hdrInput {
        width: 160px;
    }

    .hdrMenu {
        gap: 14px;
    }
}

@media (max-width:900px) {
    .hdrAuth {
        gap: 8px;
    }

    .hdrField {
        display: none;
    }
}

@media (max-width:640px) {
    .hdrMenu {
        overflow-x: auto;
        scrollbar-width: none;
    }

        .hdrMenu::-webkit-scrollbar {
            display: none;
        }
}

/* =========================
   SLOTS PAGE (sp-*)
========================= */
.sp-hero {
    padding: 18px 0 0;
}

.sp-hero__inner {
    padding-top: 18px;
    padding-bottom: 10px;
}

.sp-bc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(234,240,255,.55);
    margin-bottom: 10px;
}

    .sp-bc a {
        color: rgba(140,180,255,.75);
        text-decoration: none;
    }

        .sp-bc a:hover {
            text-decoration: underline;
        }

.sp-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.sp-title {
    margin: 0;
    font-size: 28px;
    letter-spacing: .4px;
}

.sp-sub {
    margin: 0;
    color: rgba(234,240,255,.55);
    font-size: 12px;
    font-style: italic;
}

/* filters */
.sp-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.sp-search {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    overflow: hidden;
}

.sp-input {
    width: min(360px, 70vw);
    height: 40px;
    border: 0;
    outline: none;
    background: transparent;
    color: rgba(255,255,255,.88);
    padding: 0 42px 0 12px;
}

    .sp-input::placeholder {
        color: rgba(255,255,255,.40);
    }

.sp-clear {
    position: absolute;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.70);
    cursor: pointer;
}

    .sp-clear:hover {
        color: #fff;
    }

.sp-select {
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.88);
    padding: 0 12px;
    outline: none;
}

/* grid */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    padding-top: 18px;
}

.sp-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.sp-thumb {
    position: relative;
    display: block;
    height: 170px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
}

    .sp-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.03);
        filter: saturate(1.05) contrast(1.02);
    }

.sp-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 900;
    border-radius: 7px;
    background: #ff3b3b;
    color: #fff;
    letter-spacing: .4px;
    box-shadow: 0 10px 18px rgba(0,0,0,.35);
}

.sp-meta {
    padding: 12px 12px 14px;
}

.sp-name {
    font-weight: 900;
    letter-spacing: .3px;
    margin-bottom: 8px;
}

.sp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.sp-provider {
    font-size: 11px;
    color: rgba(234,240,255,.60);
}

.sp-tags {
    display: flex;
    gap: 6px;
}

.tag {
    font-size: 10px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    color: rgba(234,240,255,.85);
}

    .tag.hot {
        border-color: rgba(242,194,79,.30);
        color: rgba(242,194,79,.95);
        background: rgba(242,194,79,.08);
    }

    .tag.new {
        border-color: rgba(93,124,255,.35);
        color: rgba(170,205,255,.95);
        background: rgba(93,124,255,.10);
    }

.sp-actions {
    display: flex;
    gap: 10px;
}

.sp-btn {
    flex: 1;
    height: 38px;
    display: grid;
    place-items: center;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.92);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .3px;
}

    .sp-btn:hover {
        background: rgba(255,255,255,.08);
    }

.sp-btn--play {
    border-color: rgba(93,124,255,.45);
    background: linear-gradient(90deg, rgba(47,91,255,.95), rgba(93,124,255,.95));
    box-shadow: 0 14px 30px rgba(47,91,255,.18);
}

    .sp-btn--play:hover {
        filter: brightness(1.05);
    }

/* pagination */
.sp-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 24px 0 10px;
}

.sp-pageBtn {
    width: 42px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.85);
    cursor: pointer;
}

    .sp-pageBtn:hover {
        background: rgba(255,255,255,.08);
    }

    .sp-pageBtn.is-active {
        border-color: rgba(93,124,255,.45);
        box-shadow: 0 0 0 3px rgba(93,124,255,.10) inset;
    }

@media (max-width:1200px) {
    .sp-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:900px) {
    .sp-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .sp-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .sp-thumb {
        height: 190px;
    }
}

/* =========================
   CASINO FILTER (SINGLE SOURCE OF TRUTH)
   Uses: .cf .cf-head .cf-row .cf-tabs .cf-tab .cf-search .cf-row2 .cf-pills .cf-pill .cf-dd
========================= */
.cf {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: radial-gradient(900px 380px at 50% 0%, rgba(93,124,255,.10), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    box-shadow: 0 18px 50px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.04);
    padding: 16px 16px 14px;
}

.cf-head {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    color: rgba(255,255,255,.65);
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* row 1: tabs + search */
.cf-row {
    display: grid;
    grid-template-columns: 1fr minmax(260px,360px);
    gap: 14px;
    align-items: center;
}

/* tabs rail */
.cf-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
}

/* tab buttons */
.cf-tab {
    appearance: none;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 900;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: .2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

    .cf-tab:hover {
        background: rgba(0,0,0,.26);
        border-color: rgba(255,255,255,.16);
    }

    .cf-tab.is-active {
        border-color: rgba(44,220,170,.45);
        background: linear-gradient(180deg, rgba(44,220,170,.18), rgba(0,0,0,.20));
        box-shadow: 0 0 0 2px rgba(44,220,170,.14);
        color: rgba(255,255,255,.96);
    }

/* search box (right) */
.cf-search {
    position: relative;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    display: flex;
    align-items: center;
    padding: 0 12px 0 38px;
    min-width: 0;
}

.cf-searchIco {
    position: absolute;
    left: 12px;
    opacity: .75;
    font-size: 14px;
}

.cf-searchInput {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: rgba(255,255,255,.92);
    font-size: 13px;
}

    .cf-searchInput::placeholder {
        color: rgba(255,255,255,.40);
    }

/* row 2: pills + dropdown */
.cf-row2 {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.cf-pill {
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

    .cf-pill:hover {
        background: rgba(0,0,0,.26);
        border-color: rgba(255,255,255,.16);
    }

    .cf-pill.is-active {
        border-color: rgba(44,220,170,.45);
        background: linear-gradient(180deg, rgba(44,220,170,.18), rgba(0,0,0,.18));
        box-shadow: 0 0 0 2px rgba(44,220,170,.14);
        color: rgba(255,255,255,.92);
    }

/* dropdown button */
.cf-dd {
    margin-left: auto;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

    .cf-dd:hover {
        background: rgba(0,0,0,.26);
        border-color: rgba(255,255,255,.16);
    }

.cf-ddArrow {
    opacity: .8;
}

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

    .cf-row2 {
        flex-direction: column;
        align-items: stretch;
    }

    .cf-dd {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   CASINO GRID (cg-*)
========================= */
.cgGrid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    padding-top: 8px;
}

.cgCard {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    box-shadow: 0 18px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
}

.cgThumb {
    position: relative;
    display: block;
    height: 160px;
    overflow: hidden;
    background: rgba(0,0,0,.22);
}

    .cgThumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        filter: saturate(1.06) contrast(1.03);
    }

.cgTag {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: .4px;
    color: #fff;
    background: #ff4d4d;
    box-shadow: 0 10px 18px rgba(0,0,0,.35);
}

.cgMeta {
    padding: 12px 12px 14px;
}

.cgName {
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(255,255,255,.92);
    margin-bottom: 6px;
}

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

.cgBtns {
    display: flex;
    gap: 10px;
}

.cgBtn {
    flex: 1;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.82);
    text-decoration: none;
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: .2px;
}

    .cgBtn:hover {
        background: rgba(0,0,0,.26);
        border-color: rgba(255,255,255,.16);
    }

.cgBtn--play {
    border-color: rgba(93,124,255,.25);
    background: linear-gradient(90deg, rgba(47,91,255,.95), rgba(93,124,255,.92));
    color: #fff;
}

    .cgBtn--play:hover {
        filter: brightness(1.05);
    }

@media (max-width:1100px) {
    .cgGrid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:900px) {
    .cgGrid {
        grid-template-columns: repeat(2,1fr);
    }
}

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

/* =========================
   Demo 7 cards helper (optional)
========================= */
.tg-grid--demo7 {
    grid-template-columns: repeat(5,1fr);
}

@media (max-width:1100px) {
    .tg-grid--demo7 {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (max-width:900px) {
    .tg-grid--demo7 {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:620px) {
    .tg-grid--demo7 {
        grid-template-columns: repeat(2,1fr);
    }
}

/* =========================
   PROVIDERS — FINAL OVERRIDE (paste at END of CSS)
   Fix: too much spacing between provider items
========================= */

.providers .prov2-slider {
    overflow: hidden !important;
}

.providers .prov2-grid {
    display: flex !important; /* kill old grid */
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 4px !important; /* real spacing between items */
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .providers .prov2-grid::-webkit-scrollbar {
        display: none;
    }

/* make each tile реально პატარა */
.providers .p2-item {
    display: grid !important;
    justify-items: center !important;
    flex: 0 0 76px !important; /* ⬅️ მთავარი */
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
    gap: 5px !important;
}

/* icon bigger יחסით, რომ ცარიელი სივრცე არ ჩანდეს */
.providers .p2-icon {
    width: 56px !important;
    height: 42px !important;
}

.providers .p2-name {
    max-width: 76px !important;
    font-size: 10px !important;
}

/* =========================
   PROVIDERS spacing FIX (paste at END)
========================= */

/* row */
.providers .prov2-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 8px !important; /* რეალური დაშორება */
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .providers .prov2-grid::-webkit-scrollbar {
        display: none;
    }

/* tile width (აქ ქრება “დიდი დაშორება”) */
.providers .p2-item {
    flex: 0 0 78px !important; /* იყო 110px */
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    gap: 6px !important;
}

/* icon fills tile width */
.providers .p2-icon {
    width: 100% !important; /* იყო 58px */
    height: 44px !important; /* same height */
    border-radius: 12px !important;
}

    /* make logos use full area nicely */
    .providers .p2-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        padding: 6px !important; /* ლამაზი ჩაჯდომა */
    }

/* name fits tile */
.providers .p2-name {
    max-width: 78px !important;
    font-size: 10px !important;
}
.providers .p2-icon {
    padding-top: 6px; /* badge-ის სივრცე */
}

.providers .p2-badge {
    top: 2px !important;
}

/* ===== Modal ===== */
.tp-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

    .tp-modal.is-open {
        display: block;
    }

.tp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
}

.tp-modal__panel {
    position: relative;
    width: min(520px, calc(100% - 28px));
    margin: 10vh auto;
    background: rgba(18, 18, 22, .92);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0,0,0,.55);
    padding: 18px 18px 16px;
}

.tp-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
}

.tp-modal__title {
    margin: 6px 44px 6px 0;
    font-size: 20px;
    letter-spacing: .2px;
}

.tp-modal__sub {
    margin: 0 0 14px;
    opacity: .8;
    font-size: 13px;
}

/* form */
.tp-form {
    display: grid;
    gap: 12px;
}

.tp-field span {
    display: block;
    font-size: 12px;
    opacity: .85;
    margin: 0 0 6px;
}

.tp-field input,
.tp-field select {
    width: 100%;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    padding: 0 12px;
    outline: none;
}

    .tp-field input:focus,
    .tp-field select:focus {
        border-color: rgba(42,167,255,.55);
        box-shadow: 0 0 0 3px rgba(42,167,255,.18);
    }

.tp-pass {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
    align-items: center;
}

.tp-pass__btn {
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
}

.tp-check {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    opacity: .9;
}

.tp-btn {
    height: 44px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
}

.tp-btn--primary {
    background: #2aa7ff;
    color: #071018;
    box-shadow: 0 0 14px rgba(42,167,255,.35);
}

.tp-form__hint {
    text-align: center;
    font-size: 12px;
    opacity: .85;
}

    .tp-form__hint a {
        color: #2aa7ff;
        text-decoration: none;
    }

        .tp-form__hint a:hover {
            text-decoration: underline;
        }

/* Home SVG icon */
.hdrHome {
    display: flex;
    align-items: center;
    padding: 0 6px;
    color: rgba(255,255,255,.75);
}

.hdrHomeSvg {
    display: block;
}

/* hover */
.hdrHome:hover {
    color: #ffffff;
}

/* active (index.html) */
.hdrHome.active {
    color: #2aa7ff;
    filter: drop-shadow(0 0 6px rgba(42,167,255,.55));
}

/* Example crash hero background (use your own image) */
.tp-hero__bg--crash {
    background: radial-gradient(900px 450px at 20% 20%, rgba(255,255,255,0.10), transparent 60%), url("assets/hero/crash-bg.jpg") center/cover no-repeat;
    filter: saturate(1.1) contrast(1.05);
}