:root {
    --stroke: rgba(20, 30, 60, .12);
    --text: #0b1020;
    --muted: rgba(11, 16, 32, .6);
    --text-xs: 12px;
    --text-sm: 13px;
    --text-base: 14px;
    --text-md: 15px;
    --text-lg: 18px;
    --text-xl: 22px;
    --text-2xl: 26px;

    --line-tight: 1.25;
    --line-normal: 1.5;
    --line-relaxed: 1.7;

    --glassA: rgba(255, 255, 255, .55);
    --glassB: rgba(255, 255, 255, .35);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;

    background:
        /* top-right soft blue glow */
        radial-gradient(1200px 700px at 85% 15%,
            rgba(120, 190, 255, 0.45),
            transparent 60%),

        /* top-left purple glow */
        radial-gradient(1000px 650px at 15% 10%,
            rgba(160, 120, 255, 0.45),
            transparent 60%),

        /* bottom soft white lift */
        radial-gradient(900px 500px at 50% 85%,
            rgba(255, 255, 255, 0.65),
            transparent 60%),

        /* base gradient */
        linear-gradient(180deg,
            #7b6cff 0%,
            #8fa9ff 35%,
            #cfe9ff 65%,
            #f5f7ff 100%);

    color: var(--text);
    font-size: var(--text-base);
    /* 14px base */
    line-height: var(--line-normal);

    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

}

.wrap {
    max-width: 1180px;
    margin: auto;
    padding: 22px 16px 48px;
}

/* ---------------- HEADER ---------------- */
.site-header {
    position: sticky;
    top: 14px;
    z-index: 50;
}

.header-glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 14px;
    border-radius: 999px;

    /* glass effect */
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 42px;
    /* matches old logo size */
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .15));
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-pill {
    display: flex;
    gap: 6px;
}

.nav a {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: var(--text-sm);
    /* 13px */
    font-weight: 500;
    color: var(--muted);
}

.nav a.active {
    background: #0b1020;
    color: #fff;
}

.actions button {
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .8);
    font-size: var(--text-sm);
    /* 13px */
    font-weight: 700;
    cursor: pointer;
}

/* ===== Hamburger (hidden by default / desktop) ===== */
/* Hide hamburger on desktop */
.hamburger-btn {
    display: none;
}

/* --- HAMBURGER (Glassy, matches site) --- */
.hamburger-btn {
    height: 42px;
    width: 42px;
    border-radius: 14px;

    /* glass background like header / pills */
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 12px 28px rgba(20, 30, 60, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);

    display: none;
    /* mobile only */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* hamburger lines */
.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(11, 16, 32, 0.75);
}

/* Hover (soft, premium) */
.hamburger-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 16px 36px rgba(20, 30, 60, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}


/* Mobile only: show hamburger, hide desktop nav */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
}

/* ===== MOBILE SIDEBAR (Glassy) ===== */
.side-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;

    background: rgba(11, 16, 32, .28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.side-menu {
    position: absolute;
    top: 16px;
    right: 16px;
    width: min(360px, calc(100% - 32px));
    height: calc(100% - 32px);
    border-radius: 22px;

    /* glass look like your site */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.60), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 22px 70px rgba(20, 30, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);

    transform: translateX(18px);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease;

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* header row */
.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.side-menu-logo {
    height: 34px;
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .12));
}

.side-menu-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.45);
    color: rgba(11, 16, 32, .8);
    cursor: pointer;
    font-weight: 900;
    font-size: 16px;

    box-shadow: 0 12px 28px rgba(20, 30, 60, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* links */
.side-menu-links {
    padding: 10px 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: auto;
}

.side-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: rgba(11, 16, 32, .82);

    background: rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);

    transition: transform 140ms ease, border-color 140ms ease;
}

.side-link:hover {
    transform: translateX(1px);
    border-color: rgba(255, 255, 255, 0.60);
}

.side-link.active {
    background: rgba(11, 16, 32, .88);
    color: #fff;
    border-color: rgba(11, 16, 32, .88);
}

