@font-face {
    font-family: 'Valorant';
    src: url('../font/Valorant_Font.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Valorant', 'Arial', sans-serif;
    background: #0f1923;
    color: white;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

button, 
input, 
select, 
textarea {
  font-family: inherit;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 30%, rgba(255, 70, 85, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 75% 80%, rgba(255, 70, 85, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 200px auto 120px auto;
    padding: 40px 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 18px;
    border: 1px solid rgba(255,70,85,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

h1 {
    font-weight: 700;
    text-transform: uppercase;
    color: #ff5c5c;
    font-size: 32px;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(255,70,85,0.2);
    margin-bottom: 30px;
}

p.intro {
    text-align: center;
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
    font-size: 16px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

label {
    text-transform: uppercase;
    color: #ffdfdf;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,70,85,0.2);
    color: white;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    appearance: none;
}




/* Correction ici : options visibles */
select option {
    background-color: #0f1923;
    color: white;
}

input:focus, select:focus, textarea:focus {
    border-color: #ff4655;
    box-shadow: 0 0 10px rgba(255,70,85,0.3);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #ff4655, #ff6b6b);
    color: white;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(90deg, #ff6b6b, #ff8080);
    box-shadow: 0 0 25px rgba(255,70,85,0.4);
}

.note {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-top: 30px;
}

footer {
    text-align: center;
    margin-top: 60px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 25px;
        margin: 200px 20px;
    }
    h1 { font-size: 24px; }
}

.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(255, 70, 85, 0.2);
    border-bottom: 1px solid rgba(255, 70, 85, 0.2);
}

.lien_page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.nav_left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.nav_links {
    display: flex;
    gap: 45px;
}

.logo_navbar {
    height: 55px;
    width: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(255, 70, 85, 0.3));
}

.logo_navbar:hover {
    transform: scale(1.15) rotate(14deg);
    filter: drop-shadow(0 0 20px rgba(255, 70, 85, 0.6));
}

.links {
    text-decoration: none;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.links::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4655, transparent);
    transition: transform 0.3s ease;
}

.links:hover {
    color: #ff4655;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
}

.links:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav_icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon_btn {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.15), rgba(255, 70, 85, 0.05));
    border: 1.5px solid rgba(255, 70, 85, 0.4);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.icon_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 70, 85, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.icon_btn:hover::before {
    width: 300px;
    height: 300px;
}

.icon_btn:hover {
    background: linear-gradient(135deg, #ff4655, #ff2a3d);
    border-color: #ff4655;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 70, 85, 0.5);
}

.icon_btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .lien_page {
        flex-direction: column;
        gap: 20px;
        padding: 15px 30px;
    }
    .nav_left {
        flex-direction: column;
        gap: 20px;
    }
    .nav_links {
        gap: 20px;
        white-space: nowrap;
    }
}