/* ================================================
   NAVBAR V3 - Clean Responsive Navigation
   Desktop | Tablet | Mobile
   ================================================ */

/* ---- Base Navbar ---- */
.navbar-v3 {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    width: 100%;
    background: rgba(8, 12, 35, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-v3.scrolled {
    background: rgba(6, 10, 30, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(79, 138, 255, 0.2);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ---- Logo ---- */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.navbar-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4f8aff, #9d6fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.navbar-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ---- Desktop Nav Links ---- */
.navbar-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.navbar-links > li {
    position: relative;
}

.navbar-links > li > a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar-links > li > a:hover,
.navbar-links > li > a.active {
    color: #ffffff;
    background: rgba(79, 138, 255, 0.15);
}

.navbar-links > li > a.active {
    background: rgba(79, 138, 255, 0.2);
    color: #4f8aff;
}

.navbar-links > li > a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.navbar-links > li > a.active i,
.navbar-links > li > a:hover i {
    opacity: 1;
}

/* ---- Admin Submenu ---- */
.navbar-links .has-submenu > a {
    cursor: pointer;
}

.submenu-arrow {
    font-size: 0.7rem !important;
    margin-left: 0.2rem;
    transition: transform 0.2s ease;
}

.navbar-links .has-submenu:hover .submenu-arrow {
    transform: rotate(180deg);
}

.navbar-links .submenu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    max-height: 70vh;
    overflow-y: auto;
    background: rgba(10, 15, 40, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 138, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    list-style: none;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    z-index: 10000;
    scrollbar-width: thin;
    scrollbar-color: rgba(79,138,255,0.3) transparent;
}

.navbar-links .submenu::-webkit-scrollbar { width: 4px; }
.navbar-links .submenu::-webkit-scrollbar-thumb { background: rgba(79,138,255,0.3); border-radius: 2px; }

.navbar-links .has-submenu:hover .submenu {
    display: block;
    animation: submenuFadeIn 0.2s ease;
}

@keyframes submenuFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.navbar-links .submenu li.submenu-section {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(79, 138, 255, 0.7);
    padding: 0.6rem 0.75rem 0.3rem;
    pointer-events: none;
}

.navbar-links .submenu li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.navbar-links .submenu li a:hover {
    background: rgba(79, 138, 255, 0.15);
    color: #ffffff;
}

.navbar-links .submenu li a i {
    width: 16px;
    text-align: center;
    color: #4f8aff;
    font-size: 0.8rem;
}

/* ---- Right Side ---- */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* ---- Cart ---- */
.navbar-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.navbar-cart:hover {
    background: rgba(79, 138, 255, 0.2);
    color: #ffffff;
    border-color: rgba(79, 138, 255, 0.3);
}

.navbar-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #4f8aff, #9d6fff);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid rgba(6,10,30,0.9);
}

/* ---- User Button & Dropdown ---- */
.navbar-user {
    position: relative;
}

.navbar-user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.navbar-user-btn:hover,
.navbar-user.open .navbar-user-btn {
    background: rgba(79, 138, 255, 0.15);
    border-color: rgba(79, 138, 255, 0.3);
    color: #fff;
}

.navbar-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f8aff, #9d6fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
}

.navbar-user-avatar.lg {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.navbar-user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-user-btn .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.navbar-user.open .navbar-user-btn .fa-chevron-down {
    transform: rotate(180deg);
}

.navbar-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: rgba(10, 15, 40, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 138, 255, 0.2);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    z-index: 10001;
    animation: submenuFadeIn 0.2s ease;
}

.navbar-dropdown.open {
    display: block;
}

.navbar-dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(79, 138, 255, 0.08);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-dropdown-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.navbar-dropdown-role {
    font-size: 0.75rem;
    color: rgba(79, 138, 255, 0.8);
    margin-top: 2px;
}

.navbar-dropdown-body {
    padding: 0.5rem;
}

.navbar-dropdown-body a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.navbar-dropdown-body a:hover {
    background: rgba(79, 138, 255, 0.15);
    color: #fff;
}

.navbar-dropdown-body a i {
    width: 16px;
    text-align: center;
    color: #4f8aff;
    font-size: 0.8rem;
}

.navbar-logout {
    color: rgba(248, 113, 113, 0.8) !important;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.6rem !important;
}

.navbar-logout:hover {
    color: #f87171 !important;
    background: rgba(248, 113, 113, 0.1) !important;
}

.navbar-logout i { color: #f87171 !important; }

/* ---- Auth Buttons ---- */
.navbar-auth {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-btn-login {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar-btn-login:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.navbar-btn-register {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: linear-gradient(135deg, #4f8aff, #9d6fff);
    border: none;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar-btn-register:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 138, 255, 0.4);
}

/* ---- Hamburger Button ---- */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: rgba(79, 138, 255, 0.15);
    border: 1px solid rgba(79, 138, 255, 0.35);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.navbar-hamburger:hover {
    background: rgba(79, 138, 255, 0.3);
    border-color: rgba(79, 138, 255, 0.6);
}

.navbar-hamburger span {
    display: block;
    width: 20px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ================================================
   DRAWER (Mobile/Tablet Slide-in Menu)
   ================================================ */

.nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(8, 12, 35, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(79, 138, 255, 0.2);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-drawer.open {
    right: 0;
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(79, 138, 255, 0.06);
    flex-shrink: 0;
}

.nav-drawer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.nav-drawer-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.nav-drawer-close {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.nav-drawer-close:hover {
    background: rgba(248, 113, 113, 0.2);
    border-color: rgba(248, 113, 113, 0.3);
    color: #f87171;
}

.nav-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(79,138,255,0.3) transparent;
}

.nav-drawer-body::-webkit-scrollbar { width: 4px; }
.nav-drawer-body::-webkit-scrollbar-thumb { background: rgba(79,138,255,0.3); border-radius: 2px; }

/* Drawer Search */
.nav-drawer-search {
    position: relative;
    margin-bottom: 1rem;
}

.nav-drawer-search i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(79, 138, 255, 0.6);
    font-size: 0.85rem;
    pointer-events: none;
}

.nav-drawer-search input {
    width: 100%;
    padding: 0.65rem 0.75rem 0.65rem 2.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.nav-drawer-search input::placeholder { color: rgba(255,255,255,0.35); }
.nav-drawer-search input:focus { border-color: rgba(79, 138, 255, 0.5); }

/* Drawer Section */
.nav-drawer-section {
    margin-bottom: 0.5rem;
}

.nav-drawer-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(79, 138, 255, 0.6);
    padding: 0.5rem 0.5rem 0.3rem;
    pointer-events: none;
}

.nav-drawer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.75rem 0;
}

.nav-drawer-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.75rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.15s ease;
    margin-bottom: 2px;
}

.nav-drawer-link:hover,
.nav-drawer-link.active {
    background: rgba(79, 138, 255, 0.15);
    color: #ffffff;
}

.nav-drawer-link.active {
    color: #4f8aff;
    background: rgba(79, 138, 255, 0.12);
}

.nav-drawer-link i {
    width: 18px;
    text-align: center;
    color: #4f8aff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Drawer User Info */
.nav-drawer-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(79, 138, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.nav-drawer-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f8aff, #9d6fff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.nav-drawer-user-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.nav-drawer-user-role {
    font-size: 0.75rem;
    color: rgba(79, 138, 255, 0.8);
    margin-top: 1px;
}

/* Drawer Admin Accordion */
.nav-drawer-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.65rem 0.75rem;
    background: rgba(79, 138, 255, 0.1);
    border: 1px solid rgba(79, 138, 255, 0.2);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2px;
    transition: all 0.2s ease;
}

.nav-drawer-accordion:hover {
    background: rgba(79, 138, 255, 0.18);
    color: #fff;
}

.nav-drawer-accordion .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.nav-drawer-accordion-body {
    display: none;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
}

.nav-drawer-accordion-body.open {
    display: block;
    animation: drawerAccordionOpen 0.2s ease;
}

@keyframes drawerAccordionOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Drawer logout */
.nav-drawer-logout {
    color: rgba(248, 113, 113, 0.8) !important;
}

.nav-drawer-logout:hover {
    background: rgba(248, 113, 113, 0.1) !important;
    color: #f87171 !important;
}

.nav-drawer-logout i { color: #f87171 !important; }

/* Drawer Auth Buttons */
.nav-drawer-auth {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.5rem 0;
}

.nav-drawer-btn-login,
.nav-drawer-btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-drawer-btn-login {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
}

.nav-drawer-btn-login:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.nav-drawer-btn-register {
    background: linear-gradient(135deg, #4f8aff, #9d6fff);
    border: none;
    color: #fff;
}

.nav-drawer-btn-register:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(79, 138, 255, 0.4);
}

/* ================================================
   OVERLAY
   ================================================ */

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    z-index: 10001;
}

.nav-overlay.open {
    display: block;
    animation: overlayFadeIn 0.3s ease;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

/* Large Desktop: full nav */
@media (min-width: 1281px) {
    .navbar-hamburger { display: none !important; }
    .navbar-links { display: flex; }
    .navbar-auth { display: flex; }
    .navbar-user { display: block; }
}

/* Tablet & Mobile: hamburger only */
@media (max-width: 1280px) {
    .navbar-hamburger {
        display: flex !important;
    }

    .navbar-links {
        display: none !important;
    }

    /* Hide text labels, keep icons in right */
    .navbar-user-name {
        display: none;
    }

    .navbar-user-btn .fa-chevron-down {
        display: none;
    }

    .navbar-auth {
        display: none !important;
    }

    .navbar-inner {
        padding: 0 1.25rem;
        height: 65px;
    }

    .navbar-logo-img {
        height: 36px;
    }
}

/* Mobile: tighter still */
@media (max-width: 480px) {
    .navbar-inner {
        padding: 0 1rem;
        height: 60px;
    }

    .navbar-logo-text {
        font-size: 1rem;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-drawer {
        width: 100%;
        right: -100%;
    }
}

/* ================================================
   KEEP PAGE CONTENT BELOW FIXED NAVBAR
   ================================================ */
body {
    padding-top: 70px;
}

@media (max-width: 480px) {
    body { padding-top: 60px; }
}

/* Hide sticky player when drawer open */
body.nav-drawer-open .sticky-player {
    display: none !important;
}

/* ================================================
   RAVEHEART CYAN + DARK NAVBAR SKIN
   ================================================ */

.navbar-v3 {
    background: rgba(4, 10, 14, 0.72);
    border-bottom: 1px solid rgba(0, 234, 255, 0.2);
}

.navbar-v3.scrolled {
    background: rgba(2, 8, 12, 0.95);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55), 0 0 16px rgba(0, 234, 255, 0.14);
    border-bottom: 1px solid rgba(0, 234, 255, 0.35);
}

.navbar-logo-text {
    color: #f1fdff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.22);
}

.navbar-links > li > a {
    color: rgba(229, 252, 255, 0.82);
}

.navbar-links > li > a:hover,
.navbar-links > li > a.active {
    color: #f7fdff;
    background: rgba(0, 234, 255, 0.13);
}

.navbar-links > li > a.active {
    color: #68f4ff;
    background: rgba(0, 234, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(0, 234, 255, 0.22) inset;
}

.navbar-links .submenu {
    background: rgba(3, 10, 14, 0.98);
    border: 1px solid rgba(0, 234, 255, 0.22);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 234, 255, 0.08);
    scrollbar-color: rgba(0, 234, 255, 0.35) transparent;
}

.navbar-links .submenu::-webkit-scrollbar-thumb {
    background: rgba(0, 234, 255, 0.35);
}

.navbar-links .submenu li.submenu-section {
    color: rgba(103, 244, 255, 0.88);
}

.navbar-links .submenu li a:hover {
    background: rgba(0, 234, 255, 0.14);
}

.navbar-links .submenu li a i {
    color: #58f2ff;
}

.navbar-cart {
    color: rgba(232, 253, 255, 0.88);
    background: rgba(0, 234, 255, 0.08);
    border: 1px solid rgba(0, 234, 255, 0.22);
}

.navbar-cart:hover {
    background: rgba(0, 234, 255, 0.2);
    border-color: rgba(0, 234, 255, 0.45);
    box-shadow: 0 0 16px rgba(0, 234, 255, 0.28);
}

.navbar-cart-count {
    background: linear-gradient(135deg, #00eaff, #07c9e0);
    color: #001318;
    border: 2px solid rgba(3, 11, 15, 0.95);
}

.navbar-user-btn {
    background: rgba(0, 234, 255, 0.08);
    border-color: rgba(0, 234, 255, 0.22);
    color: rgba(236, 253, 255, 0.86);
}

.navbar-user-btn:hover,
.navbar-user.open .navbar-user-btn {
    background: rgba(0, 234, 255, 0.16);
    border-color: rgba(0, 234, 255, 0.42);
}

.navbar-user-avatar,
.nav-drawer-user-avatar {
    background: linear-gradient(135deg, #00eaff, #09bfd6);
    color: #001017;
}

.navbar-dropdown {
    background: rgba(3, 10, 14, 0.98);
    border-color: rgba(0, 234, 255, 0.22);
}

.navbar-dropdown-header {
    background: rgba(0, 234, 255, 0.09);
}

.navbar-dropdown-role,
.navbar-dropdown-body a i {
    color: rgba(104, 244, 255, 0.92);
}

.navbar-dropdown-body a:hover {
    background: rgba(0, 234, 255, 0.14);
}

.navbar-btn-login {
    border-color: rgba(0, 234, 255, 0.36);
    color: rgba(236, 253, 255, 0.88);
    background: rgba(0, 234, 255, 0.08);
}

.navbar-btn-login:hover {
    border-color: rgba(0, 234, 255, 0.58);
    background: rgba(0, 234, 255, 0.15);
}

.navbar-btn-register {
    background: linear-gradient(135deg, #00eaff, #09bfd6);
    color: #001017;
}

.navbar-btn-register:hover {
    box-shadow: 0 6px 20px rgba(0, 234, 255, 0.34);
}

.navbar-hamburger {
    background: rgba(0, 234, 255, 0.16);
    border-color: rgba(0, 234, 255, 0.36);
}

.navbar-hamburger:hover {
    background: rgba(0, 234, 255, 0.28);
    border-color: rgba(0, 234, 255, 0.58);
}

.nav-drawer {
    background: rgba(2, 9, 13, 0.98);
    border-left: 1px solid rgba(0, 234, 255, 0.24);
}

.nav-drawer-header,
.nav-drawer-user-info {
    background: rgba(0, 234, 255, 0.08);
}

.nav-drawer-body {
    scrollbar-color: rgba(0, 234, 255, 0.36) transparent;
}

.nav-drawer-body::-webkit-scrollbar-thumb {
    background: rgba(0, 234, 255, 0.36);
}

.nav-drawer-search i,
.nav-drawer-section-label,
.nav-drawer-link i,
.nav-drawer-user-role {
    color: rgba(104, 244, 255, 0.9);
}

.nav-drawer-search input {
    border-color: rgba(0, 234, 255, 0.2);
    background: rgba(0, 234, 255, 0.06);
}

.nav-drawer-search input:focus {
    border-color: rgba(0, 234, 255, 0.52);
}

.nav-drawer-link:hover,
.nav-drawer-link.active {
    background: rgba(0, 234, 255, 0.14);
}

.nav-drawer-link.active {
    color: #67f4ff;
}

.nav-drawer-accordion {
    background: rgba(0, 234, 255, 0.11);
    border-color: rgba(0, 234, 255, 0.26);
}

.nav-drawer-accordion:hover {
    background: rgba(0, 234, 255, 0.18);
}

.nav-drawer-btn-login {
    background: rgba(0, 234, 255, 0.08);
    border-color: rgba(0, 234, 255, 0.26);
}

.nav-drawer-btn-login:hover {
    background: rgba(0, 234, 255, 0.15);
}

.nav-drawer-btn-register {
    background: linear-gradient(135deg, #00eaff, #09bfd6);
    color: #001017;
}

.nav-drawer-btn-register:hover {
    box-shadow: 0 6px 20px rgba(0, 234, 255, 0.34);
}
