:root {
    --page-bg: #ffffff;
    --text: #0b0f1a;
    --muted: #6b7280;
    --line: #e5e7eb;

    --pill: #f1f5f9;
    --shadow: 0 20px 60px rgba(15, 23, 42, .10);

    --tg: #1d74ff;
    --wa: #22c55e;

    --green-bg: #eafff0;
    --green-border: #b7f0c5;
    --orange-bg: #fff1e7;
    --orange-border: #ffd3b6;

    --radius: 22px;
    --radius-lg: 28px;
    --max: 1400px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--page-bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px 18px 0;
}

/* =========================
Header
========================= */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0 14px;
    max-width: 980px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1;
}

.chip {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #eef2f7;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    color: #111827;
    cursor: pointer;
}

.caret {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    margin-top: -2px;
}

.menu {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;

    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .10);

    padding: 8px;
    display: none;
    z-index: 999;
}

.dropdown.open .menu {
    display: block;
}

.menu a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: #111827;
}

.menu a:hover {
    background: #f1f5f9
}

.menu a.active {
    background: #eaf2ff;
    color: #0b3aa9
}

.header-actions {
    min-width: 180px;
    display: flex;
    justify-content: flex-end;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;
    border-radius: 999px;

    background: #22c55e;
    /* WhatsApp green */
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-whatsapp i {
    font-size: 16px;
    line-height: 1;
}

/* Hover like modern UI */
.btn-whatsapp:hover {
    background: #1faa55;
    box-shadow: 0 14px 30px rgba(34, 197, 94, 0.55);
    transform: translateY(-1px);
}


/* =========================
Hero
========================= */
.hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 420px;
    padding: 84px 164px 84px;
    background: #e9f3ff;
    /* fallback color */
}

/* Replace this with your hero background image */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("/assets/background.jpg") center/cover no-repeat;
    filter: none;
    z-index: 0;
}

.hero2 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 64px 164px 64px;
    background: #e9f3ff;
    /* fallback color */
}

/* Replace this with your hero background image */
.hero2::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("/assets/background.jpg") center/cover no-repeat;
    filter: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.0fr 1.0fr;
    gap: 22px;
    align-items: center;
}

.hero-left {
    padding-right: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #4f46e5;
    background: rgba(79, 70, 229, .10);
    border: 1px solid rgba(79, 70, 229, .14);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #0b1220;
}

.hero p {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 460px;
}

.cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .10);
}

.cta img {
    width: 18px;
    height: 18px;
    object-fit: contain
}

.cta.telegram {
    border-color: rgba(29, 116, 255, 0.25);
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    color: #ffffff;
}

.cta.whatsapp {
    border-color: rgba(34, 197, 94, 0.28);
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #ffffff;
}

/* Optional: hover effect (recommended) */
.cta.telegram:hover {
    background: rgba(29, 116, 255, 0.18);
}

.cta.whatsapp:hover {
    background: rgba(34, 197, 94, 0.20);
}

/* === Download cards layout (same behavior as .download-cards) === */
.downloads {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* MOBILE: horizontal scroll cards */
@media (max-width: 768px) {
    .downloads {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .downloads .dl-card {
        flex: 0 0 82%;
        max-width: 280px;
        scroll-snap-align: start;
    }

    .downloads::-webkit-scrollbar {
        height: 6px;
    }

    .downloads::-webkit-scrollbar-track {
        background: transparent;
    }

    .downloads::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.4);
        border-radius: 999px;
    }
}

/* === Card base (same as .download-card) === */
.dl-card {
    border-radius: 22px;
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;

    /* keep it looking “soft” on hero */
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(10px);
}

/* Light tinted backgrounds like your new design */
.dl-card.android {
    background-color: #e8f7ef;
}

.dl-card.ios {
    background-color: #fde8ea;
}


/* header text area */
.dl-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
}

.dl-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dl-meta {
    font-size: 13px;
    font-weight: 500;
    opacity: .85;
}

/* text colors per card */
.dl-card.android .dl-title {
    color: #1b8c4b;
}

.dl-card.android .dl-meta {
    color: #166c3a;
}

.dl-card.ios .dl-title {
    color: #c62828;
}

.dl-card.ios .dl-meta {
    color: #9a1e1e;
}

