* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: monospace;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.player-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #000000;
    border-radius: 4px;
    border: 3px solid #d478ee;
}

.album-content {
    display: flex;
    gap: 40px;
    flex: 1;
}

.album-section {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.album-cover-container {
    position: relative;
}

.album-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.album-cover.placeholder {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
}

.album-info {
    text-align: center;
}

.album-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.album-artist {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.album-description {
    background-color: #181818;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #000000;
    font-size: 14px;
    line-height: 1.5;
}

.album-description h1 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #d478ee;
}

.album-description h2 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #ffffff;
}

.album-description h3 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #b3b3b3;
}

.album-description p {
    margin-bottom: 8px;
    color: #cccccc;
}

.album-description strong {
    color: #ffffff;
}

.album-description em {
    color: #d478ee;
}

.album-description a {
    color: #1d75d4;
    text-decoration: underline;
}

.album-description a:hover {
    color: #c5d5d5;
}

.track-section {
    flex: 1;
    min-width: 0;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background-color: #181818;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-wrap: wrap;
}

.track-item:hover {
    background-color: #333;
}

.track-info {
    display: grid;
    grid-template-columns: auto minmax(90px, 1.5fr) minmax(70px, 0.5fr) minmax(90px, 2fr) auto;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.track-number {
    font-size: 14px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.track-title {
    font-size: 16px;
    font-weight: 500;
    color: #d478ee;
    overflow-x: auto;
    white-space: nowrap;
}

.track-artist {
    font-size: 14px;
    color: #666;
    overflow-x: auto;
    white-space: nowrap;
    text-align: left;
}

.track-comment {
    font-size: 14px;
    color: #ffffff;
    overflow-x: auto;
    white-space: nowrap;
}

.track-duration {
    font-size: 14px;
    color: #666;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.track-player {
    flex-basis: 100%;
    flex-shrink: 0;
}

.track-title::-webkit-scrollbar,
.track-artist::-webkit-scrollbar,
.track-comment::-webkit-scrollbar {
    display: none;
}

.track-title,
.track-artist,
.track-comment {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

audio {
    width: 100%;
    height: 32px;
    outline: none;
    background: #1a1a1a;
    border-radius: 0px;
    border: 1px solid #000000;
}

audio::-moz-range-track {
    background-color: #404040;
    border-radius: 2px;
}

audio::-moz-range-thumb {
    background-color: #1db954;
    border: none;
    border-radius: 50%;
}

audio {
    filter: sepia(100%) saturate(0%) hue-rotate(0deg) brightness(0.8) contrast(1.2);
}

.footer-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #181818;
    text-align: center;
    font-size: 14px;
}

.footer-link {
    color: #1d75d4;
    text-decoration: underline;
    font-size: 14px;
    margin: 0 8px;
}

.footer-link:hover {
    color: #c5d5d5;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #d478ee;
    text-decoration: none;
    font-size: 16px;
}

.back-link:hover {
    text-decoration: underline;
}

.info-content h1 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.info-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d478ee;
}

.info-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #b3b3b3;
}

.info-content p {
    margin-bottom: 12px;
    color: #cccccc;
}

.info-content strong {
    color: #ffffff;
}

.info-content em {
    color: #d478ee;
}

.info-content a {
    color: #1d75d4;
    text-decoration: underline;
}

.info-content a:hover {
    color: #c5d5d5;
}

@media (max-width: 768px) {
    .album-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .album-section {
        flex: none;
        align-items: center;
    }
    
    .album-cover {
        height: 250px;
    }
    
    .track-item {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .track-artist,
    .track-album,
    .track-comment {
        display: none;
    }
    
    .track-title {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .album-cover {
        height: 200px;
    }
    
    .album-title {
        font-size: 20px;
    }
    
    .album-artist {
        font-size: 16px;
    }
    
    .track-item {
        padding: 8px 12px;
    }
}