* {
    margin: 0;
}

.tuhundred_20260410_header {
    background-color: #000 !important;
    color: white !important;
    /* position: fixed !important; */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.tuhundred_20260410_top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 25px !important;
    position: relative !important;
}

.tuhundred_20260410_title {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #fff !important;
    flex: 1 !important;
}

.tuhundred_20260410_title a {
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.tuhundred_20260410_logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.tuhundred_20260410_logo img {
    height: 50px !important;
    display: block !important;
}

.tuhundred_20260410_auth {
    display: flex !important;
    gap: 32px !important;
}

.tuhundred_20260410_authBtn {
    background: linear-gradient(45deg, #ff66ff, #ffcc00, #ff6600, #cc00ff) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px 18px !important;
    cursor: pointer !important;
    animation: tuhundred_20260410_explode 1.5s infinite ease-in-out !important;
}

.tuhundred_20260410_authBtn a {
    color: white !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

@keyframes tuhundred_20260410_explode {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 0 5px #ff99ff, 0 0 10px #ffcc00 !important;
    }

    50% {
        transform: scale(1.2) !important;
        box-shadow: 0 0 25px #ff33ff, 0 0 50px #ffff00 !important;
    }

    100% {
        transform: scale(1) !important;
        box-shadow: 0 0 5px #ff99ff, 0 0 10px #ffcc00 !important;
    }
}

.tuhundred_20260410_navbar {
    background-color: #111 !important;
    text-align: center !important;
}

.tuhundred_20260410_navList {
    list-style: none !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 25px !important;
    padding: 12px 0 !important;
    margin-bottom: 0px !important;
}

.tuhundred_20260410_navItem a {
    color: #fff !important;
    font-size: 17px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.3s, transform 0.3s !important;
}

.tuhundred_20260410_navItem a:hover {
    color: #00ffc8 !important;
    transform: scale(1.1) !important;
}

.tuhundred_20260410_menuToggle {
    display: none !important;
    background: none !important;
    border: none !important;
    font-size: 28px !important;
    color: white !important;
    cursor: pointer !important;
}

.tuhundred_20260410_closeBtn {
    display: none !important;
}

.tuhundred_20260410_authMobile {
    display: none !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 15px 0 !important;
    background-color: #000 !important;
}

@media (max-width: 768px) {
    .tuhundred_20260410_title {
        display: none !important;
    }

    .tuhundred_20260410_menuToggle {
        display: block !important;
    }

    .tuhundred_20260410_auth {
        display: none !important;
    }

    .tuhundred_20260410_logo {
        position: static !important;
        transform: none !important;
        margin: 0 auto !important;
    }

    .tuhundred_20260410_navbar {
        z-index: 999999;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        height: 100vh !important;
        background-color: #000 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: right 0.4s ease !important;
    }

    .tuhundred_20260410_navbar.active {
        right: 0 !important;
    }

    .tuhundred_20260410_closeBtn {
        display: block !important;
        position: absolute !important;
        top: 20px !important;
        right: 25px !important;
        font-size: 35px !important;
        color: white !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
    }

    .tuhundred_20260410_navList {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .tuhundred_20260410_authMobile {
        display: flex !important;
    }
}