/* bottom action */
.side-menu-actions {
    padding: 12px 12px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.side-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    color: #fff;

    background: linear-gradient(90deg, #27a6ff, #1a6dff);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

/* open state */
.side-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.side-menu-overlay.open .side-menu {
    transform: translateX(0);
    opacity: 1;
}

/* only relevant on mobile */
@media (min-width: 769px) {
    .side-menu-overlay {
        display: none;
    }
}


/* spacer only used on mobile */
.header-spacer {
    display: none;
}

/* ===== MOBILE HEADER LAYOUT ===== */
@media (max-width:768px) {

    /* hide desktop elements */
    .nav,
    .actions {
        display: none;
    }

    /* header becomes 3-column grid */
    .header-glass {
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
        padding: 8px 10px;
    }

    .header-spacer {
        display: block;
        width: 44px;
        height: 44px;
    }

    /* logo perfectly centered */
    .brand {
        justify-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-img {
        height: 40px;
    }
}


/* ---------------- HERO ---------------- */

.hero {
    margin-top: 28px;
    padding: 20px;
    border-radius: 28px;
    /* glass effect */
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.hero-card {
    border-radius: 26px;
    padding: 34px 24px 34px;
}

.hero-inner {
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 200px;
    /* adjust if needed */
    width: 100%;
    height: auto;
    filter:
        drop-shadow(0 12px 28px rgba(0, 0, 0, .18));
}

/* Buttons */
.hero-actions {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    border-radius: 999px;
    font-size: var(--text-base);
    /* 14px */
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
    transition: .15s ease;
    border: none;
    background: inherit;
    cursor: pointer;
    font-family: inherit;
}

.pill:hover {
    transform: translateY(-2px);
}

.pill-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1) opacity(0.92);
}

.telegram {
    background: linear-gradient(90deg, #27a6ff, #1a6dff);
}

.whatsapp {
    background: linear-gradient(90deg, #27e38b, #00b86b);
}

/* Mobile */
@media(max-width:768px) {
    .nav {
        display: none;
    }

    .hero-logo img {
        max-width: 160px;
        /* adjust if needed */
    }

    .hero-actions {
        gap: 10px;
        /* tighter spacing */
        flex-wrap: wrap;
        /* optional: wrap if needed */
        margin-top: 10px;
    }

    .hero-actions .pill {
        padding: 8px 12px;
        /* smaller */
        font-size: 12px;
        border-radius: 999px;
        min-height: 36px;
    }

    .hero-actions .pill-icon {
        width: 16px;
        height: 16px;
    }

    .hero-card {
        padding: 0px;
    }
}

/* ===== Download (Glassy) ===== */
.download-glass {
    margin-top: 28px;
}

.download-shell {
    padding: 18px 18px 22px;
    border-radius: 28px;
    /* glass effect */
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* cards */
.dl-card {
    border-radius: 14px;
    padding: 18px 18px 14px;
    border: 1px solid rgba(20, 30, 60, .08);
    box-shadow: 0 10px 28px rgba(20, 30, 60, .08);
    background: rgba(255, 255, 255, .55);
}

.dl-android {
    background: rgba(175, 255, 220, .50);
}

.dl-ios {
    background: rgba(255, 205, 215, .52);
}

.dl-win {
    background: rgba(190, 220, 255, .56);
}

.dl-title {
    margin: 0 0 12px;
    font-size: var(--text-sm);
    /* 13px */
    font-weight: 800;
}

.dl-main-btn {
    width: 100%;
    border: 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: var(--text-sm);
    /* 13px */
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

.dl-android .dl-main-btn {
    background: #147f4d;
}

.dl-ios .dl-main-btn {
    background: #e23744;
}

.dl-win .dl-main-btn {
    background: #0f6bff;
}

.dl-mini {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.dl-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: var(--text-xs);
    /* 12px */
    font-weight: 700;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(20, 30, 60, .10);
    color: rgba(11, 16, 32, .9);
}

.dl-icon-btn {
    width: 32px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(20, 30, 60, .12);
    background: rgba(255, 255, 255, .78);
    cursor: pointer;
    display: grid;
    place-items: center;
    color: rgba(11, 16, 32, .9);
}

.dl-icon-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* mobile */
/* Mobile: horizontal scroll cards (like screenshot) */
@media (max-width: 900px) {
    .download-shell {
        overflow: hidden;
        /* keeps rounded shell clean */
    }

    .download-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;

        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;

        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        /* space for scrollbar */
    }

    .dl-card {
        flex: 0 0 86%;
        max-width: 86%;
        scroll-snap-align: start;
    }

    /* optional: nicer scrollbar */
    .download-grid::-webkit-scrollbar {
        height: 8px;
    }

    .download-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, .35);
        border-radius: 999px;
    }

    .download-grid::-webkit-scrollbar-thumb {
        background: rgba(11, 16, 32, .18);
        border-radius: 999px;
    }
}

/* Smaller phones: show more peek */
@media (max-width: 480px) {
    .dl-card {
        flex-basis: 88%;
        max-width: 88%;
    }
}

/* ===== Content section (glassy + dark like screenshot) ===== */
.content-glass {
    margin-top: 28px;
}

.content-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* big rounded dark glass card */
.content-card {
    position: relative;
    border-radius: 30px;
    padding: 26px 26px 24px;
    overflow: hidden;
    /* glass effect */
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

/* subtle glass highlight line */
.content-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(520px 220px at 18% 20%, rgba(60, 255, 210, .10), transparent 55%),
        radial-gradient(520px 220px at 85% 70%, rgba(90, 190, 255, .08), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 45%);
    pointer-events: none;
}

/* soft inner edge for depth */
.content-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .05);
    pointer-events: none;
}

/* typography */
.content-title {
    position: relative;
    margin: 0 0 12px;
    font-size: var(--text-lg);
    /* 18px */
    line-height: var(--line-tight);
    font-weight: 800;
}

.content-lead {
    position: relative;
    font-size: var(--text-base);
    /* 14px */
    line-height: var(--line-relaxed);
    font-weight: 500;
}

.content-body {
    position: relative;
    margin: 0 0 12px;
}

/* bullets like screenshot */
.content-list {
    position: relative;
    margin: 8px 0 14px 18px;
    padding: 0;
}

.content-body,
.content-list {
    font-size: var(--text-base);
    /* 14px */
    line-height: var(--line-relaxed);
}

.content-list li {
    margin: 2px 0;
}

/* responsive */
@media (max-width: 720px) {
    .content-card {
        padding: 20px 18px 18px;
        border-radius: 24px;
    }

    .content-title {
        font-size: 17px;
    }
}

/* === TESTIMONIAL SECTION (FULL - GLASSY STYLE, matches header-glass) === */
.testimonial-section {
    margin-top: 64px;
    text-align: center;
}

.testimonial-label {
    font-size: var(--text-xs);
    /* 12px */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.testimonial-heading {
    font-size: var(--text-xl);
    /* 22px */
    line-height: var(--line-tight);
    font-weight: 700;
    margin-bottom: 6px;
}

.testimonial-sub {
    font-size: var(--text-sm);
    /* 13px */
    line-height: var(--line-normal);
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 22px;
}

/* Wrapper */
.testimonial-carousel-wrapper {
    margin-top: 32px;
    justify-content: center;
}

/* Track: stacked cards, centered */
.testimonial-track {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    overflow: visible;
    /* keep left/right peeking */
    padding: 10px 0 0;
    height: 260px;
    /* JS can override */
}

/* Base card – GLASS */
.testimonial-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 860px;
    border-radius: 28px;
    padding: 26px 28px 22px;

    /* glass like header-glass */
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 18px 50px rgba(20, 30, 60, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);

    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    transition:
        opacity 220ms ease-out,
        transform 220ms ease-out,
        box-shadow 220ms ease-out,
        border-color 220ms ease-out;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    overflow: hidden;
}

/* subtle glass highlight tint (purple/blue) */
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(520px 240px at 18% 20%, rgba(155, 120, 255, .18), transparent 60%),
        radial-gradient(520px 240px at 85% 35%, rgba(120, 200, 255, .16), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 55%);
    pointer-events: none;
}

