.navbar-novawave {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 3px solid #DDBE58;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo:hover .navbar-logo-image {
    filter: drop-shadow(0 6px 12px rgba(221, 190, 88, 0.6));
}

.navbar-logo img,
.navbar-logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(221, 190, 88, 0.4));
    transition: all 0.3s ease;
}

.navbar-logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #DDBE58 0%, #ffffff 50%, #DDBE58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Arial', 'Helvetica', sans-serif;
    padding: 15px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.navbar-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 190, 88, 0.2), transparent);
    transition: left 0.5s ease;
}

.navbar-menu a:hover::before {
    left: 100%;
}

.navbar-menu a:hover {
    color: #DDBE58 !important;
    background: rgba(221, 190, 88, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 190, 88, 0.3);
    text-shadow: 0 0 10px rgba(221, 190, 88, 0.5);
}

.navbar-account {
    background: linear-gradient(135deg, #DDBE58 0%, #c4a94a 100%);
    color: #1a1a1a !important;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Arial', 'Helvetica', sans-serif;
    padding: 15px 30px !important;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(221, 190, 88, 0.4);
    transition: all 0.3s ease;
    margin-left: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.navbar-account:hover {
    background: linear-gradient(135deg, #c4a94a 0%, #DDBE58 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(221, 190, 88, 0.6);
    color: #1a1a1a !important;
    text-shadow: 0 0 15px rgba(26, 26, 26, 0.3);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #DDBE58;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .navbar-container {
        height: 80px;
        padding: 0 20px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        flex-direction: column;
        padding: 25px 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 2px solid #DDBE58;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-menu li {
        width: 100%;
        text-align: center;
    }

    .navbar-menu a {
        padding: 18px 25px;
        border-radius: 0;
        font-size: 1.2rem;
    }

    .navbar-account {
        margin: 15px 25px;
        border-radius: 30px;
        padding: 18px 35px !important;
        font-size: 1.2rem;
    }

    .navbar-logo-text {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .navbar-container {
        height: 70px;
        padding: 0 15px;
    }

    .navbar-menu {
        top: 70px;
        padding: 20px 0;
    }

    .navbar-menu a {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .navbar-account {
        margin: 10px 20px;
        padding: 15px 30px !important;
        font-size: 1.1rem;
    }

    .navbar-logo-text {
        font-size: 1.5rem;
    }

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

@keyframes navbarSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-novawave {
    animation: navbarSlideIn 0.6s ease-out;
}

.navbar-novawave * {
    color: inherit !important;
}

.navbar-menu a,
.navbar-menu a:visited,
.navbar-menu a:link {
    color: #ffffff !important;
    text-decoration: none !important;
}

.navbar-menu a:hover,
.navbar-menu a:focus,
.navbar-menu a:active {
    color: #DDBE58 !important;
}

.navbar-novawave a:not(.navbar-account) {
    color: #ffffff !important;
}

.navbar-novawave a:not(.navbar-account):hover {
    color: #DDBE58 !important;
}

.navbar-novawave.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.navbar-menu a.active {
    color: #DDBE58 !important;
    background: rgba(221, 190, 88, 0.2);
    border-bottom: 3px solid #DDBE58;
    text-shadow: 0 0 10px rgba(221, 190, 88, 0.5);
}