
.ai7qi-navbar {
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    opacity: 1;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.ai7qi-navbar-inner {
    background: transparent;
    border-radius: 0;
    filter: none;
    border: none;
    box-shadow: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.navbar-brand {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.25),
        0 0 40px rgba(139, 92, 246, 0.15),
        inset 0 0 12px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(236, 72, 153, 0.6), rgba(139, 92, 246, 0.6));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(236, 72, 153, 0.3) 100%);
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.25),
        inset 0 0 16px rgba(139, 92, 246, 0.1);
}

.navbar-brand:hover::before {
    opacity: 0.4;
}

.navbar-brand img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.navbar-menu-box {
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0;
}

.menu-button {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.15);
    color: #ffffff;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: normal;
    cursor: pointer;
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.menu-button:hover {
    transform: scale(1.08);
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.3);
}

.menu-button:before {
    content: '\e801';
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.menu-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: transparent;
    gap: var(--space-xs);
}

.menu-content > div {
    padding: var(--space-sm) var(--space-lg);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    border: 1px solid transparent;
}

.menu-content > div:hover {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.menu-content > div.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.35);
    font-weight: 600;
}

.navbar-fixed-top {
    height: 72px;
    padding-top: 0;
}

@media (max-width: 979px) {
    .navbar-menu-box {
        position: fixed;
        right: 12px;
        left: auto;
        display: inline-flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-end;
        top: 12px;
        z-index: 1000;
        width: auto;
    }

    .menu-button {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.3rem;
    }

    .menu-content {
        position: fixed;
        right: 12px;
        top: 72px;
        padding: 0;
        display: none;
        width: 180px;
        background: rgba(5, 5, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.15);
        overflow: hidden;
        z-index: 9999;
    }

    .menu-content.show {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .menu-content > div {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        transition: background var(--transition-base);
        white-space: nowrap;
    }

    .menu-content > div:last-child {
        border-bottom: none;
    }

    .menu-content > div:hover {
        background: rgba(139, 92, 246, 0.15);
        color: #ffffff;
    }
}

.ai7qi-navbar-inner {
    background: transparent;
    border-radius: 0;
    filter: none;
    border: none;
    box-shadow: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.navbar-brand {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.25),
        0 0 40px rgba(139, 92, 246, 0.15),
        inset 0 0 12px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(236, 72, 153, 0.6), rgba(139, 92, 246, 0.6));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(236, 72, 153, 0.3) 100%);
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.25),
        inset 0 0 16px rgba(139, 92, 246, 0.1);
}

.navbar-brand:hover::before {
    opacity: 0.4;
}

.navbar-brand img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.navbar-menu-box {
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0;
}

.menu-button {
    width: 40px;
    height: 40px;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: normal;
    cursor: pointer;
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
}

.menu-button:hover {
    transform: scale(1.08);
    background: var(--color-gray-200);
}

.menu-button:before {
    content: '\e801';
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.menu-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: transparent;
    gap: var(--space-xs);
}

.menu-content > div {
    padding: var(--space-sm) var(--space-lg);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.menu-content > div:hover {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.menu-content > div.active {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.35);
    font-weight: 600;
}

.navbar-fixed-top {
    height: 72px;
    padding-top: 0;
}

.ai7qi-navbar .brand img {
    width: 200px;
    height: 40px;
}

.ai7qi-navbar .nav > li > a {
    text-transform: uppercase;
    vertical-align: middle;
    padding: 5px 3px 5px 3px;
    margin: 10px 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: 1px solid transparent;
    box-shadow: none;
    font-size: 15px;
    text-shadow: none;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.ai7qi-navbar .nav > li:hover > a,
.ai7qi-navbar .nav > .active > a,
.ai7qi-navbar .nav > .active > a:hover,
.ai7qi-navbar .nav > .active > a:focus {
    color: #ffffff;
}

.nav-pills {
    margin-bottom: 30px;
}

.nav-pills > li > a {
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-right: 5px;
    padding-left: 25px;
    padding-right: 25px;
    border: 1px solid transparent;
}

.nav-pills > li > a:hover,
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
    background: transparent;
    color: #6366f1;
}

.ai7qi-navbar .btn-navbar:hover,
.ai7qi-navbar .btn-navbar {
    border-radius: 0;
    background: #6366f1;
    color: #ffffff;
}

@media (max-width: 979px) {
    .navbar-menu-box {
        position: fixed;
        right: 12px;
        left: auto;
        display: inline-flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-end;
        top: 12px;
        z-index: 1000;
        width: auto;
    }
    
    .menu-button {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.3rem;
    }

    .menu-content {
        position: fixed;
        right: 12px;
        top: 72px;
        padding: 0;
        display: none;
        width: 180px;
        background: rgba(18, 18, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.15);
        overflow: hidden;
        z-index: 9999;
    }
    
    .menu-content.show {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .menu-content > div {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        transition: background var(--transition-base);
        white-space: nowrap;
    }

    .menu-content > div:last-child {
        border-bottom: none;
    }

    .menu-content > div:hover {
        background: rgba(139, 92, 246, 0.15);
        color: #ffffff;
    }
}

@media (max-width: 979px) {
    body {
        padding-left: 0;
        padding-right: 0;
    }
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        position: fixed;
    }
    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
    }
    .section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .navbar-fixed-top,
    .navbar-fixed-bottom,
    .navbar-static-top {
        margin-left: 0px;
        margin-right: 0px;
    }
    .nav-collapse {
        clear: both;
    }
    .nav-collapse .nav {
        float: none;
        margin: 0 0 10px;
    }
    .nav-collapse .nav > li {
        float: none;
    }
    .nav-collapse,
    .nav-collapse.collapse {
        width: 100%;
        display: inherit;
    }
    .thumbnail .more {
        margin-left: -21px;
        width: 40px;
        height: 40px;
        border-radius: 30px;
        line-height: 40px;
    }
    .thumbnail:hover .more {
        margin-top: -20px;
    }
    .newsletter form {
        text-align: center;
    }
}