/* ensure content stays above highlight */
.testimonial-card>* {
    position: relative;
}

/* Center card */
.testimonial-card.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    border-color: rgba(255, 255, 255, 0.70);
    box-shadow:
        0 22px 70px rgba(20, 30, 60, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    z-index: 3;
    pointer-events: auto;
}

/* Side cards */
.testimonial-card.left,
.testimonial-card.right {
    opacity: 0.55;
    z-index: 2;
}

.testimonial-card.left {
    transform: translateX(calc(-50% - 200px)) scale(0.93);
}

.testimonial-card.right {
    transform: translateX(calc(-50% + 200px)) scale(0.93);
}

/* Inner content */
.testimonial-body {
    font-size: var(--text-md);
    /* 15px */
    line-height: var(--line-relaxed);
    color: rgba(11, 16, 32, .82);
    text-align: left;
    margin-bottom: 20px;
}


.testimonial-name {
    font-size: var(--text-base);
    /* 14px */
    font-weight: 600;
    color: rgba(11, 16, 32, .92);
}

.testimonial-role {
    font-size: var(--text-xs);
    /* 12px */
    color: rgba(11, 16, 32, .55);
}

.testimonial-rating {
    font-size: var(--text-sm);
    /* 13px */
    color: rgba(11, 16, 32, .65);
}

/* Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.control-btn {
    height: 40px;
    width: 40px;
    border-radius: 14px;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);

    border: 1px solid rgba(255, 255, 255, 0.45);
    color: rgba(11, 16, 32, .80);

    box-shadow:
        0 12px 28px rgba(20, 30, 60, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition:
        background 160ms ease-out,
        border-color 160ms ease-out,
        transform 160ms ease-out;
}

.control-btn i {
    font-size: 16px;
}

.control-btn:hover {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.65),
            rgba(255, 255, 255, 0.42));
    border-color: rgba(255, 255, 255, 0.70);
    transform: translateY(-1px);
}

/* Dots */
.control-dots-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(11, 16, 32, .22);
}

.control-dot.active {
    width: 10px;
    height: 10px;
    background: rgba(11, 16, 32, .55);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .testimonial-section {
        overflow: hidden;
        /* stop page stretching */
    }

    .testimonial-carousel-wrapper {
        overflow: hidden;
    }

    .testimonial-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow: hidden;
        width: 100%;
        transform: translateX(0);
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    /* on mobile, don't peek */
    .testimonial-card.left,
    .testimonial-card.right {
        transform: translateX(-50%) scale(1);
        opacity: 0;
    }
}

/* ===== FAQ (glassy, matches your site) ===== */
.faq-glass {
    margin-top: 48px;
}

.faq-inner {
    max-width: 980px;
    margin: 0 auto;
}

.faq-top {
    text-align: center;
    margin-bottom: 18px;
}

.faq-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: var(--text-sm, 13px);

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 28px rgba(20, 30, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);

    color: rgba(11, 16, 32, .85);
}

