/* Navigation Styles - ULTIMATEUNBLOCKER */

/* Navigation Menu Styles */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border-right: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 120px 30px 30px;
    overflow-y: auto;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
    z-index: -1;
}

.nav-menu.active {
    left: 0;
    box-shadow: 0 0 100px rgba(102, 126, 234, 0.2);
}

.nav-item {
    display: block;
    width: 100%;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.5s ease;
    z-index: -1;
}

.nav-item:hover::before {
    left: 0;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
    color: #ffffff;
}

.nav-item:active {
    transform: translateX(5px) scale(0.98);
}

/* Navigation Sections */
.nav-section {
    margin-bottom: 30px;
}

.nav-section-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-left: 10px;
}

/* VPN Navigation Specific */
.vpn-nav-item {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.1), rgba(34, 193, 195, 0.1));
    border: 1px solid rgba(34, 193, 195, 0.3);
}

.vpn-nav-item:hover {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.2), rgba(34, 193, 195, 0.2));
    border-color: rgba(34, 193, 195, 0.5);
}

.vpn-nav-item::before {
    background: linear-gradient(135deg, #22c1c3, #1a7f80);
}

/* VPN Modal */
.vpn-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.vpn-modal.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.vpn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.vpn-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vpn-modal.active .vpn-content {
    transform: translate(-50%, -50%) scale(1);
}

.vpn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.vpn-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #22c1c3, #1a7f80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.vpn-close {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vpn-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.vpn-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.vpn-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.vpn-option {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vpn-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #22c1c3, #1a7f80);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.vpn-option:hover::before {
    opacity: 0.1;
}

.vpn-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(34, 193, 195, 0.3);
    transform: translateY(-2px);
}

.vpn-option.active {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.15), rgba(34, 193, 195, 0.15));
    border-color: rgba(34, 193, 195, 0.5);
}

.vpn-option.active::before {
    opacity: 0.2;
}

.vpn-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vpn-option-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 12px;
}

.vpn-option-info {
    flex: 1;
}

.vpn-option-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.vpn-option-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.vpn-option-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.status-indicator.active {
    background: #22c1c3;
    box-shadow: 0 0 10px rgba(34, 193, 195, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.vpn-option-status span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.vpn-actions {
    display: flex;
    justify-content: center;
}

.vpn-connect-btn {
    background: linear-gradient(135deg, #22c1c3, #1a7f80);
    border: none;
    border-radius: 20px;
    padding: 15px 40px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vpn-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 193, 195, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Powered By Text */
.powered-by {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Divider */
.nav-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 20px 0;
    opacity: 0.5;
}

/* Navigation Badges */
.nav-badge {
    background: var(--primary-gradient);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
    font-weight: 600;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu {
        width: 300px;
        left: -300px;
        padding: 100px 20px 20px;
    }
    
    .nav-item {
        padding: 15px 20px;
        font-size: 16px;
    }
}
