        :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;
        }
        
        .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;
		    margin-right: 35px;
		    display: flex;
		    flex-direction: column;
		    justify-content: center;
		    flex-grow: 1;
		    min-width: 0;
		}
        
        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;
        }
        
        body.no-scroll {
            overflow: hidden !important;
            padding-top: 0 !important;
            height: 100vh !important;
        }
        
        ::-webkit-scrollbar {
            width: 0px;
            height: 0px;
            background: transparent;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
/*View Style*/
.folder-info b {
    text-align: left;
    font-size: 1.1em;
    display: block;
}

.genre-label {
    color: var(--accent);
    font-size: 11px;
    margin: 4px 0;
    text-align: center;
    width: 100%;
}

.music-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 18px;
    height: 18px;
    opacity: 0.1;
}

.music-icon.visible { opacity: 1; }

.status-label {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}
.status-hide { display: none; }

.folder-item {
    transition: background 0.3s, border-left 0.3s;
    border-left: 0px solid var(--accent);
    position: relative;
}

.folder-item.active {
    background: #252525 !important;
    border-left: 4px solid var(--accent);
}

.sub-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out;
    opacity: 0;
    margin-left: 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.sub-item:active {
    background: #1a1a1a !important;
    transform: scale(0.98);
    transition: 0.2s;
}

.sub-item {
    display: flex;
    align-items: center;
    background: #111;
    margin: 5px 0;
    padding: 8px;
    border-radius: 10px;
    font-size: 13px;
    position: relative;
    text-align: center;
}

.sub-info {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
}

.sub-center-row {
    display: flex;
    justify-content: flex-start; 
    gap: 12px;
    width: 100%;
    margin-top: 4px;
    font-size: 11px;
    color: #666;
}

.sub-list.open {
    opacity: 1;
    padding: 10px 0;
    margin-bottom: 12px;
}

#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;
}

#app_comment {
	position: static;
    color: white;
    padding: 8px 16px;
    margin-bottom: 10px;
    font-size: 10px;
    text-align: center;
    opacity: 0.3;
}

/* Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
}

.drawer.open { left: 0; }
.drawer-overlay.show { display: block; }

#brand-name { cursor: pointer; transition: opacity 0.2s; }
#brand-name:active { opacity: 0.6; }

.drawer-item {
    display: flex !important;
    align-items: center !important;
    width: 240px !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: 6px auto !important; 
    padding: 0 15px !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    background: #252525;
}

.drawer-item span {
    flex: 1;
    text-align: left;
    white-space: nowrap;
}

.active-screen {
    background: rgba(255, 255, 255, 0.1) !important;
    font-weight: bold;
}

.drawer-divider {
    background: rgba(255,255,255,0.1);
    margin: 15px 0;
}

.drawer-section-title {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

#drawer-search {
    background: #333;
    border: none;
    color: white;
    padding: 8px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 15px;
}

.more-menu-container {
    position: relative;
    padding: 5px 10px;
}

#more-trigger {
    cursor: pointer;
    font-size: 20px;
    color: #888;
}

.drawer {
    position: fixed;
    top: 0; left: -300px;
    width: 280px;
    background: #121212;
    z-index: 2001;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.context-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background: #1e1e1e;
    border-radius: 12px;
    min-width: 140px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.context-menu.show { display: block; }

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    gap: 10px;
    transition: background 0.2s;
}

.menu-item:hover { background: rgba(255,255,255,0.05); }

.menu-item svg {
    width: 18px;
    height: 18px;
    fill: #888;
}

.drawer-footer {
    margin-top: auto; 
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-editor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.btn-delete-account {
    color: var(--accent);
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    padding: 5px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-header { cursor: pointer; padding: 10px; background: #222; margin-top: 5px; border-radius: 5px; font-size: 14px; }
.filter-options.show { display: flex; opacity: 1; }

#drawer-content {
    overflow-y: auto;
    max-height: calc(100vh - 60px); 
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.filter-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out; 
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-in;
    display: none;
    flex-direction: column;
    padding: 12px;
    background: #151515;
    gap: 12px;
    border-radius: 0 0 8px 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #eee;
    cursor: pointer;
    transition: 0.2s;
    gap: 10px;
}

.filter-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: var(--accent);
}