@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: #0b121a;
    color: #e4e4e4;
    line-height: 1.7;
    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 25% 40%, rgba(255, 50, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 50, 70, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 200px auto 140px auto;
    padding: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius: 18px;
    border: 1px solid rgba(255,50,70,0.15);
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    margin-top: 60px;
}

h1 {
    font-size: 36px;
    color: #ff2a4e;
    text-align: center;
    text-shadow: 0 0 25px rgba(255, 0, 51, 0.6), 0 0 10px rgba(255, 0, 51, 0.3);
}

h2 {
    font-size: 22px;
    color: #ff5b73;
    border-left: 4px solid #ff2a4e;
    padding-left: 14px;
    text-shadow: 0 0 15px rgba(255, 90, 100, 0.3);
}

h3 {
    font-size: 16px;
    color: #ffb4b4;
    text-shadow: 0 0 8px rgba(255, 100, 120, 0.2);
}

p, li {
    color: rgba(240, 240, 240, 0.95);
    font-size: 15px;
    margin-bottom: 14px;
}

p.lead {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 24px;
}

ol, ul {
    margin-left: 25px;
    margin-bottom: 14px;
}

blockquote {
    margin: 20px 0;
    padding: 12px 20px;
    border-left: 4px solid rgba(255,70,85,0.4);
    background: rgba(255,255,255,0.03);
    color: #dcdcdc;
    font-style: italic;
}

.notice {
    margin-top: 30px;
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255,50,70,0.08), rgba(255,50,70,0.02));
    border: 1px solid rgba(255,50,70,0.15);
    color: rgba(255,255,255,0.9);
}

.small {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

footer {
    margin-top: 50px;
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

@media (max-width: 768px) {
    .content-wrapper {
        margin: 200px 20px;
        padding: 25px;
    }
    h1 {
        font-size: 26px;
    }
}

.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;
    }
}