/* Authentication Navigation Styling */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-nav-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.auth-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.user-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #444;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    min-width: 280px;
    z-index: 1000;
    display: none;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: dropdownFadeIn 0.3s ease;
}

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

.dropdown-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #e50914 0%, #b40000 100%);
    color: white;
    gap: 12px;
}

.dropdown-header i {
    font-size: 24px;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-email {
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.user-status {
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.status-premium {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    font-size: 13px;
}

.status-free {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.status-expiring {
    color: #ff6b35;
    animation: pulse 2s infinite;
    font-weight: 700;
    font-size: 13px;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.status-error {
    color: #ff4757;
    font-weight: 600;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #444 50%, transparent 100%);
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #e0e0e0;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item i {
    width: 18px;
    font-size: 16px;
    color: #888;
    transition: color 0.3s ease;
}

.dropdown-item:hover {
    background: transparent;
    color: white;
    transform: translateX(4px);
}

.dropdown-item:hover i {
    color: #e50914;
}

.logout-item:hover {
    background: transparent;
    color: #dc3545;
}

.logout-item:hover i {
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-auth {
        margin-left: auto;
    }
    
    .auth-nav-btn, .dropdown-toggle {
        padding: 6px 12px;
        font-size: 12px;
    }
}
