.music-list {
    background-color: #f98b9f;
    background-image: radial-gradient(#ffd4d4 0.5px, transparent 0.5px), radial-gradient(#f98b9f 0.5px, #ebd4d4 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.music-list .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reveal {
    opacity: 1;
    text-align: center;
    transform: translateY(0);
    margin-bottom: 3rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.music-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.music-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.music-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.album-cover {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.album-cover::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffa6b0, #f46177);
}

.album-cover::after {
    content: '♫';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
}

.music-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2d3748;
}

.music-info p {
    color: #718096;
    font-size: 0.9rem;
}

.music-player {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
}

.progress {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ff3a59, #7e57c2);
    border-radius: 5px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 20px;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #2d3748;
}

.control-btn:hover {
    background-color: #b39ddb;
    color: white;
}

.play-btn {
    width: 50px;
    height: 50px;
    background-color: #f67085;
    color: white;
}

.play-btn:hover {
    background-color: #ff3a59;
    transform: scale(1.1);
}


.section-music .section-title h2 {
    color: #ff3a59;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: #2d3748;
    z-index: 2;
}

.section-title .bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgb(245 73 73 / 20%);
    z-index: 1;
    white-space: nowrap;
}

.section-music .section-title h2::after {
    background: #ff3a59;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #ffa6b0, #ff3a59);
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-img img{
    width: 400px;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #ffa6b0, #42a5f5);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2d3748;
}

.about-text p {
    color: #718096;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-features {
    text-align: center;
    padding-left: 120px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffa6b0, #42a5f5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-icon.anime {
    background: #ffa6b0;
}

.feature-icon.music {
    background: #42a5f5;
}

.feature-icon::before {
    font-size: 16px;
}

.feature-icon.anime::before {
    content: '作';
}




.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #7e57c2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}