 <style>
        /* --- GLOBAL STYLES --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #fcecec; /* Light background */
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }

        
        .mobile-container {
            width: 100%;
            max-width: 480px;
            background-color: #fff;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            position: relative;
            padding-bottom: 50px;
        }

        /* --- HEADER SECTION --- */
        header {
            background-color: #205c6b; /* Dark Teal matched from screenshot */
            color: white;
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #1a4b58;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-logo-container {
            background-color: red;
            border-radius: 20px;
            padding: 2px 8px;
            border: 2px solid gold;
            display: flex;
            align-items: center;
        }
        
        .header-logo-text {
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .site-title {
            font-size: 18px;
            font-weight: bold;
            color: white;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .telegram-btn {
            background-color: #0088cc;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            font-size: 18px;
        }

        .menu-toggle-btn {
            background: none;
            border: none;
            color: white;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

       
        #menu-grid {
            display: none; /* Hidden by default */
            background-color: #f9e8e8; /* Light pinkish bg */
            padding: 15px;
            border-bottom: 1px solid #ddd;
            
            /* Grid Layout for 6 buttons */
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }

        #menu-grid.show {
            display: grid;
        }

        .menu-item {
            background-color: #2b5d4f; /* Dark Green Button */
            color: white;
            text-decoration: none;
            padding: 10px 5px;
            border-radius: 6px;
            text-align: center;
            font-weight: bold;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .menu-item:hover {
            opacity: 0.9;
        }


        .hero-section {
            width: 100%;
            background-color: #550000; /* Fallback color */
        }

        .hero-img {
            width: 100%;
            display: block;
        }

        .list-title {
            background-color: #4a90e2; 
            color: white;
            text-align: center;
            padding: 12px;
            font-weight: bold;
            margin: 10px;
            border-radius: 8px 8px 0 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }


        .app-list {
            padding: 0 10px;
        }

        .app-card {
            background: white;
            display: flex;
            align-items: center;
            padding: 15px 10px;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .rank-badge {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            color: white;
            font-weight: bold;
            font-size: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
            box-shadow: 0 2px 2px rgba(0,0,0,0.2);
            flex-shrink: 0;
        }


        .rank-1 { background: #FFD700; color: #333; } 
        .rank-2 { background: #C0C0C0; color: #333; } 
        .rank-3 { background: #cd7f32; } 
        .rank-other { background: #aab; }

        .app-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            object-fit: cover;
            margin-right: 15px;
            border: 1px solid #ccc;
            flex-shrink: 0;
        }

        .app-info {
            flex-grow: 1;
        }

        .app-name {
            font-size: 16px;
            font-weight: bold;
            color: #222;
            margin-bottom: 5px;
        }

        .app-meta {
            font-size: 12px;
            color: #555;
            line-height: 1.5;
        }

        .green-text { color: #009900; font-weight: bold; }
        .blue-text { color: #0044cc; font-weight: bold; }

        .download-btn {
            background: linear-gradient(180deg, #b3392f 0%, #8a2018 100%); /* Red Gradient */
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 13px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
            white-space: nowrap;
        }


        footer {
            background-color: #5d6d56;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
            font-size: 12px;
        }

        .footer-social {
            margin: 10px 0;
        }
        
        .footer-social i {
            margin: 0 5px;
            font-size: 16px;
            cursor: pointer;
        }

    </style>