:root {
    --bg-top: #9fb6ff;
    --bg-mid1: #b9a9ff;
    --bg-mid2: #e0a6ff;
    --bg-bottom: #ffd7a8;
    --card: #ffffff;
    --shadow: 0 18px 40px rgba(34, 40, 80, .18);
    --radius: 8px;

    --btnGreen: #20b764;
    --btnBlue: #1da0da;

    --muted: #6b7280;
    --text: #0f172a;

    --softBorder: rgba(15, 23, 42, .08);
    --pill: #f2f2f2;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg,
            var(--bg-top) 0%,
            var(--bg-mid1) 30%,
            var(--bg-mid2) 60%,
            var(--bg-bottom) 100%);
    min-height: 100vh;
}

.page {
    width: min(580px, 94vw);
    margin: 22px auto 34px;
}

/* ===== HERO CARD ===== */
.hero-card {
    position: relative;
    background: var(--card);
    border-radius: 4px;
    box-shadow: var(--shadow);
    padding: 16px 16px 18px;
    overflow: hidden;
}

/* top-left MENU button */
/* RGB cycling animation */
@keyframes rgbCycle {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes rgbText {
    0% {
        color: #ff004c;
    }

    16% {
        color: #ff7a00;
    }

    33% {
        color: #ffe600;
    }

    50% {
        color: #00ff6a;
    }

    66% {
        color: #00c8ff;
    }

    83% {
        color: #8a2be2;
    }

    100% {
        color: #ff004c;
    }
}

/* Apply to the MENU button */
.menu-btn {
    position: absolute;
    top: 12px;
    /* slightly more breathing room */
    left: 12px;

    display: flex;
    align-items: center;
    gap: 14px;
    /* ⬆ space between hamburger & text */

    padding: 10px 18px;
    /* ⬆ bigger pill */

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;

    font-weight: 800;
    font-size: 16px;
    /* ⬆ text size */
    letter-spacing: .4px;

    cursor: pointer;
    user-select: none;

    animation: rgbText 0.45s linear infinite;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    text-shadow: 0 0 6px rgba(255, 255, 255, .35);
}

/* Bigger hamburger */
.hamburger {
    width: 24px;
    /* ⬆ */
    height: 16px;
    display: grid;
    gap: 4px;
}

.hamburger span {
    height: 3px;
    /* ⬆ bar thickness */
    border-radius: 3px;
    background: currentColor;
    box-shadow: 0 0 6px rgba(255, 255, 255, .35);
    animation: rgbText 0.45s linear infinite;
}

.hero-image-wrap {
    margin-top: 26px;
    /* leave space for MENU */
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: 0 10px 20px rgba(10, 20, 60, .20) inset;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.cta-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 8px 0;
}

.cta {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .10);
}

/* 🔁 replace svg rule with image rule */
.cta img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

/* Optional: force white icons if PNG is dark */
.cta img {
    filter: brightness(0) invert(1);
}

.cta.whatsapp {
    background: var(--btnGreen);
}

.cta.telegram {
    background: var(--btnBlue);
}

/* ===== Drawer Overlay ===== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 9998;
}

/* ===== Drawer Panel ===== */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 320px;
    /* drawer width like screenshot */
    max-width: 86vw;
    background: #1d2b2e;
    /* dark teal background */
    transform: translateX(-110%);
    transition: transform .22s ease;
    z-index: 9999;
    box-shadow: 6px 0 22px rgba(0, 0, 0, .25);
    overflow: hidden;
}

/* Header */
.drawer-header {
    height: 68px;
    background: #7d0a7c;
    /* purple bar */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-title {
    color: #fff;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: .2px;
    line-height: 1;
}

/* Close X (top-left) */
.drawer-close {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

/* Menu list */
.drawer-nav {
    padding: 0;
    margin: 0;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    color: #e8f0f2;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
}

.drawer-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .25);
}

/* Active row (blue highlight like screenshot) */
.drawer-item.is-active {
    background: #6ea4ff;
    color: #ffffff;
}

/* ===== Open State ===== */
.drawer-open .drawer {
    transform: translateX(0);
}