.faq-title {
    margin: 14px 0 8px;
    font-size: var(--text-xl, 22px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(11, 16, 32, .92);
}

.faq-sub {
    margin: 0 auto;
    max-width: 560px;
    font-size: var(--text-sm, 13px);
    line-height: 1.6;
    color: rgba(11, 16, 32, .62);
}

/* list */
.faq-list {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* each item is a glass card */
.faq-item {
    border-radius: 18px;
    overflow: hidden;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 18px 50px rgba(20, 30, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* question row */
.faq-q {
    list-style: none;
    cursor: pointer;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    font-weight: 700;
    font-size: var(--text-base, 14px);
    color: rgba(11, 16, 32, .88);
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .55);
    color: rgba(11, 16, 32, .70);

    transition: transform 180ms ease;
}

/* ===== Smooth open/close animation ===== */
.faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 260ms ease;
}

.faq-a {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 220ms ease, transform 220ms ease;

    padding: 18px;
    font-size: var(--text-base, 14px);
    line-height: 1.7;
    color: rgba(11, 16, 32, .72);
}

/* open state */
.faq-item[open] .faq-a-wrap {
    grid-template-rows: 1fr;
}

.faq-item[open] .faq-a {
    opacity: 1;
    transform: translateY(0);
}

/* open state: subtle tinted highlight (like the screenshot) */
.faq-item[open] {
    border-color: rgba(255, 255, 255, 0.70);
}

.faq-item[open] .faq-q {
    background:
        radial-gradient(520px 240px at 18% 20%, rgba(155, 120, 255, .14), transparent 60%),
        radial-gradient(520px 240px at 85% 35%, rgba(120, 200, 255, .12), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 60%);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

/* hover */
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.70);
}

/* mobile */
@media (max-width: 720px) {
    .faq-q {
        padding: 16px 14px;
    }

    .faq-a {
        padding: 14px;
    }
}

/* ===== HOKI METER (Consistent with current website glass system) ===== */
.hoki-meter-section {
    margin-top: 28px;
    color: var(--text);
}

.hoki-meter-container {
    margin: 0 auto;
    padding: 22px 18px 20px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;

    /* SAME glass as your header/hero/download */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 22px 70px rgba(20, 30, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hoki-meter-container::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(620px 260px at 18% 18%, rgba(155, 120, 255, .12), transparent 60%),
        radial-gradient(620px 260px at 85% 35%, rgba(120, 200, 255, .10), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 55%);
    pointer-events: none;
}

.hoki-meter-container>* {
    position: relative;
}

/* ===== Titles ===== */
.hoki-meter-title {
    margin: 0 0 8px;
    font-size: var(--text-xl, 22px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(11, 16, 32, .92);
}

.hoki-meter-intro {
    margin: 0 0 14px;
    font-size: var(--text-base, 14px);
    line-height: 1.6;
    color: var(--muted);
}

/* ===== Legend (same as pills vibe) ===== */
.hoki-meter-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 16px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .45);
    border: 1px solid var(--stroke);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);

    font-size: var(--text-sm, 13px);
    font-weight: 700;
    color: rgba(11, 16, 32, .72);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: block;
}

