* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}
 
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    z-index: 100;
}
 
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
 
nav ul a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
 
nav ul a:hover {
    color: #a855f7;
}
 
/* ── Petit Logo Abysz Violet Néon ── */
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #a855f7;
    text-shadow: 0 0 20px #a855f7;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}
 
.logo img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    border-radius: 8px;
}
 
/* ── Hero Accueil ── */
.hero {
    height: 100vh;
    min-height: 600px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
 
.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 7rem;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.9);
    margin-bottom: 1rem;
}
 
.slogan {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255,255,255,0.9), 0 0 40px rgba(255,255,255,0.5);
}
 
/* ── Boutons ── */
.btn {
    background: #a855f7;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}
 
.btn:hover {
    background: #c084fc;
    transform: scale(1.1);
    box-shadow: 0 0 30px #a855f7;
}
 
/* ── Sections textuelles ── */
section {
    padding: 120px 5% 100px;
    text-align: center;
}
 
h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #a855f7;
    margin-bottom: 40px;
}
 
.subtitle {
    font-size: 1.3rem;
    color: #aaa;
    margin-bottom: 50px;
}

/* ── Grille Roster (RÉINTÉGRÉ) ── */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
 
.player-card {
    background: #1a1a1a;
    border-radius: 20px;
    border: 2px solid #a855f7;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
 
.player-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}
 
.player-avatar-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}
 
.player-info {
    padding: 20px;
    text-align: center;
}
 
.player-pseudo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #a855f7;
    margin-bottom: 5px;
}
 
.player-role {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
 
.voir-profil {
    display: inline-block;
    font-size: 0.85rem;
    color: #a855f7;
    border: 1px solid #a855f7;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}
 
.player-card:hover .voir-profil {
    background: #a855f7;
    color: white;
}

/* ── Modals / Popups (RÉINTÉGRÉ) ── */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
 
.popup-overlay.active {
    display: flex;
}
 
.popup {
    background: #1a1a1a;
    border: 2px solid #a855f7;
    border-radius: 24px;
    max-width: 550px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
 
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
}
 
.popup-body {
    padding: 30px;
    text-align: center;
}
 
.popup-pseudo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #a855f7;
    margin-bottom: 5px;
}
 
.popup-role {
    font-size: 1rem;
    color: #67e8f9;
    margin-bottom: 25px;
}
 
.popup-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
 
.stat {
    background: #111;
    border-radius: 12px;
    padding: 12px;
    flex: 1;
}
 
.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #a855f7;
}
 
.stat-label {
    font-size: 0.7rem;
    color: #777;
    text-transform: uppercase;
}
 
.popup-bio {
    color: #bbb;
    margin-bottom: 25px;
}
 
.popup-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}
 
.social-btn {
    background: #111;
    color: #a855f7;
    border: 1px solid #a855f7;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}
 
.social-btn:hover {
    background: #a855f7;
    color: white;
}
 
footer {
    padding: 40px;
    background: #111;
    margin-top: 50px;
    text-align: center;
}
 
/* ── Liens Réseaux Sociaux Nav ── */
.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
 
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}
 
.social-links a:hover {
    color: #a855f7;
    transform: translateY(-2px);
}
