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

body {
    background: #121212;
    color: #b3b3b3;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    line-height: 1.5;
}

a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ffffff;
}

h1, h2, h3, h4 {
    color: #e0e0e0;
    font-weight: normal;
}

h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #8c8c8c;
}

h4 {
    font-size: 1rem;
}

#main_container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
}

header {
    margin-bottom: 20px;
}

header h1 a {
    color: #e0e0e0;
    transition: color 0.2s;
}

header h1 a:hover {
    color: #ffffff;
}

.subtitle {
    color: #8c8c8c;
    font-size: 0.9rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
    margin-bottom: 20px;
}

.nav_link {
    color: #e0e0e0;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.nav_link::before {
    content: "[ ";
    color: #555555;
    transition: color 0.2s;
}

.nav_link::after {
    content: " ]";
    color: #555555;
    transition: color 0.2s;
}

.nav_link:hover {
    color: #ffffff;
}

.nav_link:hover::before,
.nav_link:hover::after {
    color: #8c8c8c;
}

.nav_link.active {
    color: #ffffff;
}

.nav_link.active::before,
.nav_link.active::after {
    color: #8c8c8c;
}

.description {
    color: #8c8c8c;
    margin-top: 5px;
}

.empty_message {
    color: #555555;
    padding: 20px 0;
}

.artist_card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #333333;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.artist_card:hover {
    border-color: #555555;
}

.artist_avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.artist_info h2 {
    font-size: 1.1rem;
}

.artist_info p {
    color: #8c8c8c;
    font-size: 0.9rem;
}

.artist_header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.artist_avatar_large {
    width: 120px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.artist_details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.albums_section {
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.album_card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border: 1px solid #333333;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.album_card:hover {
    border-color: #555555;
}

.album_thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.album_info h4 {
    margin-bottom: 3px;
}

.album_info p {
    color: #8c8c8c;
    font-size: 0.85rem;
}

.album_header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.album_cover {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.album_details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album_artist {
    color: #8c8c8c;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.album_artist a {
    color: #b3b3b3;
}

.album_artist a:hover {
    color: #ffffff;
}

.track_list {
    border-top: 1px solid #333333;
    margin-bottom: 20px;
}

.track_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 5px;
    border-bottom: 1px solid #333333;
    cursor: pointer;
    transition: color 0.2s;
}

.track_item:hover {
    color: #ffffff;
}

.track_item.active {
    color: #ffffff;
}

.track_number {
    color: #555555;
    font-size: 0.85rem;
    min-width: 25px;
}

.track_item.active .track_number {
    color: #e0e0e0;
}

.player {
    position: sticky;
    bottom: 0;
    background: #121212;
    border-top: 1px solid #333333;
    padding: 15px 0;
}

.player_track_name {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.player_controls {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.player_btn {
    background: none;
    border: none;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.player_btn::before {
    content: "[ ";
    color: #555555;
    transition: color 0.2s;
}

.player_btn::after {
    content: " ]";
    color: #555555;
    transition: color 0.2s;
}

.player_btn:hover {
    color: #ffffff;
}

.player_btn:hover::before,
.player_btn:hover::after {
    color: #8c8c8c;
}

.progress_container {
    width: 100%;
    height: 6px;
    background: #333333;
    cursor: pointer;
    margin-bottom: 8px;
}

.progress_bar {
    height: 100%;
    background: #e0e0e0;
    width: 0%;
    transition: width 0.1s linear;
}

.player_time {
    display: flex;
    gap: 5px;
    font-size: 0.85rem;
    color: #8c8c8c;
    margin-bottom: 10px;
}

.time_separator {
    color: #555555;
}

.volume_container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume_container label {
    color: #8c8c8c;
    font-size: 0.85rem;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    background: #333333;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 0;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.no_image {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    font-size: 1.5rem;
}

.site_footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333333;
    font-size: 0.8rem;
    color: #555555;
    line-height: 1.6;
}

.site_footer a {
    color: #8c8c8c;
}

.site_footer a:hover {
    color: #ffffff;
}

@media (max-width: 480px) {
    .artist_header,
    .album_header {
        flex-direction: column;
    }

    .album_cover {
        max-width: 100%;
    }

    .artist_avatar_large {
        width: 100px;
        height: 100px;
    }

    #main_container {
        padding: 15px;
    }
}