/* keep legend clean and soft (no overly neon) */
.legend-hot {
    background: linear-gradient(90deg, #ff7a2f, #ffca28);
}

.legend-medium {
    background: linear-gradient(90deg, #ffe082, #ffd54f);
}

.legend-low {
    background: linear-gradient(90deg, #9fb3c8, #d8e2ef);
}

/* ===== Table wrapper ===== */
.hoki-meter-table {
    border-radius: 18px;
    overflow: hidden;

    background: rgba(255, 255, 255, .40);
    border: 1px solid var(--stroke);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

.hoki-meter-header,
.hoki-meter-row {
    display: grid;
    grid-template-columns: 1.35fr 2.25fr 0.85fr;
    gap: 12px;
    padding: 12px 14px;
    align-items: center;
}

.hoki-meter-header {
    background: rgba(255, 255, 255, .55);
    border-bottom: 1px solid rgba(20, 30, 60, .08);
    font-size: var(--text-xs, 12px);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(11, 16, 32, .55);
}

.hoki-meter-rows {
    max-height: 360px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.hoki-meter-row {
    background: rgba(255, 255, 255, .22);
    border-bottom: 1px solid rgba(20, 30, 60, .06);
    transition: transform 140ms ease, background 140ms ease;
}

.hoki-meter-row:last-child {
    border-bottom: none;
}

.hoki-meter-row:hover {
    background: rgba(255, 255, 255, .34);
    transform: translateY(-1px);
}

/* ===== MOBILE: make Hoki Meter table scrollable ===== */
@media (max-width: 600px) {
    .hoki-meter-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        /* space for scrollbar */
    }

    /* force table wider than screen so it won't squeeze */
    .hoki-meter-table {
        min-width: 520px;
        /* tweak 480–680 depending on your layout */
    }

    /* keep row layout stable */
    .hoki-meter-header,
    .hoki-meter-row {
        grid-template-columns: 1.35fr 2.25fr 0.85fr;
    }

    /* optional scrollbar styling */
    .hoki-meter-scroll::-webkit-scrollbar {
        height: 8px;
    }

    .hoki-meter-scroll::-webkit-scrollbar-thumb {
        background: rgba(11, 16, 32, .18);
        border-radius: 999px;
    }
}


/* ===== Game column ===== */
.col-game {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;

    font-size: var(--text-base, 14px);
    font-weight: 700;
    color: rgba(11, 16, 32, .86);
}

.col-game span:nth-child(2) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-pill {
    font-size: var(--text-xs, 12px);
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .60);
    border: 1px solid rgba(20, 30, 60, .10);
    color: rgba(11, 16, 32, .70);
}

/* ===== Meter column ===== */
.col-meter {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hoki-hotness-label {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: var(--text-sm, 13px);
    font-weight: 700;
    color: rgba(11, 16, 32, .70);
}

/* Bar */
.hoki-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;

    background: rgba(11, 16, 32, .10);
    border: 1px solid rgba(20, 30, 60, .08);
}

.hoki-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;

    background: linear-gradient(90deg, #ff7a2f, #ffca28, #fff0a8);
    box-shadow: 0 10px 18px rgba(255, 193, 7, 0.18);

    transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Use dataset levels from JS (no inline styles needed) */
.hoki-bar-fill[data-level="medium"] {
    background: linear-gradient(90deg, #ffe082, #ffd54f);
    box-shadow: 0 10px 18px rgba(255, 213, 79, 0.14);
}

.hoki-bar-fill[data-level="low"] {
    background: linear-gradient(90deg, #a9bfd6, #d8e2ef);
    box-shadow: 0 10px 18px rgba(160, 190, 210, 0.12);
}

/* ===== Percent column ===== */
.col-percent {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;

    font-size: var(--text-base, 14px);
    font-weight: 800;
    color: rgba(11, 16, 32, .82);
}

.percent-label {
    font-size: var(--text-xs, 12px);
    font-weight: 700;
    color: rgba(11, 16, 32, .55);
}

/* Disclaimer */
.hoki-meter-disclaimer {
    margin: 14px 0 0;
    font-size: var(--text-sm, 13px);
    color: rgba(11, 16, 32, .55);
}

/* ===== MOBILE: show full game names ===== */
@media (max-width: 600px) {
    .col-game span:nth-child(2) {
        white-space: normal;
        /* allow wrap */
        overflow: visible;
        text-overflow: unset;
        max-width: none;
        line-height: 1.35;
    }

    /* give game column more space */
    .hoki-meter-header,
    .hoki-meter-row {
        grid-template-columns: 2.2fr 2.5fr 0.9fr;
    }
}


/* Optional section wrapper */
.kalendar-hoki-wrap {
    margin-top: 28px;
}

/* Base card (left calendar + right detail) */
.card {
    border-radius: 28px;
    padding: 20px 20px 18px;
    position: relative;
    overflow: hidden;

    background: linear-gradient(180deg, var(--glassA), var(--glassB));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);

    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: 0 22px 70px rgba(20, 30, 60, .16), inset 0 1px 0 rgba(255, 255, 255, .65);
    color: var(--text);
}

.card::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(620px 260px at 18% 18%, rgba(155, 120, 255, .12), transparent 60%),
        radial-gradient(620px 260px at 85% 35%, rgba(120, 200, 255, .10), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 55%);
    pointer-events: none;
}

.card>* {
    position: relative;
    z-index: 1;
}

/* Header row */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

/* Title */
.title-block h1 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(11, 16, 32, .92);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.title-pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .45);
    border: 1px solid var(--stroke);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);

    color: rgba(11, 16, 32, .70);
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.subtitle {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

/* Month nav */
.calendar-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;

    border-radius: 999px;
    background: rgba(255, 255, 255, .40);
    border: 1px solid var(--stroke);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
    flex-wrap: wrap;
    justify-content: center;
}

.month-label {
    font-size: 13px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(20, 30, 60, .08);
    color: rgba(11, 16, 32, .78);
    white-space: nowrap;
}

.nav-btn,
.today-btn {
    border: 0;
    outline: none;
    cursor: pointer;

    border-radius: 999px;
    padding: 8px 10px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(20, 30, 60, .10);
    color: rgba(11, 16, 32, .78);

    font-weight: 800;
    transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.nav-btn {
    width: 36px;
    height: 32px;
    display: grid;
    place-items: center;
    font-size: 16px;
    line-height: 1;
}

.nav-btn:hover,
.today-btn:hover {
    background: rgba(255, 255, 255, .68);
    border-color: rgba(20, 30, 60, .14);
    box-shadow: 0 12px 26px rgba(20, 30, 60, .10);
    transform: translateY(-1px);
}

.today-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
}

.today-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(155, 120, 255, .9), rgba(120, 200, 255, .9));
    box-shadow: 0 0 0 3px rgba(155, 120, 255, .18);
}

.today-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;

    background: linear-gradient(90deg, #22c55e, #16a34a);
    border: 1px solid rgba(20, 30, 60, .10);

    box-shadow:
        0 0 0 3px rgba(34, 197, 94, .16),
        0 10px 18px rgba(20, 30, 60, .10);

    flex: 0 0 auto;
}


/* Calendar wrapper */
.calendar-wrapper {
    margin-top: 6px;
}

/* Weekdays */
.weekday-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 6px 10px;

    border-bottom: 1px solid rgba(20, 30, 60, .10);
    color: rgba(11, 16, 32, .55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.weekday {
    text-align: center;
}

/* Days grid */
.days-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    padding-top: 10px;
}

