/* Music Page Styles */
.music-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #30363d;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #f0f6fc;
    margin-bottom: 10px;
}

.page-header p {
    color: #8b949e;
    font-size: 1.1rem;
}

.music-collection {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.music-card {
    display: flex;
    flex-direction: column;
    background-color: #161b22;
    border-radius: 12px;
    overflow: hidden;
    border-left: 4px solid #4a7c9a;
    transition: all 0.3s ease;
}

.music-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.music-card:hover .video-thumbnail img {
    transform: scale(1.02);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 124, 154, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1117;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #4a7c9a;
    transform: scale(1.1);
}

.duration-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #f0f6fc;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

.music-content {
    padding: 20px;
}

.music-content h3 {
    color: #f0f6fc;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.music-content .artist {
    color: #4a7c9a;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.music-content .album {
    color: #8b949e;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.music-content .description {
    color: #8b949e;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.music-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.music-meta .date {
    color: #4a7c9a;
    font-size: 0.8rem;
    font-weight: bold;
}

.no-videos {
    text-align: center;
    padding: 60px 20px;
    color: #8b949e;
}

.no-videos i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #30363d;
}

.no-videos h3 {
    color: #f0f6fc;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .music-page {
        padding: 15px;
    }

    .video-container {
        height: 250px;
    }

    .music-content {
        padding: 15px;
    }

    .music-content h3 {
        font-size: 1.2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
