* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #09090b;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 120px;
}

a {
    color: inherit;
    text-decoration: none;
}

.play-header {
    background: #000;
    border-bottom: 1px solid #27272a;
    padding: 22px 40px;
}

.play-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.play-logo strong {
    display: block;
    font-size: 34px;
    line-height: 1;
}

.play-logo span {
    color: #a1a1aa;
    font-size: 14px;
}

.play-nav {
    display: flex;
    gap: 25px;
}

.play-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.hero {
    background: linear-gradient(135deg, #18181b, #000);
    border: 1px solid #27272a;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 45px;
}

.hero-label {
    color: #a1a1aa;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 56px;
    line-height: 1;
    margin: 0 0 18px;
}

.hero-text {
    color: #a1a1aa;
    max-width: 720px;
    line-height: 1.7;
    font-size: 18px;
}

.section-title {
    font-size: 32px;
    margin: 0 0 25px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    margin-bottom: 55px;
}

.album-card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 14px;
    display: block;
    transition: 0.2s;
}

.album-card:hover {
    background: #27272a;
}

.album-cover {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 12px;
}

.album-placeholder {
    width: 100%;
    height: 170px;
    background: #27272a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 12px;
}

.album-title {
    display: block;
    color: #fff;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.album-artist {
    color: #a1a1aa;
    font-size: 14px;
    margin-top: 4px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.track-list {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 180px;
}

.track-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #27272a;
}

.track-row:last-child {
    border-bottom: 0;
}

.track-title {
    display: block;
    font-weight: 700;
    color: #fff;
}

.track-artist {
    color: #a1a1aa;
    font-size: 14px;
}

.play-button {
    background: #fff;
    color: #000;
    border: 0;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.play-button:hover {
    background: #d4d4d8;
}

.player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    border-top: 1px solid #27272a;
    z-index: 9999;
}

.player-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.player-cover,
.player-placeholder {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    flex-shrink: 0;
}

.player-cover {
    object-fit: cover;
    display: none;
}

.player-placeholder {
    background: #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-info {
    width: 260px;
    overflow: hidden;
}

.player-info strong,
.player-info span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info span {
    color: #a1a1aa;
    font-size: 14px;
}

.player-control {
    background: #27272a;
    color: #fff;
    border: 0;
    border-radius: 999px;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.player audio {
    width: 480px;
    max-width: 45vw;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .play-header {
        padding: 18px 22px;
    }

    .track-row {
        grid-template-columns: 1fr;
    }

    .player-inner {
        flex-wrap: wrap;
    }

    .player audio {
        width: 100%;
        max-width: 100%;
    }
}

.artist-profile {
    background: linear-gradient(135deg, #18181b, #0b0b0d);
    border: 1px solid #27272a;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 55px;
}

.artist-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    opacity: 0.75;
}

.artist-profile-content {
    padding: 40px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
}

.artist-image,
.artist-placeholder {
    width: 260px;
    height: 260px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.artist-image {
    object-fit: cover;
    display: block;
}

.artist-placeholder {
    background: #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.artist-info .hero-label {
    color: #a1a1aa;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.artist-info .hero-title {
    font-size: 72px;
    margin: 8px 0 18px;
}

.artist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.artist-meta span {
    background: #27272a;
    color: #f4f4f5;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.artist-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.artist-links a {
    background: #27272a;
    color: #fff;
    padding: 11px 17px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: .2s;
}

.artist-links a:hover {
    background: #3f3f46;
    transform: translateY(-2px);
}

.artist-links .presskit-link {
    background: #fff;
    color: #000;
}

.artist-links .presskit-link:hover {
    background: #d4d4d8;
}

.player-main-button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    color: #000000;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    flex-shrink: 0;
}

.player-main-button:hover {
    background: #d4d4d8;
}

.player-progress-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    color: #a1a1aa;
    font-size: 13px;
}

.player-progress {
    width: 100%;
    accent-color: #ffffff;
    cursor: pointer;
}

.player audio {
    display: none;
}

.track-row.is-playing {
    background: #27272a;
}

.track-row.is-playing .play-button {
    background: #22c55e;
    color: #000;
}

