@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root{
    --bg:#080808;
    --card:#121212;
    --card-hover:#181818;
    --text:#ffffff;
    --muted:#b3b3b3;
    --spotify:#1DB954;

    --purple:#b967ff;
    --pink:#ff4db8;
    --blue:#5b8cff;
}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    color:var(--text);

    background:

    radial-gradient(
        circle at top left,
        rgba(185,103,255,.12),
        transparent 35%
    ),

    radial-gradient(
        circle at top right,
        rgba(91,140,255,.10),
        transparent 35%
    ),

    radial-gradient(
        circle at center,
        rgba(255,77,184,.06),
        transparent 40%
    ),

    #050505;

    min-height:100vh;

    overflow-x:hidden;
}

.container{

    max-width:1700px;

    margin:auto;

    padding:80px 40px 120px;
}

/* ========================= */
/* PROFILE HERO */
/* ========================= */

.profile-card{

    position:relative;

    display:flex;
    align-items:center;
    gap:35px;

    padding:40px;

    margin-bottom:60px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        rgba(185,103,255,.15),
        rgba(255,77,184,.08),
        rgba(91,140,255,.08)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    overflow:hidden;
}

.profile-card::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    top:-200px;
    right:-100px;

    background:
    radial-gradient(
        circle,
        rgba(29,185,84,.15),
        transparent 70%
    );

    pointer-events:none;
}

.profile-card img{

    width:180px;
    height:180px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid rgba(255,255,255,.08);

    box-shadow:
    0 0 40px rgba(29,185,84,.2);
}

.profile-info{
    z-index:2;
}

.profile-info h1{

    font-size:4rem;

    font-weight:900;

    margin-bottom:10px;
}

.profile-info p{

    color:var(--muted);

    font-size:1.1rem;
}

.spotify-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:14px 30px;

    border-radius:999px;

    background:var(--spotify);

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.spotify-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 30px rgba(29,185,84,.5);
}

/* ========================= */
/* SECTION TITLES */
/* ========================= */

.section-title{

    font-size:2.2rem;

    font-weight:800;

    margin-bottom:25px;

    margin-top:50px;
}

/* ========================= */
/* PLAYLIST GRID */
/* ========================= */

.playlist-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(420px,1fr));

    gap:32px;
}

/* ========================= */
/* PLAYLIST CARD */
/* ========================= */

.playlist-card{

    position:relative;

    overflow:hidden;

    text-decoration:none;

    color:white;

    border-radius:32px;

    backdrop-filter:blur(25px);

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.4s;
}

.playlist-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-150%;

    width:80%;

    height:100%;

    background:

    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transition:.8s;

    z-index:3;
}

.playlist-card:hover{

    transform:
    translateY(-15px)
    scale(1.02);

    border-color:
    rgba(185,103,255,.3);

    box-shadow:
    0 30px 80px
    rgba(185,103,255,.25);
}

.playlist-card:hover::before{

    left:150%;
}

.playlist-card img{

    width:100%;

    height:500px;

    transition:.8s;

    object-fit:cover;

    transition:.7s;
}

.playlist-card:hover img{

    transform:scale(1.08);
}

.playlist-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        transparent 35%,
        rgba(0,0,0,.9)
    );

    pointer-events:none;
}

.playlist-info{

    position:absolute;

    bottom:0;
    left:0;
    right:0;

    z-index:5;

    padding:28px;
}

.playlist-info h3{

    font-size:1.6rem;

    margin-bottom:8px;

    font-weight:800;
}

.playlist-info p{

    color:#d0d0d0;

    font-size:.95rem;

    line-height:1.5;
}

.tags{

    display:flex;

    gap:10px;

    margin-bottom:14px;

    flex-wrap:wrap;
}

.tags span{

    padding:8px 15px;

    border-radius:999px;

    background:
    rgba(29,185,84,.15);

    backdrop-filter:blur(10px);

    color:var(--spotify);

    font-size:.8rem;

    font-weight:700;
}

body::before{

    content:"";

    position:fixed;

    width:800px;
    height:800px;

    top:-300px;
    left:-300px;

    border-radius:50%;

    background:
    radial-gradient(
        circle at center,
        var(--playlist-theme),
        transparent 70%
    );

    opacity:.15;

    filter:blur(180px);

    pointer-events:none;

    z-index:-1;
}

