:root {
            --bg: #000000;
            --surface: #121212;
            --accent: #00f2ea;
            --accent-glow: rgba(0, 242, 234, 0.4);
            --text-main: #ffffff;
            --text-dim: #999999;
            --glass: rgba(25, 25, 25, 0.7);
            --card-radius: 28px;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg);
            color: var(--text-main);
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            padding-bottom: 100px; /* Space for Bottom Nav */
        }

        /* --- Custom Scrollbar --- */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* --- Glass Header --- */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
        }

        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--accent), #70ffaf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .search-bar {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 10px 20px;
            color: white;
            width: 250px;
            transition: var(--transition);
        }

        .search-bar:focus {
            outline: none;
            width: 300px;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.12);
        }

        /* --- Header Navigation & Actions --- */
        .main-nav { margin-left: 2rem; }
        .nav-list { list-style: none; display: flex; gap: 1.25rem; align-items: center; }
        .nav-list li { display: inline-flex; }
        .nav-link { color: var(--text-dim); text-decoration: none; font-weight: 600; padding: 8px 10px; border-radius: 8px; transition: var(--transition); }
        .nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(255,255,255,0.02); }

        .actions { display: flex; gap: 0.6rem; align-items: center; margin-left: 1rem; }
        .btn { padding: 8px 16px; border-radius: 999px; font-weight: 700; text-decoration: none; display: inline-block; }
        .btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.06); color: var(--text-main); }
        .btn.primary { background: var(--accent); color: black; box-shadow: 0 6px 18px -6px var(--accent-glow); }

        .menu-btn { display: none; background: transparent; border: none; padding: 6px; margin-left: 8px; cursor: pointer; }
        .menu-btn .hamburger { width: 22px; height: 2px; background: var(--text-main); display: block; position: relative; transition: 0.25s; }
        .menu-btn .hamburger::before, .menu-btn .hamburger::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text-main); transition: 0.25s; }
        .menu-btn .hamburger::before { top: -7px; }
        .menu-btn .hamburger::after { top: 7px; }
        .menu-btn.open .hamburger { background: transparent; }
        .menu-btn.open .hamburger::before { transform: translateY(7px) rotate(45deg); }
        .menu-btn.open .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu { position: absolute; top: 100%; left: 0; right: 0; background: linear-gradient(180deg, rgba(20,20,20,0.96), rgba(12,12,12,0.96)); border-top: 1px solid rgba(255,255,255,0.04); padding: 1rem 0; z-index: 900; }
        .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; padding: 0 1.25rem; }
        .mobile-menu a { color: var(--text-main); text-decoration: none; padding: 12px 10px; display: block; border-radius: 8px; }
        .mobile-menu a:hover { background: rgba(255,255,255,0.03); color: var(--accent); }

        /* --- Responsive --- */
        @media (max-width: 900px) {
            .featured-card { flex-direction: column; padding: 1.5rem; text-align: center; }
            .featured-img { width: 100%; }
            .hero-title { font-size: 2.2rem; }
            .search-bar { display: none; }
            .main-nav { display: none; }
            .actions { display: none; }
            .menu-btn { display: inline-flex; }
        }

        /* --- Hero Aurora Section --- */
        .hero {
            padding: 4rem 0;
            position: relative;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: var(--accent-glow);
            filter: blur(120px);
            border-radius: 50%;
            z-index: -1;
        }

        .featured-card {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border-radius: var(--card-radius);
            padding: 3rem;
            display: flex;
            align-items: center;
            gap: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
        }

        .featured-img {
            width: 400px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            transition: var(--transition);
        }

        .featured-card:hover .featured-img {
            transform: scale(1.02) rotate(-1deg);
        }

        .tag {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        /* --- App Grid --- */
        .section-title {
            font-size: 1.8rem;
            margin: 3rem 0 1.5rem;
            font-weight: 700;
        }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--surface);
            border-radius: var(--card-radius);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-10px);
            background: #1a1a1a;
            border-color: rgba(0, 242, 234, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .card-img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 5px; }
        .card-desc { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 15px; height: 40px; }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-badge { font-weight: 700; color: var(--text-main); }
        
        .get-btn {
            background: var(--accent);
            color: black;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 800;
            cursor: pointer;
            transition: var(--transition);
        }

        .get-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px var(--accent-glow);
        }

        /* --- Bottom Nav --- */
        .bottom-nav {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 30px;
            border-radius: 40px;
            display: flex;
            gap: 40px;
            z-index: 2000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .nav-link {
            color: var(--text-dim);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.7rem;
            font-weight: 600;
            transition: 0.3s;
        }

        .nav-link.active, .nav-link:hover {
            color: var(--accent);
        }

        .nav-link i { font-size: 24px; margin-bottom: 2px; }

        /* --- Responsive --- */
        @media (max-width: 900px) {
            .featured-card { flex-direction: column; padding: 1.5rem; text-align: center; }
            .featured-img { width: 100%; }
            .hero-title { font-size: 2.2rem; }
            .search-bar { display: none; }
        }