
.discography {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.songs-section {
    margin-bottom: 4rem;
}

.songs-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.year-section {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
}

.year-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.year-title {
    color: #ff6b9d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.year-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b9d, #667eea);
    border-radius: 2px;
}

.song-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.song-card:last-child {
    margin-bottom: 0;
}

.song-cover {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.song-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.song-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.song-info {
    flex: 1;
}

.song-title {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.song-details {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.credits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credit {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credit.composer {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
}

.credit.lyricist {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.credit.producer {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    color: white;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.album-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.album-cover {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff6b9d, #667eea);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.album-cover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.album-cover i {
    font-size: 3rem;
    color: white;
    z-index: 2;
}

.album-cover .album-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 3;
}

.album-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 4;
}

.album-card:hover .album-cover::before {
    transform: translateX(100%);
}

.album-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.album-year {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.album-type {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tracks {
    text-align: left;
    margin-bottom: 1.5rem;
}

.track {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.track:last-child {
    border-bottom: none;
}

.track:hover {
    color: #ff6b9d;
    padding-left: 10px;
}

.album-actions {
    margin-top: 1rem;
}

.btn-play {
    background: linear-gradient(45deg, #ff6b9d, #667eea);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.btn-play i {
    margin-right: 8px;
}

.achievements {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.achievements h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.achievement-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.achievement:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-3px);
}

.achievement i {
    font-size: 2rem;
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
    padding: 1rem;
    border-radius: 50%;
    min-width: 60px;
    text-align: center;
}

.achievement-text h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.achievement-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.music-videos {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.music-videos h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.video-card {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.video-thumbnail i {
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail i {
    opacity: 1;
    transform: scale(1.1);
}

.video-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-card p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .album-card {
        padding: 1.5rem;
    }

    .achievement-list {
        grid-template-columns: 1fr;
    }

    .achievement {
        flex-direction: column;
        text-align: center;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

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

    .album-cover {
        width: 120px;
        height: 120px;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.solo-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(102, 126, 234, 0.05));
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b9d, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.solo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solo-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.solo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 157, 0.2);
}

.solo-card.upcoming {
    border: 2px dashed rgba(255, 107, 157, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.03), rgba(102, 126, 234, 0.03));
}

.solo-cover {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(45deg, #ff6b9d, #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    align-self: center;
}

.solo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solo-cover .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.solo-info {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solo-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.solo-year {
    font-size: 1rem;
    color: #ff6b9d;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.solo-type {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solo-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: auto;
}

.btn-play, .btn-info, .btn-notify {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-play {
    background: linear-gradient(45deg, #ff6b9d, #ffd93d);
    color: white;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    color: white;
    text-decoration: none;
}

.btn-notify {
    background: linear-gradient(45deg, #667eea, #ff6b9d);
    color: white;
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .solo-card {
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .solo-cover {
        width: 100px;
        height: 100px;
    }
    
    .solo-cover .image-placeholder i {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solo-actions {
        justify-content: center;
    }

    .song-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .song-cover {
        width: 120px;
        height: 120px;
        align-self: center;
    }
    
    .year-title {
        font-size: 1.8rem;
    }
    
    .song-title {
        font-size: 1.1rem;
    }
    
    .credits {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .solo-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .song-card {
        gap: 0.8rem;
        padding: 1.25rem;
    }
    
    .song-cover {
        width: 100px;
        height: 100px;
    }
    
    .year-section {
        padding: 1.5rem;
    }
    
    .year-title {
        font-size: 1.6rem;
    }
    
    .song-title {
        font-size: 1rem;
    }
    
    .song-details {
        font-size: 0.9rem;
    }
    
    .credit {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}