/* ============================================================
   MEDIA MANAGER PANEL STYLES — J2ST.ICU VOID
   ============================================================ */

.media-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-title {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.media-section {
    padding: 30px;
    border-radius: 28px;
    background: var(--bg-card);
    border: 1px solid var(--accent-border);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.media-title {
    font-size: 18px;
    font-weight: 850;
    display: flex;
    align-items: center;
    gap: 12px;
}

.media-desc {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Uploader Redesign */
.upload-drop {
    width: 100%;
    min-height: 140px;
    border-radius: 24px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-snappy);
    padding: 24px;
    text-align: center;
}

.upload-drop:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
}

.upload-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon i img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    opacity: 0.5;
}

.upload-drop:hover .upload-icon i img {
    opacity: 1;
    transform: scale(1.1);
}

.upload-drop span {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
}

/* Audio Player Interface */
.audio-interface {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}

.play-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.play-toggle i img {
    width: 20px;
    height: 20px;
    filter: none;
}

.playback-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.playback-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.playback-progress {
    width: 40%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.playback-time {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

/* File List Interface */
.file-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    transition: 0.2s;
}

.file-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.file-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-icon i img {
    width: 18px;
    height: 18px;
    filter: invert(1);
    opacity: 0.5;
}

.file-info {
    flex: 1;
}

.file-name {
    font-size: 14px;
    font-weight: 800;
}

.file-size {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .media-grid { grid-template-columns: 1fr; }
}