.drawer-open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Optional: prevent body scroll when open */
.drawer-open {
    overflow: hidden;
}

/* ===== Download Cards Section (exact style like screenshot) ===== */
.dl-cards {
    margin-top: 18px;
    display: grid;
    gap: 18px;
}

/* white rounded container */
.dl-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px 18px 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

/* top row (icon + title + meta) */
.dl-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* left group */
.dl-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* icon block */
.dl-os-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 8px;
}

/* title */
.dl-name {
    font-weight: 800;
    font-size: 18px;
    color: #111;
    letter-spacing: .2px;
}

/* right meta text */
.dl-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    color: #4b5563;
    font-weight: 600;
    font-size: 16px;
}

.dl-meta strong {
    color: #374151;
}

/* big pill button */
.dl-big-btn {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .4px;
    color: #fff;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
}

/* button colors like screenshot */
.dl-big-btn.is-android {
    background: #43b400;
}

.dl-big-btn.is-ios {
    background: #083f7c;
}

/* responsive: stack meta below title */
@media (max-width: 560px) {
    .dl-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .dl-meta {
        justify-content: flex-start;
        gap: 12px 18px;
        font-size: 14px;
    }

    .dl-name {
        font-size: 20px;
    }
}


/* ===== CONTENT SECTION ===== */
.content-card {
    margin-top: 18px;
    background: var(--card);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 16px 16px 18px;
}

.content-card h1 {
    margin: 4px 0 10px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.content-card h2 {
    margin: 15px 0 6px;
    font-size: 15px;
    font-weight: 900;
}

.content-card h3 {
    margin: 13px 0 6px;
    font-size: 13px;
    font-weight: 900;
}

.content-card h4 {
    margin: 12px 0 6px;
    font-size: 12.5px;
    font-weight: 900;
}

.content-card p {
    margin: 0 0 10px;
    color: #111827;
    opacity: .92;
    font-size: 12px;
    line-height: 1.6;
}

.content-card li {
    margin: 10px;
    color: #000000;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

/* Pulls text to the left to match the parent container's alignment */
.list-break-text {
    margin-left: -2.5rem; /* Using rem is more responsive than px */
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: normal; /* Adjust if you want it bold */
}

/* Optional: Ensures it doesn't clip off-screen on very small phones */
@media (max-width: 480px) {
    .list-break-text {
        margin-left: -1.5rem; 
    }
}

/* small screens */
@media (max-width: 420px) {
    .cta-row {
        gap: 12px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .download-row {
        gap: 10px;
    }

    .content-card p {
        text-align: left;
    }
}

/* ===== FAQ (matches screenshot layout, fits current site) ===== */
.faq-section {
    margin-top: 18px;
}

.faq-title {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: .2px;
    color: #0b1220;
}

.faq-wrap {
    display: grid;
    gap: 12px;
}

/* card shell */
.faq-item {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

/* remove default marker */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary {
    list-style: none;
}

/* question bar */
.faq-q {
    cursor: pointer;
    user-select: none;
    padding: 16px 18px;
    background: #4f74ff;
    /* blue like screenshot */
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* arrow icon */
.faq-icon {
    font-size: 22px;
    font-weight: 900;
    opacity: .95;
}

/* answer panel */
.faq-a {
    padding: 14px 18px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #0f172a;
    background: #ffffff;
}

/* Smooth open/close feel */
.faq-item[open] .faq-q {
    filter: brightness(1.02);
}

/* Make it fit your mobile layout */
@media (max-width: 560px) {
    .faq-title {
        font-size: 22px;
    }

    .faq-q {
        font-size: 16px;
        padding: 14px 14px;
    }

    .faq-a {
        font-size: 16px;
        padding: 12px 14px 14px;
    }

    .faq-section {
        padding: 16px 8px 20px;
    }
}


.footer-only {
    display: inline-block;
    margin: 24px auto 30px;
    padding: 6px 14px;

    background: #ffffff;
    color: #111;

    font-size: 11px;
    font-weight: 500;

    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}