@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;
    overflow-x: hidden;
}

button, 
input, 
select, 
textarea {
  font-family: inherit;
}

.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;
}

.main-content {
    margin-top: 90px;
    padding: 40px 20px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.title {
    font-size: 72px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ff4655 50%, #ff8a92 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: 0 0 80px rgba(255, 70, 85, 0.5);
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-container {
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(255, 70, 85, 0.4);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 70, 85, 0.3);
    animation: fadeInUp 1s ease 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@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;
    }
    .title {
        font-size: 42px;
    }
    .main-content {
        padding: 20px 15px 0 15px;
        margin-top: 200px;
    }
}