/* Day cell */
.day-cell {
    position: relative;
    min-height: 74px;
    border-radius: 18px;
    padding: 8px 8px 7px;

    background: rgba(255, 255, 255, .40);
    border: 1px solid rgba(20, 30, 60, .10);
    box-shadow: 0 10px 28px rgba(20, 30, 60, .08), inset 0 1px 0 rgba(255, 255, 255, .55);

    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
    overflow: hidden;
}

.day-cell::before {
    content: "";
    position: absolute;
    inset: -60px;
    background:
        radial-gradient(420px 220px at 20% 20%, rgba(155, 120, 255, .10), transparent 60%),
        radial-gradient(420px 220px at 85% 35%, rgba(120, 200, 255, .10), transparent 60%);
    opacity: 0;
    transition: opacity 140ms ease;
    pointer-events: none;
}

.day-cell:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .52);
    border-color: rgba(20, 30, 60, .14);
    box-shadow: 0 14px 34px rgba(20, 30, 60, .12), inset 0 1px 0 rgba(255, 255, 255, .62);
}

.day-cell:hover::before {
    opacity: 1;
}

/* Empty slots */
.day-cell.empty {
    cursor: default;
    background: rgba(255, 255, 255, .22);
    border: 1px dashed rgba(20, 30, 60, .14);
    box-shadow: none;
}

.day-cell.empty:hover {
    transform: none;
    background: rgba(255, 255, 255, .22);
    border-color: rgba(20, 30, 60, .14);
}

/* Day header */
.day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.date-number {
    font-size: 14px;
    font-weight: 900;
    color: rgba(11, 16, 32, .88);
}

.today-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(155, 120, 255, .22);
    color: rgba(11, 16, 32, .72);

    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Hoki chip */
.hoki-chip {
    align-self: flex-start;
    margin-top: 6px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(20, 30, 60, .10);
    color: rgba(11, 16, 32, .72);

    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.hoki-chip span {
    opacity: .95;
}

/* Use levels with soft, consistent tint */
.hoki-chip.high {
    border-color: rgba(255, 193, 7, .22);
    background: rgba(255, 235, 180, .40);
}

.hoki-chip.medium {
    border-color: rgba(120, 200, 255, .22);
    background: rgba(185, 225, 255, .35);
}

.hoki-chip.low {
    border-color: rgba(160, 190, 210, .26);
    background: rgba(220, 232, 245, .32);
}

/* Score bar */
.score-bar {
    margin-top: 8px;
    height: 6px;
    border-radius: 999px;
    background: rgba(11, 16, 32, .10);
    border: 1px solid rgba(20, 30, 60, .08);
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(155, 120, 255, .85), rgba(120, 200, 255, .85));
}

/* mini meta */
.mini-meta {
    margin-top: 6px;
    font-size: 11px;
    color: rgba(11, 16, 32, .58);
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.mini-meta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Selected state */
.day-cell.selected {
    border-color: rgba(155, 120, 255, .30);
    box-shadow: 0 0 0 1px rgba(155, 120, 255, .20), 0 18px 40px rgba(20, 30, 60, .14);
    background: rgba(255, 255, 255, .58);
}

.day-cell.selected::before {
    opacity: 1;
}

/* ===== DETAIL PANEL (right) ===== */
.detail-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.detail-date-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(11, 16, 32, .55);
}

.detail-date-main {
    font-size: 15px;
    font-weight: 900;
    color: rgba(11, 16, 32, .88);
}

