html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:Arial;
background:#011531;
color:rgb(253, 253, 253);
text-align:center;
}

.navbar{
display:flex;
justify-content:center;
padding:20px;
position:sticky;
top:0;
z-index:999;
}

.nav-container{
background:#16263c;
border-radius:12px;
width:1100px;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 25px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:40px;
}

.nav-container ul{
display:flex;
gap:30px;
list-style:none;
}

.nav-container a{
text-decoration:none;
color:white;
}

.hero{
padding:120px 20px;
}

.hero h1{
font-size:60px;
margin:0;
}

.hero h2{
font-size:60px;
color:#3c6df0;
margin-top:-10px;
}

.btn{
background:#3c6df0;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
color:white;
display:inline-block;
margin-top:20px;
}

.slider-container{
position:relative;
width:900px;
margin:auto;
}

.slider-container img{
width:100%;
border-radius:10px;
}

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
border:none;
color:white;
font-size:25px;
padding:10px 15px;
cursor:pointer;
border-radius:6px;
}

.arrow.left{left:10px;}
.arrow.right{right:10px;}

.dots{
display:flex;
justify-content:center;
margin-top:15px;
gap:10px;
}

.dot{
width:12px;
height:12px;
background:#555;
border-radius:50%;
cursor:pointer;
}

.dot.active{
background:#3c6df0;
}

.divisions{
margin-top:80px;
}

.division-wrapper{
width:700px;
margin:auto;
overflow:hidden;
}

.division-wrapper{
width:900px;
margin:auto;
overflow:hidden;
position:relative;
}

.division-track{

display:flex;
gap:50px;

white-space:nowrap;

animation:scroll 18s linear infinite;

width:max-content;

}

.division-track span{

background:#16263c;

padding:12px 25px;

border-radius:25px;

font-weight:500;

transition:.3s;

}

.division-track span:hover{

background:#3c6df0;

transform:scale(1.1);

}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.division-track span{
background:#16263c;
padding:10px 20px;
border-radius:20px;
transition:.3s;
}

.division-track span:hover{
background:#3c6df0;
transform:scale(1.1);
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.advantages{
margin-top:120px;
}

.advantages-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
max-width:1000px;
margin:auto;
margin-top:40px;
}

.adv-card{
background:#16263c;
padding:25px;
border-radius:10px;
}

.ranks{
margin-top:120px;
}

.cards{
display:flex;
justify-content:center;
gap:40px;
margin-top:40px;
}

.rank-card{
background:#16263c;
padding:20px;
border-radius:12px;
width:220px;
}

.rank-card img{
width:100%;
border-radius:10px;
}

.faq{
max-width:700px;
margin:auto;
margin-top:100px;
}

.faq-item{
background:#16263c;
margin-top:10px;
border-radius:6px;
text-align:left;
}

.faq-question{
width:100%;
background:none;
border:none;
color:white;
padding:15px;
cursor:pointer;
text-align:left;
}

.faq-answer{
display:none;
padding:15px;
border-top:1px solid rgba(255,255,255,0.1);
}

.choice-group{
display:flex;
gap:20px;
margin-top:10px;
}

.choice{
background:#0e2547;
padding:10px 20px;
border-radius:8px;
cursor:pointer;
display:flex;
align-items:center;
gap:8px;
}

.submit-btn{
margin-top:25px;
padding:14px;
background:#3c6df0;
border:none;
border-radius:8px;
color:white;
width:100%;
}

.toast{
position:fixed;
bottom:30px;
right:30px;
background:#1c2d45;
padding:15px 25px;
border-radius:8px;
opacity:0;
transform:translateY(20px);
transition:.4s;
}

.toast.show{
opacity:1;
transform:translateY(0);
}

/* SECTIONS FORMULAIRE */

.form-section{

background:#16263c;

padding:30px;

border-radius:10px;

margin-top:25px;

}

.form-section h2{

margin-bottom:20px;

border-bottom:1px solid rgba(255,255,255,0.1);

padding-bottom:8px;

}

/* GROUPES */

.form-group{

margin-bottom:18px;

display:flex;

flex-direction:column;

}

.form-group label{

margin-bottom:6px;

font-size:14px;

opacity:0.9;

}

/* INPUT */

input,
textarea{

width:100%;

padding:12px;

border-radius:6px;

border:none;

background:#0e2547;

color:white;

font-size:14px;

}

textarea{

min-height:110px;

resize:vertical;

}

/* RADIO STYLE */

.radio-row{

display:flex;

gap:20px;

margin-top:8px;

}

.radio-card{

background:#0e2547;

padding:10px 20px;

border-radius:8px;

display:flex;

align-items:center;

gap:8px;

cursor:pointer;

transition:0.2s;

}

.radio-card:hover{

background:#3c6df0;

}

.radio-card input{

accent-color:#3c6df0;

}

/* BOUTON */

.submit-btn{

margin-top:30px;

padding:14px;

background:#3c6df0;

border:none;

border-radius:8px;

color:white;

width:100%;

font-size:16px;

cursor:pointer;

}

/* FORMULAIRE CENTRÉ */

.recruit-wrapper{

display:flex;

justify-content:center;

align-items:center;

padding:120px 20px;

}

.recruit-card{

background:#16263c;

padding:40px;

border-radius:12px;

max-width:650px;

width:100%;

text-align:left;

box-shadow:0 0 25px rgba(0,0,0,0.4);

}

.recruit-card h1{

text-align:center;

margin-bottom:30px;

}

.form-section{

background:#1c2d45;

padding:20px;

border-radius:8px;

margin-top:20px;

}

input:focus,
textarea:focus{

outline:none;

box-shadow:0 0 8px rgba(60,109,240,0.5);

}

.recruit-card{

border:1px solid rgba(255,255,255,0.05);

}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:20px;
}

.discord-main-btn{
background:#5865F2;
padding:12px 25px;
border-radius:8px;
color:white;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
font-weight:500;
transition:0.2s;
}

.discord-main-btn img{
width:20px;
}

.discord-main-btn:hover{
transform:scale(1.05);
}

.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:flex;
justify-content:center;
align-items:center;
z-index:1000;
}

.modal-content{
background:#0e2547;
padding:40px;
border-radius:10px;
max-width:500px;
text-align:left;
}

.close-modal{
position:absolute;
top:15px;
right:20px;
cursor:pointer;
font-size:20px;
}

.modal-btn{
margin-top:20px;
background:#3c6df0;
border:none;
padding:10px 20px;
border-radius:8px;
color:white;
cursor:pointer;
}
.footer-info{
margin-top:80px;
padding:30px;
background:#000d1f;
text-align:center;
}

.footer-main{
font-size:16px;
}

.footer-small{
font-size:13px;
opacity:0.7;
}

.main-btn{
background:#3c6df0;
padding:12px 25px;
border-radius:8px;
color:white;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
font-weight:500;
transition:0.2s;
}

.main-btn:hover{
transform:scale(1.05);
}

.toast{
position:fixed;
bottom:30px;
right:30px;
background:#1c2d45;
padding:15px 25px;
border-radius:8px;
opacity:0;
transform:translateY(20px);
transition:.4s;
}

.toast.show{
opacity:1;
transform:translateY(0);
}
.police-lights{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:-1;
background:linear-gradient(120deg,
rgba(255,0,0,0.15),
rgba(0,0,255,0.15));
animation:lights 3s infinite alternate;
}

@keyframes lights{

0%{
background:linear-gradient(120deg,
rgba(255,0,0,0.2),
rgba(0,0,255,0.05));
}

50%{
background:linear-gradient(120deg,
rgba(255,0,0,0.05),
rgba(0,0,255,0.25));
}

100%{
background:linear-gradient(120deg,
rgba(255,0,0,0.25),
rgba(0,0,255,0.05));
}

}
.modal-content{

background:#0e2547;
padding:40px;
border-radius:10px;
max-width:520px;
text-align:left;
line-height:1.6;

}

.modal-content ul{

margin:20px 0;
padding-left:20px;

}

.modal-content li{

margin-bottom:8px;

}