/* --- DESIGN YOUTUBE PREMIUM --- */
.yt-card-pro {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Ombre portée douce et profonde */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.yt-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: #ff0000;
}

.yt-header-bg {
    background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 25px;
    position: relative;
}

.yt-logo-round {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.yt-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.yt-body h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    color: #1a202c;
    font-weight: 800;
}

.yt-subs-count {
    color: #ff0000;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.yt-subs-count::before {
    content: "●";
    margin-right: 6px;
    font-size: 10px;
}

/* Preview Vidéo */
.yt-video-preview {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.yt-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.yt-video-preview:hover img {
    transform: scale(1.08);
}

/* Icônes Réseaux Sociaux espacées */
.yt-social-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Plus d'espace entre les icônes */
    margin: 10px 0 25px 0;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
}

.yt-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px; /* Style carré arrondi moderne */
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.yt-social-icon svg {
    fill: #64748b;
    transition: fill 0.3s;
}

.yt-social-icon:hover {
    background: #ffffff;
    border-color: #ff0000;
    transform: translateY(-3px);
}

.yt-social-icon:hover svg {
    fill: #ff0000;
}

/* Bouton Voir la chaîne Pro */
.yt-btn-pro {
    display: block;
    background: #000000;
    color: #ffffff !important;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: auto;
}

.yt-btn-pro:hover {
    background: #ff0000;
    box-shadow: 0 10px 15px -3px rgba(255, 0, 0, 0.3);
}