/* Variables de couleurs */
:root {
    --primary-color: #ff6a00;
    --secondary-color: #ee0979;
    --bg-color: #050505;
    --text-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

/* En-tête */
header {
    text-align: center;
    padding: 50px 20px;
    background: radial-gradient(circle at center, #331100 0%, var(--bg-color) 70%);
    border-bottom: 2px solid var(--primary-color);
}

.logo-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 106, 0, 0.9)); }
    100% { filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.5)); }
}

.hero-text {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #ddd;
}

.broadcast-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.badge {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 5px;
    background: linear-gradient(45deg, #111, #222);
    border: 1px solid #444;
}

.badge.youtube { border-color: #ff0000; color: #ff0000; }
.badge.twitch { border-color: #9146ff; color: #9146ff; }

/* Vidéo */
.video-section {
    text-align: center;
    background-color: #111;
    padding: 50px 0;
}

video {
    width: 100%;
    max-width: 800px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
}

/* Règles */
.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.rule-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.rule-card h3 {
    color: var(--primary-color);
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.rule-card ul { padding-left: 20px; }
.rule-card li { margin-bottom: 10px; }

/* Équipe */
.team-section {
    background: linear-gradient(180deg, #111 0%, var(--bg-color) 100%);
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid #333;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-member {
    background: #000;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 250px;
}

.role {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.name {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid #222;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px;
}

.social-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #222;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    border: 1px solid #444;
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.copyright {
    color: #666;
    font-size: 0.8rem;
}
