:root {
            --primary: #00c6ff;
            --secondary: #ff00bf;
            --bg-dark: #0f2027;
            --bg-light: #2c5364;
            --text: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            color: var(--text);
            text-align: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        .container {
            background: rgba(255, 255, 255, 0.05);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 8px 32px 0 rgba(135, 31, 31, 0.37);
            transition: all 0.3s ease;
            z-index: 2;
            max-width: 800px;
            width: 100%;
            margin: 60px 0 20px;
        }

        .container:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 40px 0 rgba(135, 31, 31, 0.5);
        }

        h1 {
            font-size: clamp(1.5rem, 5vw, 2rem);
            margin-bottom: 15px;
        }

        h2 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            margin: 25px 0 15px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        p {
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            opacity: 0.8;
            margin-bottom: 25px;
        }

        .btn {
            background: linear-gradient(to right, rgba(255, 0, 191, 0.8), rgba(204, 0, 153, 0.8));
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            color: var(--text);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 10px 5px;
            text-decoration: none;
            display: inline-block;
            touch-action: manipulation;
        }

        .btn:hover, .btn:focus {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 0, 191, 0.6);
        }

        .apps-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .app-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 15px;
            color: var(--text);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 10px;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            text-align: left;
        }

        @media (min-width: 500px) {
            .app-card {
                flex-direction: row;
                align-items: center;
                gap: 15px;
            }
        }

        .app-card:hover, .app-card:focus-within {
            transform: scale(1.02);
            background: rgba(255, 0, 234, 0.1);
            box-shadow: 0 0 15px rgba(255, 0, 191, 0.3);
        }

        .app-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .app-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .app-info {
            flex-grow: 1;
        }

        .app-name {
            font-size: clamp(1rem, 3vw, 1.2rem);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .app-version {
            color: var(--primary);
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            margin-bottom: 5px;
        }

        .app-description {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            opacity: 0.8;
        }

        .app-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .app-btn {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            text-decoration: none;
            transition: all 0.2s;
            touch-action: manipulation;
        }

        .app-btn-primary {
            background: linear-gradient(to right, var(--primary), #0072ff);
            color: var(--text);
        }

        .app-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
        }

        .app-btn:hover, .app-btn:focus {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #3d8aff);
            box-shadow: 0 4px 15px rgba(53, 167, 255, 0.3);
        }
    
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary), #6b20b2);
            box-shadow: 0 4px 15px rgba(133, 32, 230, 0.3);
        }

        #bgCanvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .user-area {
            position: fixed;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        @media (max-width: 600px) {
            .user-area {
                flex-direction: column;
                padding: 10px;
                gap: 5px;
            }
        }

        .user-area:hover, .user-area:focus-within {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .user-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 18px;
        }

        .user-name {
            font-weight: 600;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        }

        .logout-btn, .admin-btn {
            background: linear-gradient(to right, var(--secondary), var(--primary));
            color: var(--text);
            border: none;
            border-radius: 20px;
            padding: 6px 12px;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            cursor: pointer;
            transition: all 0.3s ease;
            touch-action: manipulation;
            text-decoration: none;
        }

        .admin-btn {
            background: linear-gradient(to right, #4CAF50, #2E7D32);
        }

        .logout-btn:hover, .logout-btn:focus, .admin-btn:hover, .admin-btn:focus {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255, 0, 191, 0.5);
        }

        .admin-btn:hover, .admin-btn:focus {
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
        }

        .update-badge {
            background: var(--secondary);
            color: var(--text);
            border-radius: 30px;
            padding: 5px 10px;
            font-size: clamp(0.6rem, 2vw, 0.7rem);
            font-weight: bold;
            margin-left: 8px;
            animation: pulse 2s infinite;
        }

        .subscribe-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 5px 12px;
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            touch-action: manipulation;
        }

        .subscribe-btn:hover, .subscribe-btn:focus {
            background: rgba(255, 255, 255, 0.25);
        }

        .subscribe-btn.subscribed {
            background: rgba(0, 198, 255, 0.2);
            border-color: var(--primary);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 0, 191, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 0, 191, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 0, 191, 0); }
        }

        .tabs {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            padding: 5px;
        }

        .tab {
            padding: 8px 15px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
            text-align: center;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        }

        .tab:hover, .tab:focus {
            background: rgba(255, 255, 255, 0.1);
        }

        .tab.active {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: var(--text);
            font-weight: 500;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        .changelog {
            text-align: left;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 15px;
            margin-top: 15px;
        }

        .changelog-version {
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .changelog-date {
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            opacity: 0.7;
            margin-bottom: 10px;
        }

        .changelog-item {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 8px;
            gap: 5px;
        }

        .changelog-tag {
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            padding: 3px 8px;
            border-radius: 4px;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .tag-new {
            background: rgba(0, 198, 255, 0.2);
            color: var(--primary);
        }

        .tag-fix {
            background: rgba(255, 193, 0, 0.2);
            color: #ffc100;
        }

        .tag-improve {
            background: rgba(126, 87, 194, 0.2);
            color: #7e57c2;
        }

        .quickwhisper-icon {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }

        /* Responsive Adjustments */
        @media (max-width: 600px) {
            .container {
                padding: 15px;
                margin: 80px 10px 20px;
            }
            .app-buttons {
                flex-direction: column;
            }
            .tabs {
                flex-direction: column;
                gap: 5px;
            }
            .tab {
                padding: 10px;
            }
        }

        @media (max-width: 400px) {
            .btn, .app-btn, .logout-btn, .subscribe-btn, .admin-btn {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
            .app-icon {
                width: 50px;
                height: 50px;
            }
            .app-icon img {
                width: 30px;
                height: 30px;
            }
        }
        .code-examples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .code-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 15px;
            transition: all 0.3s;
        }

        .code-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .code-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .code-title {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .code-language {
            font-size: 0.9rem;
            color: var(--primary);
        }

        .code-block {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            padding: 15px;
            position: relative;
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.9rem;
            white-space: pre-wrap;
            overflow-x: auto;
        }

        .copy-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(to right, var(--secondary), var(--primary));
            border: none;
            border-radius: 5px;
            padding: 5px 10px;
            color: white;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255, 0, 191, 0.5);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }