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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 20px;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: inline;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #555;
}

.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;
}

.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 {
    margin: 0;
}

/* Responsive Design */

/* Tablet Layout (768px - 1024px) */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 220px 1fr;
        gap: 40px;
        padding: 30px 15px;
    }

    .album-info h1 {
        font-size: 32px;
    }

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

/* Mobile Layout (< 768px) */
@media (max-width: 767px) {
    .nav-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-brand {
        font-size: 18px;
    }

    .header {
        padding: 40px 15px;
    }

    .album-cover {
        width: 200px;
        height: 200px;
        border: 8px solid #e8e8e8;
    }

    .follow-button {
        bottom: -15px;
        right: 20px;
        padding: 6px 16px;
        font-size: 11px;
    }

    .follow-button:before {
        font-size: 14px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 15px;
    }

    .sidebar {
        padding-top: 0;
    }

    .album-info h1 {
        font-size: 28px;
        text-align: center;
    }

    .by-artist {
        text-align: center;
        margin-bottom: 25px;
    }

    .get-music {
        text-align: center;
    }

    .music-buttons {
        gap: 8px;
    }

    .music-button, .buy-button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .description {
        font-size: 0.75rem;
        margin: 20px 0;
    }

    .release-info {
        font-size: 0.75rem;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .track {
        padding: 12px 0;
        gap: 12px;
    }

    .play-button {
        width: 28px;
        height: 28px;
    }

    .play-button:after {
        font-size: 9px;
    }

    .track-title {
        font-size: 14px;
    }

    .track-title .clip {
        font-size: 12px;
    }

    .track-artist {
        font-size: 12px;
    }

    .track-duration {
        font-size: 13px;
    }

    .footer {
        padding: 30px 15px;
        margin-top: 40px;
        font-size: 13px;
    }
}

/* Small Mobile Layout (< 480px) */
@media (max-width: 479px) {
    .album-cover {
        width: 180px;
        height: 180px;
    }

    .album-info h1 {
        font-size: 24px;
    }

    .track-title {
        font-size: 13px;
    }

    .track-duration {
        font-size: 12px;
    }
}