* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #f0f0f0;
    background: #0d0d0d;
    overflow-x: hidden;
}

header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid #CFA44C;
    padding: 10px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
}

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

.logo img { height: 50px; }

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #f0f0f0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.85rem;
    transition: 0.3s;
}

nav a:hover { color: #CFA44C; }

/* DROPDOWN MENU */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    z-index: 1;
    border: 1px solid #CFA44C;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-transform: none;
}
.dropdown-content a:hover { background-color: #333; }
.dropdown:hover .dropdown-content { display: block; }

.banner-section { margin-top: 70px; width: 100%; display: flex; }
.main-banner-img { width: 100%; height: auto; object-fit: cover; }

.content-area {
    background-color: #050505;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-layout {
    display: flex;
    max-width: 1200px;
    gap: 50px;
    margin-bottom: 60px;
}

.recruitment-text { flex: 2; }
.thematic-image { flex: 1; text-align: center; }
.fortnite-visual-img { max-width: 250px; filter: grayscale(0.5); }

.bottom-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

h2, h3 {
    font-family: 'Anton', sans-serif;
    color: #CFA44C;
    text-transform: uppercase;
}

h2 { font-size: 3rem; margin-bottom: 10px; }
.separator-line { height: 4px; background-color: #CFA44C; width: 80px; margin-bottom: 30px; }

.box-section {
    background-color: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 4px;
}

/* DETAILS / NEWS */
.news-item { cursor: pointer; background: #1a1a1a; padding: 15px; border-radius: 4px; }
.news-item summary { font-weight: bold; color: #fff; }
.news-intro { margin-top: 15px; font-size: 0.9rem; color: #aaa; }

.cta-button {
    display: inline-block;
    background-color: #CFA44C;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 30px;
    transition: 0.3s;
}

.cta-button:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(207, 164, 76, 0.4); }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; width: 100%; }
.stat-box { background: #1a1a1a; padding: 20px; text-align: center; border: 1px solid #333; }
.stat-val { display: block; font-family: 'Anton', sans-serif; font-size: 2rem; color: #fff; }

footer {
    background: #000;
    padding: 40px 20px;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-links { margin-top: 20px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #CFA44C; text-decoration: none; font-size: 0.9rem; font-weight: bold; }

@media (max-width: 800px) {
    .info-layout { flex-direction: column; }
    h2 { font-size: 2.2rem; }
    nav ul { gap: 15px; }
}
/* FORMULAIRE DE CANDIDATURE */
.quick-apply-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.quick-apply-form input, 
.quick-apply-form textarea {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #f0f0f0;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    font-size: 0.9rem;
}

.quick-apply-form input:focus, 
.quick-apply-form textarea:focus {
    outline: none;
    border-color: #CFA44C;
}

.quick-apply-form button {
    background-color: #CFA44C;
    color: #000;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-apply-form button:hover {
    background-color: #a8843e;
    transform: translateY(-2px);
}