
*{
scroll-behavior: smooth;
text-decoration: none;
list-style: none;
}
a{
color:inherit;}
        :root {
            --google-blue: #1a73e8;
            --google-green: #00875f;
            --surface: #ffffff;
            --bg: #f8f9fa;
            --text-main: #202124;
            --text-sub: #5f6368;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }

        * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

        body {
            font-family: 'Google Sans', sans-serif;
            background-color: var(--bg);
            color: var(--text-main);
            margin: 0;
            overflow-x: hidden;
        }

        /* --- Header & Search --- */
        header {
            position: fixed;
            top: 0; width: 100%; height: 64px;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px);
            display: flex; align-items: center;
            padding: 0 16px; z-index: 100;
            border-bottom: 1px solid #e0e0e0;
        }

        .menu-btn { margin-right: 16px; cursor: pointer; color: var(--text-sub); }

        .search-box {
            flex: 1;
            background: #f1f3f4;
            height: 48px;
            border-radius: 8px;
            display: flex; align-items: center;
            padding: 0 12px;
            transition: var(--transition);
        }

        .search-box:focus-within {
            background: #fff;
            box-shadow: var(--shadow);
        }

        .search-box input {
            border: none; background: transparent;
            outline: none; width: 100%; margin-left: 10px;
            font-size: 16px; font-family: inherit;
        }

        /* --- Sidebar Navigation --- */
        .sidebar {
            position: fixed;
            left: -280px; top: 0; height: 100%;
            width: 280px; background: white;
            z-index: 1001; transition: var(--transition);
            box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        }

        .sidebar.active { left: 0; }

        .sidebar-header { padding: 20px; color: var(--google-blue); font-weight: 700; font-size: 20px; }

        .sidebar nav a {
            display: flex; align-items: center;
            padding: 14px 24px; text-decoration: none;
            color: var(--text-sub); font-weight: 500;
            transition: 0.2s;
        }

        .sidebar nav a:hover { background: #f1f3f4; }
        .sidebar nav a.active { color: var(--google-blue); background: #e8f0fe; border-radius: 0 25px 25px 0; }
        .sidebar nav a span { margin-right: 20px; }

        /* --- Main Grid --- */
        .container { padding: 84px 16px 20px; max-width: 1200px; margin: 0 auto; }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            gap: 20px;
        }

        @media (min-width: 600px) {
            .app-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
        }

        .app-card {
            cursor: pointer;
            transition: var(--transition);
            text-align: left;
        }

        .app-card:active { transform: scale(0.95); }

        .app-card img {
            width: 100%; aspect-ratio: 1/1;
            border-radius: 20%; object-fit: cover;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 8px;
        }

        .app-title { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .app-meta { font-size: 11px; color: var(--text-sub); }

        /* --- App Details Modal --- */
        .modal {
            position: fixed; inset: 0; background: #fff;
            z-index: 2000; transform: translateY(100%);
            transition: var(--transition);
            overflow-y: auto;
        }

        .modal.active { transform: translateY(0); }

        .modal-nav {
            position: sticky; top: 0; background: #fff;
            padding: 16px; display: flex; justify-content: space-between; z-index: 10;
        }

        .modal-content { padding: 0 20px 40px; }

        .modal-hero { display: flex; gap: 20px; margin-bottom: 24px; }
        .modal-hero img { width: 88px; height: 88px; border-radius: 18px; box-shadow: var(--shadow); }
        .modal-hero h2 { margin: 0; font-size: 22px; }
        .dev-link { color: var(--google-green); font-weight: 500; font-size: 14px; margin: 4px 0; }

        .install-btn {
            width: 100%; background: var(--google-green);
            color: white; border: none; padding: 12px;
            border-radius: 8px; font-weight: 600; font-size: 16px;
            margin-bottom: 24px; cursor: pointer;
        }

        /* Screenshot Scroller */
        .screenshot-container {
            display: flex; gap: 12px; overflow-x: auto;
            margin: 0 -20px 24px; padding: 0 20px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        .screenshot-container::-webkit-scrollbar { display: none; }
        .screenshot-container img {
            height: 200px; border-radius: 12px;
            scroll-snap-align: start; border: 1px solid #eee;
        }

        .desc-text { line-height: 1.6; color: var(--text-sub); font-size: 14px; }

        .overlay {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,0.5); z-index: 1000;
        }
        .overlay.active { display: block; }

        /* Animations */
        @keyframes rotate { from {transform: rotate(0deg);} to {transform: rotate(360deg);} }
        .loading-icon { animation: rotate 1s linear infinite; }
/* --- Root Variables for consistent branding --- */
:root {
    --f-bg: #ffffff;
    --f-accent: #1a73e8; /* Google Blue */
    --f-success: #00875f; /* Play Store Green */
    --f-text-main: #202124;
    --f-text-muted: #5f6368;
    --f-glass: rgba(255, 255, 255, 0.8);
    --f-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    --f-radius: 16px;
    --f-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-footer {
color: white;
    background: var(--f-bg);
    padding: 80px 24px 30px;
    margin-top: 100px;
    border-top: 1px solid #eef0f2;
    font-family: 'Google Sans', sans-serif;
background: #100720;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

/* --- Brand Section --- */
.f-brand h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-brand h2 span {
    color: var(--f-accent);
}

.f-tagline {
    color: var(--f-text-muted);
    line-height: 1.6;
    font-size: 15px;
    max-width: 320px;
}

/* --- Contact & Info Headlines --- */
.f-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    color: var(--f-text-main);
}

/* --- Interactive Contact Links --- */
.f-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--f-text-muted);
    transition: var(--f-transition);
}

.f-contact-item:hover {
    color: var(--f-accent);
    transform: translateX(5px);
}

.f-icon-box {
    width: 40px;
    height: 40px;
    background: #f1f3f4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--f-accent);
    font-size: 20px;
}

/* --- The Developer "Floating Card" --- */
.f-dev-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 24px;
    border-radius: var(--f-radius);
    border: 1px solid #e8f0fe;
    box-shadow: var(--f-shadow);
    position: relative;
    overflow: hidden;
}

