/* ========================================
   Music Page Specific Styles
   ======================================== */

/* Album Grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin: 80px 0;
}

.album-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.album-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.4);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #333;
    position: relative;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-info {
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.album-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--accent), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.album-year {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    margin-bottom: 15px;
}

.album-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95em;
}

/* Music Player */
.music-player {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.waveform {
    height: 100px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--accent) 25%, 
        var(--violet) 50%, 
        var(--cyan) 75%, 
        var(--primary) 100%);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,50 L10,30 L20,70 L30,40 L40,60 L50,20 L60,80 L70,35 L80,65 L90,45 L100,50' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    mask-repeat: repeat-x;
    mask-size: 100px 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,50 L10,30 L20,70 L30,40 L40,60 L50,20 L60,80 L70,35 L80,65 L90,45 L100,50' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-size: 100px 100%;
    animation: waveformPulse 3s ease-in-out infinite;
    margin: 30px 0;
}

@keyframes waveformPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Streaming Links */
.streaming-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px 0;
}

.streaming-link {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.streaming-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.streaming-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
}

.streaming-link:hover::before {
    width: 200px;
    height: 200px;
}

/* Genre Tags */
.genre-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.genre-tag {
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(236, 72, 153, 0.3);
}