/* --- BASE & CURSEUR --- */
* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    cursor: crosshair !important; 
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo { font-family: 'Rajdhani', sans-serif; }

/* --- NAVIGATION --- */
header {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px; background-color: rgba(10, 10, 10, 0.9);
    z-index: 1000; border-bottom: 1px solid #222;
}
.logo { font-size: 2rem; font-weight: 700; letter-spacing: 2px; }
.logo span { color: #ff003c; }

nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
nav ul li a {
    color: #fff; text-decoration: none; font-weight: 500;
    text-transform: uppercase; font-size: 0.9rem; transition: 0.3s;
}
nav ul li a:hover, nav ul li a.active { color: #9d00ff; }

/* --- BOUTONS --- */
.btn-primary, .btn-discord {
    padding: 15px 30px; text-decoration: none; font-weight: bold;
    text-transform: uppercase; border-radius: 4px; transition: 0.3s;
    display: inline-block; border: none;
}
.btn-primary { background-color: #ff003c; color: #fff; }
.btn-primary:hover { background-color: #fff; color: #ff003c; box-shadow: 0 0 20px #ff003c; }
.btn-discord { background-color: #5865F2; color: white; margin-left: 10px; }

/* --- SECTIONS --- */
.hero {
    height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1950&q=80') center/cover;
}
.hero h1 { font-size: 4rem; margin-bottom: 20px; }
.highlight { color: #9d00ff; text-shadow: 0 0 15px rgba(157, 0, 255, 0.6); }

.teams-section { padding: 80px 20px; text-align: center; }
.player-card {
    background: #111; border: 1px solid #222; padding: 25px;
    border-radius: 8px; transition: 0.3s; width: 200px;
}
.player-card:hover { border-color: #9d00ff; transform: translateY(-5px); }

/* --- ADMIN BUTTONS --- */
.btn-act { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; text-decoration: none; margin: 2px; border: 1px solid; }
.bg-blue { color: #009dff; border-color: #009dff; }
.bg-gray { color: #444; border-color: #222; }
.bg-yellow { color: #f3af19; border-color: #f3af19; }
.bg-red { color: #ff003c; border-color: #ff003c; }

/* --- ANIMATIONS --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeInUp 0.8s ease-out forwards; }