* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.header {
    background: linear-gradient(135deg, #c97a5e 0%, #d68a6f 50%, #8b5a4a 100%);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.album-cover-container {
    position: relative;
}

.album-cover {
    width: 300px;
    height: 300px;
    border: 12px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #1a2a3a 0%, #2a1a2a 50%, #1a1a2a 100%);
    position: relative;
    overflow: hidden;
}

.album-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-title-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 42px;
    font-weight: bold;
    color: #f5a623;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.artist-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 18px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.follow-button {
    position: absolute;
    bottom: -20px;
    right: 40px;
    background-color: #c97a5e;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.follow-button:before {
    content: '⊕';
    font-size: 16px;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.sidebar {
    padding-top: 20px;
}

.album-info h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #333;
}

.by-artist {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.by-artist a {
    color: #333;
    text-decoration: none;
}

.by-artist a:hover {
    text-decoration: underline;
}

.get-music {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

.music-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.music-button, .buy-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #333;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
}

.music-button:hover, .buy-button:hover {
    background-color: #f5f5f5;
}

.buy-button {
    justify-content: center;
    margin-top: 10px;
}

.icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin: 30px 0;
    text-align: center;
}

.release-info {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin: 20px 0;
}

.release-info a {
    color: black;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.social-icon:hover {
    background-color: #555;
}

.tracklist {
    padding-top: 20px;
}

.track {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    gap: 15px;
}

.play-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #333;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-button:after {
    content: '▶';
    color: white;
    font-size: 10px;
    margin-left: 2px;
}

.play-button:hover {
    background-color: #555;
}

.track-info {
    flex: 1;
}

.track-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 3px;
}

.track-title .clip {
    color: #999;
    font-size: 14px;
}

.track-artist {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.track-duration {
    font-size: 14px;
    color: #666;
    margin-left: auto;
}

.play-button.playing:after {
    content: '⏸';
    margin-left: 0;
}

.play-button.playing {
    background-color: #c97a5e;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #e8e8e8;
    color: #666;
    font-size: 14px;
    margin-top: 60px;
}

.footer p {
    text-align: center;
    margin: 0;
}
