        :root {
            --accent: #F44336;
        }
        
        * {
            -webkit-tap-highlight-color: transparent;
            outline: none !important;
            box-sizing: border-box;
            scrollbar-width: none;
        }
        
        body {
            background: #000;
            color: white;
            font-family: 'Segoe UI', sans-serif;
            margin: 0;
            padding-top: 70px;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            -ms-overflow-style: none;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .search-box {
            position: relative;
            display: flex;
            align-items: center;
            width: 45%;
        }
        
        #search-input {
            background: #333;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            padding: 8px 12px 8px 35px;
            border-radius: 10px;
            font-size: 14px;
            width: 100%;
        }
        
        .search-box svg {
            position: absolute;
            left: 10px;
            fill: rgba(255, 255, 255, 0.5);
            width: 16px;
            height: 16px;
        }
        
        #exit-player {
            background: transparent;
            color: white;
            border: 1.5px solid var(--accent);
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            display: none;
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
        }
        
        .container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 15px;
            padding-bottom: 100px;
            flex: 1;
        }
        
        .folder-item {
            display: flex;
            align-items: center;
            background: #1a1a1a;
            margin-bottom: 12px;
            padding: 12px;
            border-radius: 15px;
            cursor: pointer;
        }
        
        .folder-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .folder-info {
            margin-left: 15px;
        }
        
        #mini-player {
            position: fixed;
            bottom: -100px;
            left: 0;
            width: 100%;
            height: 75px;
            background: #1e1e1e;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            padding: 0 15px;
            z-index: 1100;
            transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        #mini-player.active {
            bottom: 0;
        }
        
        .mini-img {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            object-fit: cover;
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        .mini-info {
            flex: 1;
            overflow: hidden;
        }
        
        .mini-btn {
            background: none;
            border: none;
            color: white;
            padding: 10px;
            cursor: pointer;
        }
        
        #player-frame {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            width: 100vw;
            height: calc(100vh - 60px);
            border: none;
            z-index: 500;
            background: #000;
            will-change: height;
        }
        
        footer {
            margin-top: auto;
            padding: 40px 20px;
            background: #0d1117;
            border-top: 1px solid #30363d;
            text-align: center;
            color: #8b949e;
            font-size: 14px;
        }
        
        footer a {
            color: var(--accent);
            text-decoration: none;
            margin: 0 10px;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        .hidden {
            display: none !important;
        }
        
        body.player-active {
            padding-top: 0;
        }
        
        #player-frame.full-screen {
            top: 0;
            height: 100vh !important;
        }
        
        .hide-ui {
            display: none !important;
        }
        
        .full-frame {
            top: 0 !important;
            height: 100vh !important;
        }
        
        @media (orientation: landscape) and (max-height: 500px) {
            #player-frame.full-frame {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                z-index: 9999 !important;
                display: block !important;
            }
        }
        
        body.no-scroll {
            overflow: hidden !important;
            padding-top: 0 !important;
            height: 100vh !important;
        }
        
        #player-frame.full-frame {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            z-index: 9999 !important;
            margin: 0 !important;
        }
        
        ::-webkit-scrollbar {
            width: 0px;
            height: 0px;
            background: transparent;
        }
        
        .folder-item.favorites {
            border: 1.5px solid var(--accent);
            background: rgba(244, 67, 54, 0.05);
        }
        
        .fav-badge {
            background: var(--accent);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 10px;
        }
        
        .fav-tools {
            display: flex;
            gap: 6px;
            margin-left: auto;
            padding-left: 12px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .tool-btn {
            background: rgba(255, 255, 255, 0.05);
            border: none;
            color: white;
            width: 34px;
            height: 34px;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }
        
        .tool-btn:hover {
            background: var(--accent);
        }
        
        .tool-btn svg {
            fill: white;
            width: 18px;
            height: 18px;
            opacity: 0.8;
        }
        
        .tool-btn:active {
            transform: scale(0.9);
        }
        
#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(244, 67, 54, 1);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 95vw;
    min-width: 250px;
    width: fit-content;
    text-align: center;
    
    opacity: 0;
    pointer-events: none;
}

#toast.show {
    transform: translateX(-50%) translateY(0);
    
    opacity: 1;
    pointer-events: auto;
}
        
        .fav-menu-container {
            position: relative;
            margin-left: auto;
            display: flex;
            align-items: center;
        }
        
        .dots-btn {
            background: none;
            border: none;
            color: white;
            padding: 10px;
            cursor: pointer;
            opacity: 0.6;
            transition: 0.3s;
        }
        
        .dots-btn:hover {
            opacity: 1;
        }
        
        .fav-dropdown {
            position: absolute;
            right: 0;
            top: 100%;
            background: #222;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: none;
            flex-direction: column;
            min-width: 120px;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        
        .fav-dropdown.active {
            display: flex;
            animation: slideIn 0.2s ease-out;
        }
        
        .drop-item {
            background: none;
            border: none;
            color: white;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            cursor: pointer;
            text-align: left;
            transition: 0.2s;
        }
        
        .drop-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .drop-item svg {
            width: 16px;
            height: 16px;
            fill: white;
            opacity: 0.7;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

#mini-player .playing-bars {
    display: none;
    width: 20px;
    height: 15px;
    gap: 2px;
    margin-left: 10px;
}

#mini-player.active-playing .playing-bars {
    display: flex;
}

#mini-player .bar {
    width: 3px;
    height: 100%;
    background: var(--accent);
    animation: mini-wave 0.6s infinite ease-in-out alternate;
}

@keyframes mini-wave {
    from { transform: scaleY(0.3); }
    to { transform: scaleY(1); }
}

#app_comment {
	position: static;
    color: white;
    padding: 8px 16px;
    margin-bottom: 10px;
    font-size: 10px;
    text-align: center;
    opacity: 0.3;
}