.detail-tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(20, 30, 60, .10);
    color: rgba(11, 16, 32, .70);

    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.detail-tag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.detail-tag-dot.high {
    background: linear-gradient(90deg, #ffb74d, #ffd54f);
}

.detail-tag-dot.medium {
    background: linear-gradient(90deg, #7ab8ff, #9ad7ff);
}

.detail-tag-dot.low {
    background: linear-gradient(90deg, #9fb3c8, #d8e2ef);
}

/* Score ring */
.score-ring-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

/* ===== Score Ring (mobile-safe) ===== */
.score-ring {
    --ring: 6px;
    /* ring thickness */
    --ring-bg: rgba(11, 16, 32, .14);
    --ring-fill: rgba(251, 191, 36, 1);

    width: 78px;
    aspect-ratio: 1 / 1;
    /* ✅ keeps perfect square on mobile */
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    /* ✅ prevent flex squish */
    transform: translateZ(0);
    /* ✅ helps mobile render */
}

/* draw the donut ring here (more reliable than border + background on mobile) */
.score-ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;

    background: conic-gradient(var(--ring-fill) var(--score-deg, 0deg),
            var(--ring-bg) 0);

    /* donut cut-out */
    -webkit-mask: radial-gradient(farthest-side,
            transparent calc(50% - var(--ring)),
            #000 calc(50% - var(--ring) + 1px));
    mask: radial-gradient(farthest-side,
            transparent calc(50% - var(--ring)),
            #000 calc(50% - var(--ring) + 1px));

    box-shadow: 0 0 30px rgba(251, 191, 36, .18);
}

/* inner circle */
.score-ring-inner {
    width: calc(100% - (var(--ring) * 2) - 6px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;

    background: rgba(255, 255, 255, .55);
    /* or your dark card bg if needed */
    border: 1px solid rgba(255, 255, 255, .45);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    /* stays above ::before */
}

/* small screens: slightly smaller */
@media (max-width: 400px) {
    .score-ring {
        width: 70px;
    }
}


.score-ring-inner {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .60);
    border: 1px solid rgba(20, 30, 60, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-ring-value {
    font-size: 16px;
    font-weight: 900;
    color: rgba(11, 16, 32, .88);
}

.score-headline {
    font-size: 13px;
    font-weight: 800;
    color: rgba(11, 16, 32, .82);
}

.score-caption {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(11, 16, 32, .58);
}

/* Pills row (warna + masa) */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.info-pill {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(20, 30, 60, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);

    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(11, 16, 32, .70);
    font-weight: 800;
}

.info-pill-label {
    opacity: .75;
    font-weight: 900;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(20, 30, 60, .12);
}

/* Section title + message */
.section-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(11, 16, 32, .55);
    margin: 6px 0 6px;
}

.message-box {
    border-radius: 18px;
    padding: 12px 12px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(20, 30, 60, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
    color: rgba(11, 16, 32, .72);
}

.message-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(11, 16, 32, .55);
    margin-bottom: 6px;
}

.message-text {
    font-size: 13px;
    line-height: 1.6;
}

/* Games list pills */
.games-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.games-list .game-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    padding: 10px 12px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(20, 30, 60, .10);
    color: rgba(11, 16, 32, .78);

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

.games-list .game-pill span:last-child {
    font-size: 12px;
    color: rgba(11, 16, 32, .55);
    font-weight: 800;
}

/* Legal note */
.legal-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(11, 16, 32, .55);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .calendar-nav {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .card {
        padding: 14px 12px 14px;
        border-radius: 22px;
    }

    .title-block h1 {
        font-size: 16px;
    }

    .subtitle {
        font-size: 12px;
    }

    .weekday-row {
        gap: 4px;
        padding: 8px 4px 10px;
    }

    .days-grid {
        gap: 6px;
    }

    .day-cell {
        min-height: 64px;
        padding: 6px 6px 6px;
        border-radius: 16px;
    }

    .mini-meta {
        font-size: 10px;
    }

    .score-ring-inner {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 400px) {
    .calendar-nav {
        gap: 6px;
        padding: 6px;
    }

    .nav-btn {
        width: 34px;
        height: 30px;
    }
}

/* ===== MOBILE: make calendar scrollable like a table ===== */
@media (max-width: 600px) {

    /* allow horizontal scroll inside the calendar */
    .calendar-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        /* space for scrollbar */
    }

    /* force the calendar grid to be wider than the screen */
    .weekday-row,
    .days-grid {
        min-width: 820px;
        /* adjust: 520–680 depending how big you want */
    }

    /* keep cells nice and readable */
    .days-grid {
        gap: 8px;
    }

    .day-cell {
        min-height: 90px;
        border-radius: 18px;
    }

    /* optional: show a subtle scrollbar style (works in some browsers) */
    .calendar-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .calendar-wrapper::-webkit-scrollbar-thumb {
        background: rgba(11, 16, 32, .18);
        border-radius: 999px;
    }
}

/* ===========================
   GAME LIST EXPLORER – GLASS (matches current website)
=========================== */
.game-explorer-section {
    margin-top: 28px;
    color: var(--text);
}

.game-explorer-container {
    margin: 0 auto;
    padding: 22px 18px 20px;
    border-radius: 28px;

    /* same glass system */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 22px 70px rgba(20, 30, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden;
}

.game-explorer-container::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(620px 260px at 18% 18%, rgba(155, 120, 255, .14), transparent 60%),
        radial-gradient(620px 260px at 85% 35%, rgba(120, 200, 255, .12), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .14), transparent 55%);
    pointer-events: none;
}

.game-explorer-container>* {
    position: relative;
}

/* ===========================
     HEADER
  =========================== */
.game-explorer-title {
    margin: 0 0 8px;
    font-size: var(--text-xl, 22px);
    font-weight: 850;
    letter-spacing: -0.02em;
    color: rgba(11, 16, 32, .92);
}

.game-explorer-subtitle {
    margin: 0;
    max-width: 720px;
    font-size: var(--text-base, 14px);
    line-height: 1.6;
    color: rgba(11, 16, 32, .62);
}

/* ===========================
     CONTROLS (Search + Filter)
  =========================== */
.game-explorer-controls {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
    justify-content: space-between;
}

.game-search-wrapper {
    flex: 1 1 260px;
}

.game-search-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);

    color: rgba(11, 16, 32, .86);
    font-size: var(--text-base, 14px);
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.game-search-input::placeholder {
    color: rgba(11, 16, 32, .45);
}

.game-search-input:focus {
    border-color: rgba(255, 255, 255, 0.70);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.70),
        0 18px 40px rgba(20, 30, 60, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.52);
}

.game-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.game-filter-btn {
    border-radius: 999px;
    padding: 10px 12px;
    font-size: var(--text-sm, 13px);
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.34);
    color: rgba(11, 16, 32, .78);

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.game-filter-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.44);
    border-color: rgba(255, 255, 255, 0.70);
}

.game-filter-btn.active {
    border-color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(520px 240px at 18% 20%, rgba(155, 120, 255, .14), transparent 60%),
        radial-gradient(520px 240px at 85% 35%, rgba(120, 200, 255, .12), transparent 60%),
        rgba(255, 255, 255, 0.44);
    color: rgba(11, 16, 32, .86);
}

/* ===========================
     META INFO
  =========================== */
.game-explorer-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-sm, 13px);
}

.game-count-label {
    font-weight: 700;
    color: rgba(11, 16, 32, .78);
}

.game-hint-label {
    color: rgba(11, 16, 32, .55);
}

/* ===========================
     CARDS GRID
  =========================== */
.game-cards-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.game-card {
    border-radius: 18px;
    padding: 14px 14px 14px;

    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 18px 50px rgba(20, 30, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);

    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 110px;
    justify-content: space-between;

    transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.game-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 22px 62px rgba(20, 30, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

.game-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.game-name {
    font-size: var(--text-base, 14px);
    font-weight: 850;
    color: rgba(11, 16, 32, .90);
    line-height: 1.25;
}

.game-type-pill {
    font-size: var(--text-xs, 12px);
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.10em;

    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: rgba(11, 16, 32, .70);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* tags */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.game-tag {
    font-size: var(--text-xs, 12px);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 750;

    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.50);
    color: rgba(11, 16, 32, .70);

    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.game-tag--lucky {
    background: rgba(120, 230, 170, 0.18);
    border-color: rgba(120, 230, 170, 0.35);
}

.game-tag--hot {
    background: rgba(255, 122, 47, 0.16);
    border-color: rgba(255, 122, 47, 0.35);
}

.game-tag--popular {
    background: rgba(120, 200, 255, 0.16);
    border-color: rgba(120, 200, 255, 0.35);
}

.game-card-footer {
    font-size: var(--text-sm, 13px);
    line-height: 1.55;
    color: rgba(11, 16, 32, .62);
}

/* ===========================
     SHOW MORE BTN
  =========================== */
.game-explorer-actions {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.show-more-btn {
    border-radius: 999px;
    padding: 12px 16px;
    font-size: var(--text-sm, 13px);
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.40);
    color: rgba(11, 16, 32, .82);

    box-shadow: 0 18px 44px rgba(20, 30, 60, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.show-more-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.48);
    border-color: rgba(255, 255, 255, 0.75);
}

/* disclaimer */
.game-explorer-disclaimer {
    margin-top: 14px;
    font-size: var(--text-sm, 13px);
    color: rgba(11, 16, 32, .55);
}

/* ===========================
     RESPONSIVE
  =========================== */
@media (max-width: 768px) {
    .game-cards-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .game-filter-wrapper {
        justify-content: flex-start;
    }
}

/* ===== FOOTER (glassy like current site, layout like screenshot) ===== */
.footer-glass {
    margin-top: 56px;
    padding: 18px 0 48px;
}

.footer-shell {
    max-width: 1180px;
    margin: 0 auto;
}

/* main rounded panel */
.footer-grid {
    position: relative;
    border-radius: 26px;
    padding: 32px 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 26px;
    align-items: start;

    /* glass (same language as header/hero) */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 22px 70px rgba(20, 30, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

/* subtle footer glow like screenshot */
.footer-grid::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(620px 260px at 18% 18%, rgba(155, 120, 255, .14), transparent 60%),
        radial-gradient(620px 260px at 85% 35%, rgba(120, 200, 255, .12), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .14), transparent 55%);
    pointer-events: none;
}

.footer-grid>* {
    position: relative;
}

/* left brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 14px 30px rgba(20, 30, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .12));
}

.footer-tagline {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: rgba(11, 16, 32, .92);
}

.footer-copy {
    margin: 54px 0 0;
    font-size: 13px;
    color: rgba(11, 16, 32, .55);
}

/* columns */
.footer-title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(11, 16, 32, .86);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    text-decoration: none;
    font-size: 13px;
    color: rgba(11, 16, 32, .62);
    width: fit-content;
    transition: transform 140ms ease, color 140ms ease;
}

.footer-link:hover {
    color: rgba(11, 16, 32, .86);
    transform: translateX(1px);
}

/* socials */
.footer-right {
    justify-self: end;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    text-decoration: none;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 30px rgba(20, 30, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);

    transition: transform 140ms ease, border-color 140ms ease;
}

.footer-social-btn i {
    font-size: 16px;
    filter: brightness(0) invert(0) opacity(0.78);

}

.footer-social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.70);
}

/* top button */
.footer-top-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    cursor: pointer;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 30px rgba(20, 30, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);

    color: rgba(11, 16, 32, .80);
    font-weight: 900;
    font-size: 16px;

    transition: transform 140ms ease, border-color 140ms ease;
}

.footer-top-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.70);
}

/* responsive */
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .footer-right {
        justify-self: start;
    }

    .footer-copy {
        margin-top: 0px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 26px 18px;
    }

    .footer-top-btn {
        top: 14px;
        right: 14px;
    }
}