/* Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fond mélangé Noir et Vert */
body {
    font-family: 'Arial', sans-serif;
    background: radial-gradient(circle, #0a0a0a, #0f1b2b, #03d8a9); /* Dégradé circulaire Noir -> Vert */
    color: #03d8a9; /* Texte Vert néon */
    position: relative;
}

/* Effet de fumée */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/smoke.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1; /* Transparence ajustable pour l'effet de fumée */
    z-index: -1; /* Place la fumée derrière le contenu */
}


/* Header */
.header {
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(3, 216, 169, 0.2);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px; /* Taille ajustée */
    height: auto;
}

.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    color: #03d8a9; /* Vert néon */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #0ff3ff; /* Bleu clair pour le survol */
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-buttons button {
    background-color: #03d8a9; /* Vert */
    color: #0a0a0a; /* Noir */
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-buttons button:hover {
    background-color: #0ff3ff; /* Bleu clair */
    color: #0a0a0a; /* Noir */
}

/* Section principale */
.hero {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #0a0a0a, #121212);
    color: #03d8a9;
    text-align: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    color: #0ff3ff; /* Bleu clair */
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #03d8a9; /* Vert néon */
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0; /* Gris clair */
}

.watch-video {
    background-color: transparent;
    border: 2px solid #03d8a9; /* Vert néon */
    color: #03d8a9;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.watch-video:hover {
    background-color: #03d8a9;
    color: #0a0a0a; /* Noir */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 20px;
    }
}

.features-section {
    background-color: #0a0a0a;
    padding: 50px 20px;
    text-align: center;
    color: #03d8a9;
}

.features-title {
    font-size: 36px;
    font-family: 'Arial Black', sans-serif;
    margin-bottom: 10px;
}

.features-description {
    font-size: 18px;
    margin-bottom: 20px;
}

.features-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 800px;
}

.features-subtitle {
    font-size: 28px;
    margin: 40px 0 20px;
    font-family: 'Arial Black', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background-color: #121212;
    padding: 20px;
    border: 1px solid #03d8a9;
    border-radius: 8px;
    text-align: center;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0ff3ff;
    font-family: 'Arial Black', sans-serif;
}

.feature-box p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
}


/* FOOTER */

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 50px 20px;
    color: #e0e0e0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-left h4,
.footer-center h4,
.footer-right h4 {
    color: #03d8a9;
    margin-bottom: 10px;
    font-family: 'Arial Black', sans-serif;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-center {
    text-align: center;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 5px;
    display: inline-block;
}

.footer-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.footer-links img:hover {
    transform: scale(1.1);
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right ul li {
    margin-bottom: 10px;
}

.footer-right ul li a {
    color: #03d8a9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right ul li a:hover {
    color: #0ff3ff;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    font-size: 12px;
    color: #e0e0e0;
}


/* PAGE RGLES */

/* Page de règlement */
.rules-page {
    background: radial-gradient(circle, #0a0a0a, #0f1b2b, #03d8a9); /* Fond dégradé */
    color: #e0e0e0;
    padding: 50px 20px;
    text-align: center; /* Centrer le texte */
    line-height: 1.8; /* Espacement des lignes */
}

/* Titre principal */
.rules-page h1 {
    font-size: 36px;
    color: #03d8a9;
    margin-bottom: 30px;
    font-family: 'Arial Black', sans-serif;
    text-align: center;
}

/* Ligne sous le titre */
.rules-page h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: #03d8a9;
    margin: 10px auto;
}

/* Paragraphe d'introduction */
.rules-page p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center; /* Texte centré */
}

/* Liste des règles */
.rules-list {
    list-style: decimal inside; /* Numérotation intégrée */
    margin: 20px auto;
    padding: 0;
    text-align: center; /* Texte centré */
}

.rules-list li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #e0e0e0;
}

/* Dernier paragraphe */
.rules-page p:last-child {
    font-weight: bold;
    color: #ffffff;
    margin-top: 30px;
    text-align: center; /* Texte centré */
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
}
