/* Glassmorphism Modal */
.glass-modal {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);
}

.glass-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    color: white;
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 5px;
}

.glass-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Profile Dropdown */
.profile-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.profile-dropdown.hidden {
    display: none;
}

.profile-dropdown a {
    color: #ccc;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}