:root { --bg: #0b0e14; --card: #161b22; --text: #ffffff; --accent-cyan: #00f2ff; --accent-pink: #ff00c8; }
body { background: var(--bg); color: var(--text); font-family: sans-serif; display: flex; justify-content: center; min-height: 100vh; margin: 0; }
.container { width: 100%; max-width: 400px; padding: 40px 20px; text-align: center; }
.avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 15px; border: 2px solid var(--accent-cyan); box-shadow: 0 0 15px var(--accent-cyan); }
.link-card { display: block; background: var(--card); color: white; text-decoration: none; padding: 18px; margin-bottom: 12px; border-radius: 12px; border: 1px solid #30363d; font-weight: bold; transition: 0.3s; position: relative; overflow: hidden; }
.link-card:hover { border-color: var(--accent-cyan); transform: translateY(-2px); }
.priority-link { border: 1px solid var(--accent-cyan) !important; background: linear-gradient(90deg, #161b22, #1c2128) !important; }
.priority-link::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.1), transparent); animation: shine 3s infinite; }
@keyframes shine { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }
input, select, button { width: 100%; padding: 12px; margin: 8px 0; border-radius: 6px; border: 1px solid #30363d; background: #161b22; color: white; box-sizing: border-box; }
button { background: var(--accent-cyan); color: black; border: none; font-weight: bold; cursor: pointer; }
/* Style de base pour tous les liens */
.link-card {
    display: block;
    background: #161b22;
    color: white;
    text-decoration: none;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #30363d;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* STYLE SPÉCIFIQUE POUR LES LIENS MIS EN AVANT */
.priority-link {
    border: 1px solid var(--accent-cyan) !important; /* Bordure Cyan */
    background: linear-gradient(90deg, #1c2128, #2d333b) !important;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2); /* Halo lumineux */
    transform: scale(1.02); /* Légèrement plus grand */
}

/* L'effet de balayage brillant (Shine) */
.priority-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Categories headers */
.category-title {
    font-size: 0.7rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 45px 0 15px 0;
    text-align: left;
    border-bottom: 1px solid #30363d;
    padding-bottom: 8px;
    font-weight: 600;
}

/* Priority link styling (LISTEN section) */
.priority-link {
    border: 1px solid var(--accent-cyan) !important;
    background: linear-gradient(135deg, #161b22 0%, #1c2128 100%) !important;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}

.priority-link::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% { left: -100%; }
    25% { left: 100%; }
    100% { left: 100%; }
}

.category-section {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* La vidéo de fond */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Largeur exacte de l'écran */
    height: 100vh; /* Hauteur exacte de l'écran */
    z-index: -2;
    object-fit: cover; /* Remplit sans déformer */
    object-position: center; /* Centre l'action */
	background:#222;
	
}

/* Fix spécifique pour mobile (évite les sauts de taille dus à la barre d'adresse) */
@supports (-webkit-touch-callout: none) {
    #bg-video {
        height: -webkit-fill-available;
    }
}

/* Le filtre sombre pour faire ressortir les liens */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Ajuste le 0.6 pour plus ou moins d'obscurité */
    z-index: -1; /* Entre la vidéo et le contenu */
}

/* On rend le container transparent pour voir le fond */
body {
    background: transparent;
    margin: 0;
}

.container {
    background: transparent; /* Suppression du fond uni */
}

/* Optionnel : Rendre les cartes légèrement translucides (Glassmorphism) */
.link-card {
    background: rgba(22, 27, 34, 0.8) !important; /* Semi-transparent */
   // backdrop-filter: blur(10px); /* Effet de flou sur la vidéo derrière */
 } 

.featured-release {
    margin: 20px 0 35px 0;
}

.release-card {
    display: block;
    text-decoration: none;
  //  background: rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.6) !important;
   // backdrop-filter: blur(15px);
   // -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 16px;
    padding: 12px;
    transition: 0.3s ease;
}

.release-card:hover {
    transform: scale(1.02);
   // background: rgba(255, 255, 255, 0.15);
   background: rgba(0, 0, 0, 0.6) !important;
    border-color: #00f2ff;
}

.release-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.release-cover {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
	flex-shrink: 0; /* Empêche l'image de s'écraser si le texte prend de la place */
}

.release-text {
    flex-grow: 1;
    text-align: left;
}

.release-text h3 { margin: 2px 0; font-size: 1rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.release-text p { margin: 0; font-size: 0.75rem; color: #00f2ff; font-weight: bold; }


.badge {
    font-size: 9px;
    background: #00f2ff;
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 900;
    margin-bottom: 5px;
    display: inline-block; /* Pour que la marge s'applique bien */
}

.play-icon {
    color: #00f2ff;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.5));
    margin-left: auto; /* Pousse le bouton à l'extrémité droite */
}