body::after{

    content:"";

    position:fixed;

    width:800px;
    height:800px;

    bottom:-300px;
    right:-300px;

    border-radius:50%;

    background:
    rgba(91,140,255,.08);

    filter:blur(180px);

    pointer-events:none;

    z-index:-1;
}

/* ========================= */
/* VIEW PLAYLIST BUTTON */
/* ========================= */

.view-playlist{

    margin-top:15px;

    display:inline-block;

    color:white;

    font-weight:700;

    text-decoration:none;

    transition:.3s;
}

.view-playlist:hover{

    color:var(--spotify);
}

/* ========================= */
/* PLAYLIST PAGE */
/* ========================= */

.playlist-hero{

    display:grid;

    grid-template-columns:
    400px 1fr;

    gap:50px;

    align-items:center;

    margin-bottom:50px;
}

.playlist-hero img{

    width:100%;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.5);
}

.playlist-hero h1{

    font-size:4rem;

    font-weight:900;

    margin-bottom:15px;
}

.playlist-hero p{

    color:var(--muted);

    line-height:1.8;
}

.artist-list{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin:25px 0;
}

.artist-list span{

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    padding:10px 16px;

    border-radius:999px;
}

.spotify-embed{

    background:#111;

    border-radius:30px;

    padding:25px;

    border:1px solid rgba(255,255,255,.05);
}

.spotify-embed iframe{

    border:none;

    border-radius:18px;
}

/* ========================= */
/* SCROLLBAR */
/* ========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#333;
    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
    background:#555;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:900px){

    .profile-card{

        flex-direction:column;
        text-align:center;
    }

    .profile-info h1{
        font-size:3rem;
    }

    .playlist-hero{

        grid-template-columns:1fr;
    }

    .playlist-hero h1{
        font-size:2.5rem;
    }

    .playlist-card img{
        height:320px;
    }
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    ),
    url("assets/hero-bg.png");

    background-size:cover;
    background-position:center;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at center,
        transparent,
        rgba(0,0,0,.5)
    );
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:1000px;
}

.profile-ring{

    width:180px;
    height:180px;

    margin:auto;

    border-radius:50%;

    padding:6px;

    background:
    linear-gradient(
        45deg,
        #b967ff,
        #ff4db8,
        #5b8cff
    );

    margin-bottom:30px;
}

.profile-ring img{

    width:100%;
    height:100%;

    border-radius:50%;

    object-fit:cover;
}

.hero-top{

    letter-spacing:10px;

    color:#d0d0d0;

    margin-bottom:10px;
}

.hero h1{

    font-size:clamp(5rem,12vw,10rem);

    font-weight:900;

    line-height:1;

    background:
    linear-gradient(
        90deg,
        #ffffff,
        #d7a8ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:20px;

    text-shadow:
    0 0 40px rgba(185,103,255,.35),
    0 0 80px rgba(185,103,255,.15);
}

.hero::before{
    opacity:.25;
}

.hero-desc{

    font-size:1.3rem;

    color:#e0e0e0;

    margin-bottom:30px;
}

.section-header{

    margin-bottom:25px;
}

.section-header span{

    display:block;

    color:#b967ff;

    font-size:.85rem;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:700;

    margin-bottom:8px;
}

.section-header h2{

    font-size:3rem;

    font-weight:900;
}

.filter-bar{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:40px;
}

.filter-bar button{

    border:none;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    color:white;

    padding:12px 20px;

    border-radius:999px;

    cursor:pointer;

    transition:.3s;
}

.filter-bar button:hover{

    transform:translateY(-2px);

    background:
    rgba(185,103,255,.25);
}

/* ========================= */
/* PLAYLIST PAGE V2 */
/* ========================= */

.playlist-page-hero{

    position:relative;

    min-height:80vh;

    overflow:hidden;
}

.playlist-bg{

    position:absolute;

    inset:0;
}

.playlist-bg img{

    width:100%;
    height:100%;

    object-fit:cover;

    filter:
    blur(70px)
    brightness(.25);

    transform:scale(1.2);
}

.playlist-page-content{

    position:relative;

    z-index:2;

    max-width:1600px;

    margin:auto;

    min-height:80vh;

    display:grid;

    grid-template-columns:

    400px
    1fr
    320px;

    gap:50px;

    align-items:center;

    padding:60px;
}

