@font-face {
    font-family: 'Valorant';
    src: url('../font/Valorant_Font.ttf');
    font-weight: normal;
    font-style: normal;
    text-align: justify;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Valorant', Arial, sans-serif;
    background: #0f1923;
    color: #ffffff;
    line-height: 1.7;
    padding: 60px 0;
    overflow-x: hidden;
}

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 15% 40%, rgba(255,70,85,0.12) 0%, transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(255,70,85,0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 200px auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,70,85,0.15);
    box-shadow: 0 10px 45px rgba(0,0,0,0.6);
}

h1, h2 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 35px rgba(255, 70, 85, 0.4);
}

h1 {
    font-size: 32px;
    color: #ff4545;
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    color: #ff8c8c;
    margin-top: 35px;
    font-size: 18px;
}

p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin: 10px 0 25px;
    max-width: 900px;
}

.highlight {
    color: #ff5555;
    font-weight: bold;
}

footer {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 60px;
}

.divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, #ff0033, transparent);
    margin: 50px 0;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 25px;
        margin: 200px 15px;
    }
    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;
    }
}