/*==========================================================
    CHANTY PROD SMARTLINK
    Version 1.0
==========================================================*/
/*==============================
    VARIABLES
==============================*/
:root{
    --bg:#121d27;
    --card:#1a2530;
    --card-dark:#101820;
    --gold:#d4af37;
    --text:#ffffff;
    --muted:#bfc7d1;
    --radius:22px;
    --shadow: 0 12px 40px rgba(0,0,0,.45);
    --transition:.30s ease;
}
/*==============================
    RESET
==============================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    background:var(--bg);
    color:var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height:1.6;
    padding:30px 15px;
}
/*==============================
    CONTENEUR
==============================*/
.sl-container{
    width:100%;
    max-width:640px;
    margin:auto;
    background:#0b1722;
    border-radius:28px;
    border:1px solid rgba(177, 166, 137, 0.404);
    box-shadow:var(--shadow);
    overflow:hidden;
    padding:40px 30px;
    border-top:1px solid  #ffffff75;
    border-bottom:2px solid #00eeffb0;
}
/*==============================
    LOGO
==============================*/
.sl-logo{
    width:170px;
    display:block;
    margin:0 auto 35px;
}
/*==========================================================
                COVER PLAYER
==========================================================*/
.sl-cover{
    width:100%;
    display:block;
    border-radius:18px;
    border:2px solid rgba(255, 255, 255, 0.767);
    box-shadow:0 12px 30px rgba(0,0,0,.45);
    transition:.35s ease;
    border-top:1px solid #00eeff;
    border-bottom:2px solid #ff9100;
}
.sl-cover:hover{
    transform:scale(1.02);
}
/*==============================
    COVER WRAPPER
==============================*/
.sl-cover-wrapper{
    position:relative;
    width:100%;
    max-width:240px;
    margin:0 auto;
}
/*==========================================================
                PLAY OVERLAY
==========================================================*/
.sl-play-overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    color:#ffffff;
    font-size:30px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(6px);
    transition:.20s ease;
    border-top:1px solid #dfb52b;
    border-bottom: 2px solid #a3a1a1;
    box-shadow:0 0 15px rgb(255, 255, 255);
}
.sl-play-overlay:hover{
    background:rgba(212,175,55,.92);
    color:#111;
    transform:translate(-50%,-50%) scale(1.08);
}
/*==========================================================
                MINI PLAYER 1
==========================================================*/
.sl-progress{
    width:100%;
    height:6px;
    background:#575757;
    border-radius:20px;
    overflow:hidden;
}
#progressBar{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#d4af37,#ffd85c);
    transition:width .1s linear;
}
.sl-time{
    display:flex;
    justify-content:space-between;
    margin-top:8px;
    font-size:13px;
    color:#bdbdbd;
}
.sl-player-mini{
    width:100%;
    max-width:260px;
    margin:12px auto 0;
}
.sl-progress-bar{
    width:100%;
    height:6px;
    background:#2a2a2a;
    border-radius:20px;
    overflow:hidden;
}
.sl-title{
    text-align:center;
    margin-top:-10px;
    font-size:38px;
    letter-spacing:1px;
    color:#fff;
}
.sl-artist{
    text-align:center;
    margin-top:-5px;
    font-size:21px;
    color:#e6e6e6;
}
.sl-artist strong{
    color:#ffd85c
}
.sl-label{
    text-align:center;
    margin-top:16px;
    color:var(--gold);
    font-size:15px;
}
.sl-counter{
    width:max-content;
    max-width:100%;
    margin:5px auto 30px;
    padding:10px 20px;
    background:#041b30;
    border-radius:50px;
    border:1px solid rgba(212,175,55,.30);
    text-align:center;
}
.sl-counter strong{
    color:#ffd85c
}
.sl-site{
    display:block;
    width:max-content;
    margin:0 auto;
    padding:14px 26px;
    margin-top:10px;
    margin-bottom: -28px;
    border-radius:40px;
    border:2px solid var(--gold);
    color:#ffffff;
    text-decoration:none;
    font-weight:bold;
    transition:var(--transition);
    border-top:1px solid #f8bf05e7;
    border-bottom:2px solid #bbbbbbe8;
}
.sl-site:hover{
    background:var(--gold);
    color:#111;
}
/*==============================
    SÉPARATEUR
==============================*/
hr{
    border:none;
    height:1px;
    margin:10px 15px;
    margin-top:-15px;
    background:
    linear-gradient(
        to right,
        transparent,
        rgba(224, 180, 35, 0.884),
        transparent
    );
}
/*==========================================================
                    SECTIONS
==========================================================*/
section{
    margin-bottom:35px;
}
section h2{
    font-size:26px;
    color:#fff;
    margin-bottom:10px;
    margin-top:-23px;
    text-align:center;
    font-weight:700;
}
/*==========================================================
                CARTES PLATEFORMES
==========================================================*/
.sl-platform{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    background:var(--card-dark);
    border:1px solid rgb(139, 139, 136);
    border-radius:18px;
    padding:16px 18px;
    margin-bottom:16px;
    transition:var(--transition);
    border-top:1px solid #f8bf0598;
    border-bottom:2px solid #99989863;
}
.sl-platform:hover{
    transform:translateY(-2px);
    border-color:#817f7f;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
/*==========================================================
            PARTIE GAUCHE
==========================================================*/
.sl-platform-left{
    display:flex;
    align-items:center;
    gap:16px;
    flex:1;
}
.sl-platform-logo{
    width:46px;
    height:46px;
    object-fit:contain;
    flex-shrink:0;
}
.sl-platform-info{
    display:flex;
    flex-direction:column;
}
.sl-platform-name{
    color:#fff;
    font-size:17px;
    font-weight:600;
}
.sl-platform-sub{
    color:#9fa7b0;
    font-size:13px;
    margin-top:3px;
}
/*==========================================================
                    BOUTONS
==========================================================*/
.sl-button{
    min-width:135px;
    padding:11px 18px;
    border-radius:35px;
    text-align:center;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:var(--transition);
    border:none;
    cursor:pointer;
}
/* écouter */
.sl-listen{
    background:#4bd17a;
    color:#000000;
    border-top:1px solid #ffffffcb;
    border-bottom:2px solid #ffffffd0;
}
/* télécharger */
.sl-download{
    background:#0e55be;
    color:#ffffff;
    border-top:1px solid #ffffffcb;
    border-bottom:2px solid #ffffffd0;
}
/* acheter */
.sl-buy{
    background:var(--gold);
    color:#111;
    border-top:1px solid #ffffffcb;
    border-bottom:2px solid #ffffffd0;
}
/* regarder */
.sl-watch{
    background:#d11010;
    color:#ffffff;
    border-top:1px solid #ffffffcb;
    border-bottom:2px solid #ffffffd0;
}
/* utiliser */
.sl-use{
    background:#000000;
    color:#fff;
    border-top:1px solid #00eeff;
    border-bottom:2px solid #ff0000ce;
}
/* identifier */
.sl-identify{
    background:#056aad;
    color:#fff;
    border-top:1px solid #ffffffcb;
    border-bottom:2px solid #ffffffd0;
}
.sl-button:hover{
    transform:scale(1.05);
    filter:brightness(1.06);
}
/*==========================================================
                DESCRIPTION
==========================================================*/
.sl-description{
    text-align:center;
}
.sl-description h2{
    margin:0px auto 0px;
}
.sl-description p{
    max-width:520px;
    margin:auto;
    color:#ffffff;
    line-height:1.8;
    font-size:16px;
}
/*==========================================================
                    PARTAGE
==========================================================*/
.sl-share{
    text-align:center;
    
}
.sl-share h2{
    margin:-27px auto -20px;
}
#copyLink{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 15px;
    background:transparent;
    color:#fff;
    margin:6px auto 0px;
    border:2px solid var(--gold);
    border-radius:40px;
    cursor:pointer;
    font-size:15px;
    font-weight:bold;
    transition:var(--transition);
    border-top:1px solid #f8bf05c9;
    border-bottom:2px solid #bbbbbbd3;
    box-shadow:0 0 15px rgba(255, 255, 255, 0.295);
}
#copyLink:hover{
    background:var(--gold);
    color:#111;
}
.sl-icons{
    margin-top:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}