.playlist-cover{

    width:400px;

    border-radius:30px;

    box-shadow:
    0 20px 80px
    rgba(0,0,0,.5);
}

.playlist-meta{

    max-width:700px;
}

.playlist-type{

    color:#b3b3b3;

    letter-spacing:3px;

    font-size:.8rem;
}

.playlist-meta h1{

    font-size:5rem;

    margin:15px 0;
}

.playlist-meta p{

    color:#d0d0d0;

    line-height:1.8;
}

.playlist-tags{

    display:flex;

    gap:12px;

    margin:25px 0;
}

.playlist-tags span{

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(10px);
}

.playlist-body{

    max-width:1400px;

    margin:auto;

    padding:80px 40px;
}

.playlist-body h2{

    font-size:2rem;

    margin-bottom:25px;
}

.search-box{

    margin-bottom:25px;
}

.search-box input{

    width:100%;

    padding:18px 22px;

    border:none;

    outline:none;

    border-radius:20px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:
    blur(20px);

    color:white;

    font-size:1rem;
}

.search-box input::placeholder{

    color:#999;
}

.filter-bar button.active{

    background:
    linear-gradient(
        135deg,
        #b967ff,
        #ff4db8
    );

    color:white;

    box-shadow:
    0 0 25px
    rgba(185,103,255,.35);
}

.hero-stats{

    margin-top:40px;

    display:flex;

    flex-direction:row;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:nowrap;

    width:100%;
}

.stat-card{

    flex:1;

    min-width:340px;

    max-width:340px;

    min-height:160px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:25px;

    border-radius:28px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);
}

.stat-card h3{

    font-size:2rem;

    margin-bottom:10px;
}

.stat-card p{

    color:#b3b3b3;
}

footer{

    margin-top:120px;

    padding:60px 20px;

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,.08);
}

footer h3{

    font-size:2rem;

    margin-bottom:10px;
}

footer p{

    color:#999;

    margin-bottom:20px;
}

.footer-links{

    display:flex;

    justify-content:center;

    gap:20px;
}

.footer-links a{

    color:white;

    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:#b967ff;
}

.footer-socials{

    display:flex;

    justify-content:center;

    gap:30px;

    margin:25px 0;
}

.footer-socials a{

    color:#bdbdbd;

    text-decoration:none;

    transition:.3s;
}

.footer-socials a:hover{

    color:white;
}

/* ========================= */
/* PLAYLIST INSIGHTS */
/* ========================= */

.playlist-insights{

    width:320px;

    display:flex;

    flex-direction:column;

    gap:20px;
}

.insight-card{

    background:
    rgba(255,255,255,.05);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:24px;

    text-align:center;
}

.insight-card h3{

    font-size:2rem;

    margin-bottom:6px;
}

.insight-card p{

    color:#b3b3b3;
}

.featured-artists{

    background:
    rgba(255,255,255,.05);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:24px;
}

.featured-artists h4{

    margin-bottom:16px;

    font-size:1.1rem;
}

.artist-pills{

    display:flex;

    flex-wrap:wrap;

    gap:10px;
}

.artist-pills span{

    background:
    rgba(185,103,255,.15);

    color:white;

    border-radius:999px;

    padding:8px 14px;

    font-size:.9rem;
}

.particles{

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:0;
}

.particles::before,
.particles::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.25;

    animation:
    floatGlow
    18s
    infinite
    ease-in-out;
}

.particles::before{

    background:#b967ff;

    top:10%;
    left:10%;
}

.particles::after{

    background:#5b8cff;

    bottom:10%;
    right:10%;

    animation-delay:8s;
}

.apple-heading{
    margin-top:60px;
}

.apple-embed{

    background:#111;

    border-radius:30px;

    padding:25px;

    border:1px solid rgba(255,255,255,.05);
}

.apple-embed iframe{

    width:100%;

    border:none;

    border-radius:18px;
}

.platform-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

    transform:translateX(0px);
}

.apple-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:220px;

    height:50px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    color:white;

    background:
    linear-gradient(
        135deg,
        #700144,
        #b967ff
    );

    transition:.3s;
}

.apple-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 30px rgba(185,103,255,.45);
}

@keyframes drift{

    from{

        transform:
        translateY(0);
    }

    to{

        transform:
        translateY(-300px);
    }
}
