:root{
    --bg:#efefef;
    --text:#2e2e2e;
    --muted:#808080;
    --card:#ffffff;
    --border:#d5d5d5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: "Inter", system-ui, sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

.page{
    max-width:760px;
    margin:auto;
    padding:20px 20px 80px;
}

.player-card{
    max-width:430px;
    margin:auto;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(12px);
    box-shadow:0 10px 40px rgba(0,0,0,.15);
}

.cover{
    width:100%;
    display:block;
	cursor:pointer;
}

.custom-player{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    background:#fff;
}

.play-btn{
    width:42px;
    height:42px;

    border:none;
    background:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;
    line-height:0; 
    flex-shrink:0;
	
	color:#444;
}

.progress{
    flex:1;
    height:8px;
    background:#d9d9d9;
    border-radius:999px;
    position:relative;
    cursor:pointer;
    overflow:visible;
}

.progress-bar{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:0%;

    background:linear-gradient(90deg,#444,#777);
    border-radius:999px;
}

.info{
    margin-top:55px;
    text-align:center;
}

h1{
    font-size:56px;
    font-weight:300;
    line-height:1.08;
    letter-spacing:-1px;
    margin-bottom:12px;
}

.artist{
    font-size:34px;
    font-style:italic;
    color:var(--muted);
    margin-bottom:40px;
}

.listen-title{
    font-size:28px;
    font-weight:300;
    margin-bottom:24px;
}

.platforms{
    max-width:560px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.platform-btn{
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    text-decoration:none;
    color:#333;

    background:#fff;
    border:2px solid var(--border);
    border-radius:999px;

    font-size:21px;
    font-weight:300;

    transition:.15s;
}

.platform-btn span{
    font-size:24px;
}

@media (max-width:600px){

    h1{
        font-size:34px;
    }

    .artist{
        font-size:24px;
    }

    .listen-title{
        font-size:22px;
    }

    .platforms{
        grid-template-columns:1fr;
    }
}


.player-card,
.custom-player,
.progress,
.play-btn {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.icon{
    width: 1.5em;
    height: 1.5em;
}

.release{
    margin-top:30px;
    font-size:16px;
    color:#777;
    letter-spacing:1px;
}

.socials{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:18px;
}

.social-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    opacity:.75;

    transition:.2s ease;
}

.social-btn img{
    width:42px;
    height:42px;
    transition:.2s ease;
}

.artist-header{
    text-align:center;
}

.artist-logo{
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;

    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: block;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.releases-section{
    margin-top:80px;
}

.releases-section h2{
    font-size:42px;
    font-weight:300;
    text-align:center;
    margin-bottom:40px;
}

.releases-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:24px;
}

.release-card{
    display:block;
    text-decoration:none;
    color:inherit;

    background:#fff;

    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.2s;
}

.release-card img{
    width:100%;
    display:block;
    aspect-ratio:1;
    object-fit:cover;
}

.release-info{
    padding:18px;
}

.release-title{
    font-size:22px;
    font-weight:400;
    line-height:1.3;
}

.release-year{
    margin-top:8px;
    color:var(--muted);
    font-size:14px;
    letter-spacing:1px;
}

@media (max-width:600px){

    .releases-section{
        margin-top:60px;
    }

    .releases-section h2{
        font-size:32px;
    }

    .release-title{
        font-size:18px;
    }
	
}


.artist a { 
 color: #4f7fa6;
 text-decoration: none;
 transition: 0.2s;
}

@media (hover: hover) {
	.release-card:hover{
		box-shadow:0 16px 50px rgba(0,0,0,.12);
	}

	.social-btn:hover{
		opacity:1;
	}

	.platform-btn:hover{
		box-shadow:0 8px 20px rgba(0,0,0,.08);
	}

	.play-btn:hover{
		color:#000;
	}
	
	.artist a:hover {
		color: #1f6fa8;
	}		
}
