*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}
:root{
    /* ✨ BRIGHT LEMON YELLOW THEME */
    --banana-yellow: 255, 235, 59;
    --banana-light: 255, 245, 120;
    --banana-warm: 255, 225, 40;
    --gold: 255, 193, 7;
    
    /* Viola per il badge HyperSquad Bravery */
    --hypesquad-purple: 188, 150, 255;
    
    --sinon-cyan: 255, 235, 59;
    --sinon-gold: 255, 235, 59;
    --sinon-gray: 20, 24, 35;
    --sinon-light-gray: 160, 170, 190;
    --sinon-dark-gray: 15, 18, 28;
    --sinon-white: 255, 255, 255;
    --sinon-dirty-white: 225, 230, 240;
    --sinon-transparent: rgb(0 0 0 / 0%);

    /* Background */
    --color-background: 12, 15, 24;
    --color-foreground: 22, 27, 40;

    /* Images */
    --sinon-background: url("assets/bg.png");
    --sinon-banner: url("assets/banner.jpg");

    /* Text */
    --color-text-lighter: 255, 235, 59;

    /* Icon */
    --sinon-owner-icon: url("assets/hypesquadbravery.svg");
}
/*Scroll bar*/
::-webkit-scrollbar {
    width: 3px;
    background: rgb(var(--sinon-transparent));
}
::-webkit-scrollbar-corner {
    background: rgb(var(--banana-yellow));
}
::-webkit-scrollbar-thumb {
    width: 3px;
    background: rgb(var(--banana-yellow));
}
body{
    background: rgb(var(--color-background)) var(--sinon-background) center/cover fixed;
    background-repeat: no-repeat;
    font-family: 'Poppins', Overpass, sans-serif;

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:100vh;
    overflow:hidden;
}
.profile{
    width:fit-content;
    border-radius:4px;
    padding:40px;
    text-align:center;
    color:rgb(var(--sinon-white));
    animation:fadeInDown 1s;

    margin:0;
}
.header {
    border-radius: 6px 6px 0 0;
    height: 120px;
    z-index: -1;
    padding: 40px;
    margin: auto;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 250px rgba(12, 15, 24, 0.8);
    position: relative;
}
.box{
    width: inherit;
    border-radius: 0 0 6px 6px;
    background: rgb(var(--color-foreground));
    padding: 40px 200px;
    padding-bottom: 5px;
    text-align: center;
    margin: auto;
    color: rgb(var(--sinon-white));
    font-family: 'Poppins', Overpass, sans-serif;
}
.hyper {
    position: absolute;
    margin-left: -23px;
    margin-top: -25px;
    height: 36px;
}
.hyper{
    position:absolute;
    margin-left:-170px;
    margin-top:-22px;
    height:30px;
}
/* 🟣 GLOW VIOLA per il badge HyperSquad Bravery */
.hyper img{
    width:32px;
    height:32px;
    object-fit:contain;

    filter:
        drop-shadow(0 0 5px rgb(170, 90, 255))
        drop-shadow(0 0 10px rgb(145, 60, 255))
        drop-shadow(0 0 18px rgba(130, 50, 255, 0.45));
}
.stray-admin {
    position: absolute;
    margin-left: 11px;
    margin-top: -27px;
    height: 42px;
}
.stray-admin img{
    filter: drop-shadow(0px 0px 8px rgb(255 215 0));
}
.kofi {
    position: absolute;
    transform: translate(422px, -13px);
    filter: hue-rotate(1deg);
}
.box-img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-top: -150px;
    border: 6px solid rgb(255, 225, 120);
    box-shadow: 0px 0px 30px 15px rgba(255, 225, 120, 0.3);
    transition: 0.5s;
}
.box h1{
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 800;
    font-family: 'Poppins', Overpass, sans-serif; 
    color: rgb(255, 225, 120);
    text-shadow: 0 0 30px rgba(255, 225, 120, 0.2);
}
.box h5{
    color: rgb(255, 225, 120);
    font-family: 'Poppins', Overpass, sans-serif;
    font-weight: 600;
}
.box p{
    margin-top: 12px;
    font-size: 0.9rem;
    font-family: 'Poppins', Overpass, sans-serif;
    color: rgb(225, 230, 240);
}
.box .social{
    display:grid;
    grid-template-columns:repeat(3, 230px);
    justify-content:center;
    gap:14px;
    padding-top:12px;
}
.box .social a{
    background:rgb(var(--color-background));
    height:52px;
    width:230px;

    border-radius:10px;
    border:3px solid rgb(var(--color-foreground));

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    transition:.25s;
}
.box .social a:before{
    display: block;
    
}
.box .social span {
    font-size: 1rem;
    text-align: justify;
    display: flex;
    justify-content: center;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgb(var(--sinon-white));
}
.box .social a:hover {
    background: rgb(var(--color-foreground));
    border: 3px solid rgb(255, 225, 120);
    transform: scale(0.95) !important;
    transition: 0.5s;
    box-shadow: 0 0 20px rgba(255, 225, 120, 0.15);
}
.box-img:hover{
    transform:translateZ(0) scale(1.08);
    border-color:rgb(255, 215, 90);
    box-shadow: 0px 0px 40px 20px rgba(255, 225, 120, 0.4);
}
.box .social-title{
    padding-top: 20px;
    display: flex;
}
.box .playlist-title{
    padding-top: 10px;
    display: flex;
}
.playlist{
    font-size:26px;
    color:rgb(255, 225, 120);
    min-height:110px;
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    top:0;
    overflow:hidden;
    transition:.1s;

    padding:10px 0 15px;

    border-bottom:2px solid rgba(160, 170, 190,0.2);
}
 .playlist a {
    font-size: 26px;
    color: rgb(255, 225, 120);
    background: rgb(var(--color-background));
    height: 90px;
    border-radius: 8px;
    margin: 8px;
    position: relative;
    display: flex;
    top: 0px;
    line-height: 48px;
    overflow: hidden;
    transition: 0.1s;
    border: 3px solid rgba(var(--color-foreground));
    margin-bottom: 30px;
    width:460px;
}
.playlist a:hover{
    background: rgb(var(--color-foreground));
    border: 3px solid rgb(255, 225, 120);
    transform: scale(0.95) !important;
    transition: 0.5s;
    box-shadow: 0 0 20px rgba(255, 225, 120, 0.15);
}
.playlist span {
    font-size: 1.4rem;
    text-align: justify;
    display: absolute;
    justify-content: center;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgb(var(--sinon-white));
    margin-left: 30px;
    margin-top: 10px;
}
.playlist h5 {
    font-size: 0.7rem;
    position: absolute;
    margin-left: 120px;
    margin-top: 35px;
    color: rgb(225, 230, 240);
}
.playlist h5::after{
    content: '';
    -webkit-mask: url('https://saikokurami.github.io/assets/spotify_42px.png') no-repeat 50% 50%;
    width: 30px;
    height: 30px;
    left: 260px;
    top: -26px;
    position: absolute;
    background-color: rgb(255, 225, 120);
}
.date {
    display: flex;
    font-size: 0.7rem;
    padding: 7px 0 11px 0;
    justify-content: flex-end;
    color: rgb(160, 170, 190);
    font-weight: 100;
}
/*tool-tip*/
.stray-admin::before,
.stray-admin::after,
.hyper::before,
.hyper::after{
    --scale: 0;
    --arrow-size: 7px;
    --tooltip-color: rgb(20, 24, 35);
    position: absolute;
    top: -0.25rem;
    left: 50%;
    pointer-events: none;
    transform: translateX(-50%) translateY(var(--translate-y, 0)) scale(var(--scale));
    transition: 150ms transform;
    transform-origin: bottom center;
}
.stray-admin::before,
.hyper::before{
    --translate-y: calc(-100% - var(--arrow-size));
    content: attr(data-tooltip);
    color: rgb(255, 255, 255);
    padding: .5rem;
    border-radius: .3rem;
    text-align: center;
    width: max-content;
    pointer-events: none;
    background: var(--tooltip-color);
    font-size: 0.6rem;
}
.stray-admin:hover::before,
.stray-admin:hover::after,
.hyper:hover::before,
.hyper:hover::after{
    --scale: 1;
}
.stray-admin::after,
.hyper::after{
    --translate-y: calc(-1 * var(--arrow-size));
    content: '';
    border: var(--arrow-size) solid transparent;
    border-top-color: var(--tooltip-color);
    transform-origin: top center;
}
/* ✨ ICONE SOCIAL - GIALLO LIME BRILLANTE */
.box .social a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}
.box .social img{
    width:24px;
    height:24px;
    object-fit:contain;
    flex-shrink:0;
    filter: brightness(0) saturate(100%) invert(88%) sepia(35%) saturate(500%) hue-rotate(5deg) brightness(1.05);
}
.box .social span{
    margin:0;
}
.box .social-title,
.box .playlist-title,
.box .playlist,
.box .date {
    width: calc(100% + 160px);
    margin-left: -80px;
}
@media (max-width: 768px){

    body{
    overflow-y:auto;
    overflow-x:hidden;
    }

    .profile{
        width:100%;
        max-width:100%;
        padding:15px;
    }

    .box{
        padding:25px 15px;
    }

    .header{
        height:90px;
        padding:25px;
    }

    .box-img{
        width:140px;
        height:140px;
        margin-top:-100px;
    }

    .box h1{
        font-size:30px;
    }

    .box p{
        font-size:.9rem;
    }

    .box .social{
        grid-template-columns:1fr;
        gap:10px;
    }

    .box .social a{
        width:100%;
        max-width:100%;
    }

    .playlist a{
        width:100%;
        height:auto;
        min-height:90px;
    }

    .playlist span{
        font-size:1.1rem;
        margin-left:20px;
    }

    .playlist h5{
        position:static;
        margin:5px 0 10px 110px;
    }

    .date{
        justify-content:center;
    }

    .counter{
        display:none;
    }

}