.f-dev-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--f-accent);
    opacity: 0.05;
    border-radius: 50%;
}

.f-dev-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--f-success);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.f-dev-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--f-text-main);
    display: block;
}

.f-dev-email {
    font-size: 14px;
    color: var(--f-text-muted);
    margin: 4px 0 16px;
    display: block;
}

.f-badge-group {
    display: flex;
    gap: 8px;
}

.f-badge {
    background: #fff;
    border: 1px solid #dadce0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--f-text-muted);
}

/* --- Bottom Copyright --- */
.f-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f1f3f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--f-text-muted);
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .f-brand, .f-info, .f-dev {
        text-align: center;
    }

    .f-contact-item {
        justify-content: center;
    }

    .f-badge-group {
        justify-content: center;
    }

    .f-tagline {
        margin: 0 auto;
    }
}

/* --- Lightbox Styles --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000; /* Higher than the modal */
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active img {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Promo Video Section --- */
.promo-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.video-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the box without stretching */
}

/* Play Store Style Gradient Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
}

/* Floating Info Box */
.promo-content {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    z-index: 2;
    color: white;
}

.promo-label {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-title {
    font-size: 32px;
    margin: 16px 0 8px;
    font-weight: 700;
}

.promo-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.5;
}

.promo-btn {
    background: #ffffff;
    color: #202124;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.promo-btn:hover {
    background: #f1f3f4;
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .video-card { height: 500px; }
    .video-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    }
    .promo-content {
        left: 20px;
        right: 20px;
        bottom: 30px;
        top: auto;
        transform: none;
        text-align: center;
    }
}
.note{
padding: 1rem;
color: red;
}