.sl-icons a{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#101820;
    border:1px solid rgba(212,175,55,.20);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:var(--transition);
    text-decoration:none;
    border-top:1px solid #f8bf05f5;
    border-bottom:2px solid #bbbbbb;
    box-shadow:0 0 15px rgba(255, 255, 255, 0.24);
}
.sl-icons a:hover{
    transform:translateY(-3px);
    border-color:var(--gold);
}
.sl-icons svg{
    width:24px;
    height:24px;
    fill:#ffffff;
}
.sl-icons a:hover svg{
    fill:#d4af37;
}
/*==========================================================
                    FOOTER
==========================================================*/
footer{
    margin-top:45px;
    padding-top:30px;
    border-top:1px solid rgba(255, 255, 255, 0.445);
    text-align:center;
    color:#ffffff;
    font-size:14px;
}
/*==========================================================
                RESPONSIVE
==========================================================*/
@media (max-width:900px){
.sl-container{
    max-width:680px;
}
}
/*==============================
        TABLETTES
==============================*/
@media (max-width:768px){
body{
    padding:18px;
}
.sl-container{
    padding:30px 22px;
    border-radius:22px;
}
.sl-logo{
    width:150px;
}
.sl-cover{
    width:240px;
}
.sl-title{
    font-size:32px;
}
.sl-artist{
    font-size:18px;
}
.sl-platform{
    padding:15px;
}
.sl-platform-logo{
    width:40px;
    height:40px;
}
.sl-button{
    min-width:110px;
    font-size:13px;
    padding:10px 15px;
}
.sl-player{
    padding:18px;
}
}
/*==============================
        SMARTPHONES
==============================*/
@media(max-width:560px){
.sl-platform{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.sl-platform-left{
    display:flex;
    align-items:center;
    gap:12px;
    flex:1;
    min-width:0;
}
.sl-platform-logo{
    width:38px;
    height:38px;
    flex-shrink:0;
}
.sl-platform-info{
    min-width:0;
}
.sl-platform-name{
    font-size:15px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.sl-button{
    width:auto;
    min-width:105px;
    margin-top:0;
    flex-shrink:0;
    padding:10px 18px;
    font-size:13px;
}
}
/*==============================
    PETITS SMARTPHONES
==============================*/
@media (max-width:360px){
.sl-title{
    font-size:24px;
}
.sl-cover{
    width:160px;
}
.sl-logo{
    width:120px;
}
.sl-button{
    font-size:12px;
}
.sl-description p{
    font-size:15px;
}
}
/*==========================================================
                PETITES ANIMATIONS
==========================================================*/
.sl-platform,
.sl-play,
.sl-button,
.sl-site,
.sl-icons a,
.sl-cover{
    transition:all .30s ease;
}
.sl-platform:hover{
    transform:translateY(-3px);
}
.sl-cover:hover{
    transform:scale(1.02);
}
.sl-icons a:hover{
    transform:translateY(-4px);
}
.sl-button:hover{
    transform:scale(1.04);
}
.sl-site:hover{
    transform:translateY(-2px);
}
.sl-site{
    box-shadow:0 0 15px rgba(255, 255, 255, 0.295);
}
.center-title{
    text-align:center;
    margin-bottom:30px;
}