@media (max-width: 768px) {
    .artist-banner {
        height: 180px;
    }

    .artist-profile-content {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .artist-image,
    .artist-placeholder {
        width: 190px;
        height: 190px;
    }

    .artist-info .hero-title {
        font-size: 46px;
    }

    .player-info {
        width: 180px;
    }

    .player-progress-wrap {
        width: 100%;
        flex-basis: 100%;
    }
}

.album-profile {
    background: linear-gradient(135deg, #18181b, #0b0b0d);
    border: 1px solid #27272a;
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 42px;
    align-items: center;
}

.album-profile-cover-wrap {
    width: 320px;
}

.album-profile-cover,
.album-profile-placeholder {
    width: 320px;
    height: 320px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
}

.album-profile-cover {
    object-fit: cover;
    display: block;
}

.album-profile-placeholder {
    background: #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.album-profile-title {
    font-size: 72px;
    line-height: 1;
    margin: 8px 0 18px;
    color: #fff;
}

.album-profile-meta {
    color: #d4d4d8;
    font-size: 18px;
    margin-bottom: 22px;
}

.album-profile-meta a:hover {
    color: #fff;
}

.album-profile-description {
    color: #a1a1aa;
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 28px;
}

.album-main-button {
    background: #fff;
    color: #000;
    border: 0;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.album-main-button:hover {
    background: #d4d4d8;
}

.section-heading-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.section-heading-row .section-title {
    margin-bottom: 0;
}

.section-subtitle {
    color: #a1a1aa;
    font-size: 15px;
}

.album-track-list {
    margin-bottom: 190px;
}

@media (max-width: 768px) {
    .album-profile {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .album-profile-cover-wrap,
    .album-profile-cover,
    .album-profile-placeholder {
        width: 220px;
        height: 220px;
    }

    .album-profile-title {
        font-size: 44px;
    }
}

.home-hero {
    background: radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 35%),
                linear-gradient(135deg, #18181b, #000);
    border: 1px solid #27272a;
    border-radius: 30px;
    padding: 46px;
    margin-bottom: 55px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 42px;
    align-items: center;
}

.home-hero-title {
    color: #fff;
    font-size: 78px;
    line-height: .95;
    margin: 8px 0 18px;
    font-weight: 900;
}

.home-hero-meta {
    color: #d4d4d8;
    font-size: 18px;
    margin-bottom: 22px;
}

.home-hero-meta a:hover {
    color: #fff;
}

.home-hero-text {
    color: #a1a1aa;
    font-size: 18px;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 30px;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-main-button,
.home-secondary-button {
    border-radius: 999px;
    padding: 13px 23px;
    font-weight: 900;
    transition: .2s;
}

.home-main-button {
    background: #fff;
    color: #000;
}

.home-main-button:hover {
    background: #d4d4d8;
}

.home-secondary-button {
    background: #27272a;
    color: #fff;
}

.home-secondary-button:hover {
    background: #3f3f46;
}

.home-hero-cover-wrap {
    justify-self: end;
}

.home-hero-cover,
.home-hero-placeholder {
    width: 340px;
    height: 340px;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0,0,0,.55);
}

.home-hero-cover {
    object-fit: cover;
    display: block;
}

.home-hero-placeholder {
    background: #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 76px;
}

@media (max-width: 900px) {
    .home-hero {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .home-hero-title {
        font-size: 48px;
    }

    .home-hero-cover-wrap {
        justify-self: start;
    }

    .home-hero-cover,
    .home-hero-placeholder {
        width: 230px;
        height: 230px;
    }
}

.player-control.is-active {
    background: #22c55e;
    color: #000;
}

.player-next {
    display: block;
    color: #71717a;
    font-size: 12px;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.play-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.play-logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.play-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.play-logo-text strong {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.play-logo-text span {
    font-size: 14px;
    color: #a1a1aa;
    margin-top: 4px;
}

.play-user {
    color: #a1a1aa;
    font-size: 14px;
}

.logout-button {
    background: transparent;
    border: 0;
    color: white;
    cursor: pointer;
    font-size: 15px;
}

.logout-button:hover {
    opacity: .7;
}