        /* Global Styles for Dark Mode */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRlPBLA1MneMyFnPy9DkBNFKpnmJq0EBzOuHzmz5zF_DIdNosg:https://images.rawpixel.com/image_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTEyL3Jhd3BpeGVsb2ZmaWNlOV9hX3ByaW50ZWRfaW1hZ2Vfb2ZfdGhlX3N0eWxlX29mX2xpbm9jdXRfcHJpbnRzX182MTllYzNlMC1hZjMxLTQxOGEtOWZjOS0zZjU0ZjgyYTNkZDlfMS5qcGc.jpg&s') no-repeat center center fixed;
            background-size: cover;
            background-size: 100%;
background-color: black;
            color: #ffffff;
            overflow: hidden;
        }

        /* Blurred Background */
        .phone-container {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            background: rgba(0, 0, 0, 0.555);
            backdrop-filter: blur(15px);
            overflow: hidden;
        }

        /* Top Status Bar */
        .status-bar {
            display: none; /* Hide the status bar */
        }

        /* App Sections (Swipeable) */
        .app-sections {
            flex: 1;
            display: flex;
            overflow-x: scroll;
            scroll-snap-type: x mandatory;
            transition: scroll 0.5s ease;
        }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(6, 1fr);
            gap: 1px;
            padding: 20px;
            scroll-snap-align: start;
            min-width: 100%;
            text-align: center;
        }

        .app-icon {
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, background 0.3s;
        }

        .app-icon i {
            font-size: 24px;
            color: white;
        }

        .app-icon:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }

        /* Bottom Dock */
        .dock {
            height: 80px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            margin: 10px;
        }

        .dock-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .dock-icon i {
            font-size: 20px;
            color: white;
        }

        .dock-icon:hover {
            transform: scale(1.15);
        }

        /* Scrollbar hidden */
        .app-sections::-webkit-scrollbar {
            display: none;
        }

        .app-sections {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Modal iframe for apps (fullscreen) */
        .app-modal {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            z-index: 999;
        }

        .app-modal iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: white;
            cursor: pointer;
        }

        /* Swipe Up Line (white line at the bottom) */
        .swipe-up {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: white;
            border-radius: 2px;
            opacity: 0.6;
        }