/* Sticky Header Title */
.dot {
    color: #00ff42;
    display: flex;
    align-items: center;
}
.dot_on {
    color: #00ff42;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    display: flex;
    align-items: center;
}

#top-title {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.95);
    color: #424242;
    font-family: 'font_sf';
    font-size: 1rem;
    letter-spacing: 1px;
    z-index: 1001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.top-title-links {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
}

.top-title-links .menu-logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.top-title-links .menu-logo-link:hover {
    transform: scale(1.1);
}

.top-title-links .menu-logo {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 0 3px rgba(0, 255, 65, 0.5));
}

.top-title-links .dot_on {
    position: absolute;
    right: 20px;
}

.top-title-link {
    color: #00ff42;
    text-decoration: none;
    font-family: 'font_TF4';
    font-size: 1rem;
    padding: 0 8px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.top-title-link:hover {
    color: #0d0d0d;
    background-color: #00ff42;
    text-shadow: none;
}

.top-title-link .ico_info {
    color: #b6b6b6;
    margin-right: 5px;
}

.top-title-link .link-text {
    text-decoration: none;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8), 0 0 12px rgba(0, 255, 65, 0.6);
}

#top-title b {
    color: #00ff42;
}

/* Navigation */
nav {
    position: fixed;
    font-family: 'font_TF4';
    top: 40px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-bottom: 0.5px solid #b6b6b6;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
}

nav li {
    display: flex;
    align-items: center;
}

/* Style des boutons de menu */
nav li:not(.nav-logo-desktop):not(.nav-logo-mobile) a {
    color: #00ff42;
    text-decoration: none;
    font-size: 1.0rem;
    background-color: rgba(0, 255, 65, 0.15);
    padding: 0 6px;
    height: 32px;
    letter-spacing: -2;
    display: flex;
    align-items: center;
    border: 1px solid #00ff42;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-shadow: 3 0 10px rgba(0, 255, 65, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

nav li:not(.nav-logo-desktop):not(.nav-logo-mobile) a .icon_top {
    display: inline-flex;
    justify-content: center;
    padding: 0 1px;
    align-items: center;
    color: #b6b6b6;
    font-size: 1.2rem;
    text-align: center;
}

nav li:not(.nav-logo-desktop):not(.nav-logo-mobile) a:hover {
    background-color: #00ff42;
    border: 1px solid #424242;
    color: #0d0d0d;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
}

/* Style du logo patte */
.nav-logo-desktop {
    padding-right: 9px;
}

.nav-logo-desktop a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-logo-desktop a:hover {
    transform: scale(1.1);
}

.menu-logo {
    height: 28px;
    width: auto;
    filter: drop-shadow(0 0 3px rgba(0, 255, 65, 0.5));
    display: block;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
    padding: 10px;
}

.burger-menu span {
    display: block;
    width: 42px;
    height: 2px;
    background-color: #00ff42;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .dot {
        margin-right: 5px;
    }

    #top-title {
        font-size: 0.85rem;
        letter-spacing: -1px;
        color: #b6b6b6;
        text-shadow: none;
        height: 30px;
    }

    .top-title-links {
        height: 30px;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .top-title-link {
        font-size: 0.75rem;
        padding: 0 5px;
    }

    .dot, .dot_on {
        display: none;
    }

    .nav-logo-desktop {
        display: none !important;
    }

    .burger-menu {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 180px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(0, 255, 65, 0.2);
        z-index: 1001;
        padding-top: 80px;
    }

    nav ul.active {
        right: 0;
    }

    nav li {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    nav a {
        width: 140px;
        justify-content: flex-start;
        font-size: 16px;
        height: auto;
        padding: 8px 15px;
        gap: 12px;
    }

    nav a .icon-fix {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        font-size: 20px;
        text-align: center;
    }


    .nav-logo-mobile {
        display: flex !important;
        margin-bottom: 15px;
    }

    .nav-logo-mobile .menu-logo {
        height: 20px;
        filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.8));
    }
}
