/* Navigation Outer Panel */
.nav-outer-panel {
    height: auto;
    min-height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
}

.nav-outer-panel-left {
    display: flex;
    align-items: center;
}

.nav-outer-panel-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-outer-panel-right {
    width: auto;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    color: #fff;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, rgba(20,10,40,1) 0%, rgba(30,15,60,1) 50%, rgba(20,10,40,1) 100%);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid rgba(138, 87, 255, 0.1);
    border-radius: 15px;
    width: 100%;
    max-width: 1200px;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 87, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 1;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 32px;
    height: 32px;
    /*background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);*/
    /*border-radius: 8px;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*position: relative;*/
    /*overflow: hidden;*/
}

.logo-icon::before {
    /*content: '';*/
    /*position: absolute;*/
    /*width: 20px;*/
    /*height: 20px;*/
    /*background: rgba(255, 255, 255, 0.3);*/
    /*border-radius: 50%;*/
    /*top: -5px;*/
    /*left: -5px;*/
}

.logo-icon::after {
    /*content: '';*/
    /*position: absolute;*/
    /*width: 12px;*/
    /*height: 12px;*/
    /*background: rgba(255, 255, 255, 0.5);*/
    /*border-radius: 50%;*/
    /*bottom: -3px;*/
    /*right: -3px;*/
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px 10px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #999;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    color: #fff;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.nav-link:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Right Section Buttons */
.right-section {
    display: flex;
    gap: 12px;
    z-index: 1;
}

.btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    outline: none;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn-signup {
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138, 87, 255, 0.3);
}

.btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(138, 87, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 12px 20px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .nav-outer-panel {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-outer-panel-left {
        width: 100%;
        justify-content: center;
    }

    .nav-outer-panel-center {
        width: 100%;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .left-section {
        flex: 1;
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        background: rgba(20, 15, 40, 0.95);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        gap: 10px;
    }
    
    .nav-link.active {
    color: #fff;
    font-weight: 700; /* or 800 for extra bold */
}

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        justify-content: center;
    }

    .right-section {
        width: 100%;
        order: 4;
        margin-top: 15px;
        justify-content: center;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .nav-outer-panel {
        padding: 10px;
    }

    .navbar {
        padding: 12px 15px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .right-section {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 10px 20px;
    }

    .social-icons {
        gap: 10px;
    }
}