/* === Buttons (same as .download-btn) === */
.dl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;

    border: none;
    cursor: pointer;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.dl-btn span {
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.dl-btn i {
    font-size: 16px;
}

/* gradients + shadows per platform */
.dl-btn.android {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #ecfdf5;
    box-shadow: 0 12px 26px rgba(16, 185, 129, 0.45);
}

.dl-btn.ios {
    background: linear-gradient(90deg, #fb3d3d, #f97316);
    color: #fef2f2;
    box-shadow: 0 12px 26px rgba(220, 38, 38, 0.45);
}

/* hover */
.dl-btn.android:hover {
    background: linear-gradient(90deg, #34d87a, #1cc162);
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.50);
    transform: translateY(-2px);
}

.dl-btn.ios:hover {
    background: linear-gradient(90deg, #ff5656, #ff8a3c);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.50);
    transform: translateY(-2px);
}

/* Feature image area */
.hero-right {
    position: relative;
    min-height: 320px;
}

.feature-wrap {
    position: absolute;
    right: -10px;
    top: 12px;
    width: 460px;
    max-width: 100%;
    filter: drop-shadow(0 28px 40px rgba(15, 23, 42, .18));
}

.feature-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================
Content section
========================= */
.content {
    max-width: var(--max);
    margin: 0 auto; /* Remove top margin if you want them tighter */
    padding: 12px 20px; /* Reduced top/bottom padding significantly */
}

.content-card {
    border-radius: 14px;
    background: rgb(228, 227, 231);
    padding: 18px 18px;
    max-width: 980px;
    margin: 0 auto;
}

.content-image {
    display: block;
    margin: 0 auto 14px;
    /* center + space below */
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* optional, matches your card style */
}

.content-card h2 {
    margin: 0 0 10px;
    font-size: 22.5px;
    font-weight: 800;
}

.content-card p,
.content-card li {
    font-size: 15px; /* Increased from 12px (Standard Web Size) */
    line-height: 1.6; /* Keeps the text airy and readable */
    color: #374151;
    margin-bottom: 10px; /* Adds a little breathing room between items */
}

.content-card h3 {
    margin: 14px 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.content-card h4 {
    margin: 14px 0 8px;
    font-size: 17px;
    font-weight: 800;
    color: #111827;
}

.content-card a {
    color:#0ea5e9;
}

.img-small {
    /* Change percentage to make it bigger or smaller (e.g., 50%, 80%) */
    max-width: 45%; 
}

/* Table Wrapper for Mobile Scrolling */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Main Table Style */
.bonus-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px; /* Matches your readability update */
    color: #374151;
    min-width: 600px; /* Ensures table doesn't squish too much on mobile */
}

/* Header Styling */
.bonus-table thead th {
    background-color: #f3f4f6; /* Light gray background like the image */
    color: #111827;
    font-weight: 800;
    text-align: left;
    padding: 14px;
    border-bottom: 2px solid #e5e7eb;
}

/* Cell Styling */
.bonus-table td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    vertical-align: top;
    line-height: 1.5;
}

/* Remove right border from the last column */
.bonus-table td:last-child {
    border-right: none;
}

/* Remove bottom border from the last row */
.bonus-table tr:last-child td {
    border-bottom: none;
}

/* Optional: Zebra striping for readability */
.bonus-table tr:nth-child(even) {
    background-color: #fbfbfc;
}

/* =========================
Footer (same bg as hero)
========================= */
.footer-outer {
    position: relative;
    background: transparent;
    /* remove full black */
    padding-top: 80px;
    /* space for floating footer card */
}

.footer-outer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 50%;
    /* 🔥 only half height */
    background: #070914;
    /* black area */

    z-index: 0;
}

.footer-top,
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-top {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px 0;
}

.footer-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0 auto;
    transform: translateY(-66px);
    background: #e9f3ff;
    /* fallback */
}

.footer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/background.jpg") center/cover no-repeat;
    /* SAME as hero */
    z-index: 0;
}


.footer-inner {
    position: relative;
    z-index: 2;
    padding: 26px 26px 18px;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 10px 18px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.newsletter h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.newsletter p {
    margin: 6px 0 0;
    font-size: 11px;
    color: #6b7280;
}

.subbox {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 999px;
    padding: 8px 10px;
    min-width: 360px;
    backdrop-filter: blur(8px);
}

.subbox input {
    border: 0;
    outline: none;
    background: transparent;
    font-size: 12px;
    flex: 1;
}

.subbox button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
    font-size: 11px;
    background: #6366f1;
    color: #fff;
}

.footer-grid {
    display: grid;
    /* Left side takes 3 parts, Right side takes 1 part */
    grid-template-columns: 3fr 1fr; 
    
    gap: 18px;
    padding-top: 18px;
}

.f-brand .logo-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .18);
}

.f-brand p {
    margin: 0 0 12px;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.55;
    max-width: 260px;
}

.socials {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Social icon button */
.soc {
    width: 32px;
    height: 32px;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(15, 23, 42, .10);
    backdrop-filter: blur(8px);

    box-shadow: 0 10px 25px rgba(15, 23, 42, .10);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* Icon inside */
.soc i {
    font-size: 15px;
    color: #111827;
    line-height: 1;
}

/* Hover effect */
.soc:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
    background: rgba(255, 255, 255, .90);
}

/* Optional: brand coloring on hover */
.soc:hover .fa-telegram {
    color: #229ED9;
}

.soc:hover .fa-whatsapp {
    color: #22c55e;
}

.soc:hover .fa-envelope {
    color: #6366f1;
}


.col h5 {
    margin: 6px 0 10px;
    font-size: 13px; /* Increased from 11px */
    font-weight: 900;
    color: #111827;
}

.col a {
    display: block;
    font-size: 13px; /* Increased from 11px */
    color: #6b7280;
    padding: 6px 0;
}

.col a:hover {
    color: #111827
}

.footer-bottom {
    background: #070914;
    color: #cbd5e1;
    text-align: center;
    font-size: 11px;
    padding: 18px 12px;
    margin-top: -10px;
}

/* =========================
Responsive
========================= */
@media (max-width: 768px) {
    .hero {
        padding: 34px 22px
    }

    .hero2 {
        padding: 34px 22px
    }

    .hero-inner {
        grid-template-columns: 1fr;
        /* already stacked */
    }

    /* show image first */
    .hero-right {
        order: 1;
        min-height: auto;
    }

    /* text comes after */
    .hero-left {
        order: 2;
    }

    .feature-wrap {
        position: relative;
        right: auto;
        top: auto;
        margin-left: auto;
        width: auto;
    }

    .downloads {
        gap: 10px
    }

    .dl-card {
        width: 100%
    }

    .newsletter {
        flex-direction: column;
        align-items: flex-start
    }

    .subbox {
        min-width: 100%
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

/* Mobile menu base */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 9999;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(86vw, 340px);
    background: rgba(255, 255, 255, .92);
    border-left: 1px solid rgba(15, 23, 42, .10);
    box-shadow: -20px 0 60px rgba(15, 23, 42, .18);
    transform: translateX(100%);
    transition: transform .22s ease;
    padding: 14px;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 6px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    margin-bottom: 10px;
}

.mobile-menu-title {
    font-weight: 800;
    font-size: 14px;
    color: #0b1220;
}

.mobile-menu-close {
    border: 0;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #0b1220;
}

/* Links */
.mobile-link {
    display: block;
    padding: 12px 10px;
    border-radius: 12px;
    color: #0b1220;
    font-size: 13px;
    font-weight: 600;
}

.mobile-link:hover {
    background: rgba(15, 23, 42, .06);
}

/* Submenu */
.mobile-sub {
    margin-top: 6px;
}

.mobile-sub-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-radius: 12px;
    border: 0;
    background: rgba(15, 23, 42, .04);
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
}

.mobile-sub-caret {
    width: 10px;
    height: 10px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    margin-top: -2px;
}

.mobile-sub-list {
    display: none;
    padding-left: 6px;
}

.mobile-sub.open .mobile-sub-list {
    display: block;
}

/* CTA */
.mobile-cta {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 14px 30px rgba(34, 197, 94, .35);
}

/* Show hamburger & hide desktop nav on mobile */
@media (max-width: 768px) {

    .nav,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        cursor: pointer;
    }

    .hamburger img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }
}

/* =========================
   Mobile Header Layout
========================= */
@media (max-width: 768px) {

    .header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        /* empty | logo | hamburger */
        align-items: center;
        padding: 10px 14px;
    }

    /* hide desktop elements */
    .nav,
    .header-actions {
        display: none;
    }

    /* center logo */
    .brand {
        grid-column: 2;
        justify-self: center;
        margin: 0;
    }

    .brand img {
        height: 30px;
        display: block;
    }

    /* hamburger on right */
    .hamburger {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
    }

    .hamburger img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }
}

.support-section {
    max-width: var(--max);
    padding: 0 18px;
}

.support-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    /* NO background color (transparent) */
    background: #fff;

    /* keep your site styling */
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);

    backdrop-filter: blur(10px);
    padding: 16px 18px;
}

.support-left h3 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 800;
    color: #0b1220;
}

.support-left p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #6b7280;
    max-width: 520px;
}

.support-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
    align-items: flex-end;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 180px;
    padding: 10px 14px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;

    box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.support-btn i {
    font-size: 16px;
    line-height: 1;
}

.support-btn.wa {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.support-btn.tg {
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .22);
    filter: brightness(1.04);
}

/* Mobile */
@media (max-width: 768px) {
    .support-section {
        padding: 0px;
    }

    .support-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-right {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .support-btn {
        width: auto;
    }
}