/* ===================================
   SHARED COMPONENTS CSS
   Consolidates repeated patterns
   =================================== */

/* Audio Record Button - Used 14+ times */
.audio-record-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #FF8C00;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.audio-record-btn:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.audio-record-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.audio-record-btn.recording {
    color: #F44336;
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* For textarea, position at top */
.form-group textarea ~ .audio-record-btn {
    top: 12px;
    transform: none;
}

.form-group textarea ~ .audio-record-btn:hover {
    transform: scale(1.1);
}

/* Input with Audio Wrapper - Used 13+ times */
.input-with-audio {
    position: relative;
    width: 100%;
}

.input-with-audio .form-input {
    padding-right: 48px; /* Space for audio button */
}

/* Google Auth Button - Used 2 times */
.btn-google {
    width: 100%;
    padding: 12px 24px;
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-google:hover {
    background: var(--bg-light);
    border-color: #FF8C00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-google .google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* LinkedIn OAuth Button */
.btn-linkedin {
    width: 100%;
    padding: 12px 24px;
    background: #0077B5;
    color: white;
    border: 1px solid #0077B5;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.btn-linkedin:hover {
    background: #005582;
    border-color: #005582;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.3);
}

.btn-linkedin .linkedin-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: white;
}

/* Modal Close Button - Used 3+ times */
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    transform: rotate(90deg);
}

/* Back Button - Used multiple times */
.back-btn {
    background: none;
    border: none;
    color: var(--primary-purple);
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    color: #FF8C00;
    transform: translateX(-4px);
}

/* Option Card - Used in typing options */
.option-card {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.option-card:hover {
    border-color: #FF8C00;
    background: rgba(255, 140, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.option-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.option-card-content {
    flex: 1;
}

.option-card-title {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.option-card-desc {
    color: var(--text-gray);
    font-size: 13px;
    margin: 0;
}

.option-card-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #FF8C00;
}

/* Error Message - Standardized */
.error-message {
    display: none;
    color: #F44336;
    font-size: 12px;
    margin-top: 4px;
}

.error-message.visible {
    display: block;
}

/* Form Group - Standardized spacing */
.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Divider - Used in modals */
.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
    color: var(--text-gray);
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 60px);
    height: 1px;
    background: var(--border-color);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Loading Spinner - For async operations */
.spinner {
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-top: 2px solid #FF8C00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Helper classes */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    pointer-events: none;
}

.toast {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 300px;
    max-width: 420px;
    animation: toastSlideIn 0.3s ease;
    pointer-events: auto;
    border-left: 4px solid var(--primary-purple);
    position: relative;
}

.toast.toast-success {
    border-left-color: #4CAF50;
}

.toast.toast-error {
    border-left-color: #F44336;
}

.toast.toast-warning {
    border-left-color: #FF9800;
}

.toast.toast-info {
    border-left-color: #2196F3;
}

.toast.toast-hiding {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    padding: 4px;
}

.toast-success .toast-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.toast-error .toast-icon {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.toast-warning .toast-icon {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.toast-info .toast-icon {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

.toast-message {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .toast {
        min-width: auto;
        max-width: none;
    }

    .option-card {
        padding: 16px;
    }

    .option-card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .option-card-title {
        font-size: 14px;
    }

    .option-card-desc {
        font-size: 12px;
    }
}

/* ===================================
   NOTIFICATION COMPONENTS
   =================================== */

/* Notifications Container */
.notifications-container {
    position: relative;
    margin-right: 12px;
}

/* Notification Bell Button */
.notification-bell-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.notification-bell-btn:hover {
    background: var(--bg-light, rgba(0, 0, 0, 0.05));
}

.notification-bell-btn .bell-icon {
    font-size: 20px;
    line-height: 1;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #EF4444;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: badge-pop 0.3s ease;
}

@keyframes badge-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.notification-badge.has-notifications {
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5); }
}

/* Notification Dropdown */
.notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 380px;
    max-width: calc(100vw - 24px);
    max-height: 600px;
    background: var(--bg-white, #fff);
    border: 1px solid var(--border-color, #E5E7EB);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* Notifications Header */
.notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color, #E5E7EB);
    background: var(--bg-light, #F9FAFB);
}

.notifications-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark, #1F2937);
}

.mark-all-read-btn {
    background: none;
    border: none;
    color: var(--primary-purple, #FF8C00);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mark-all-read-btn:hover {
    background: rgba(255, 140, 0, 0.1);
}

/* Notifications List */
.notifications-list {
    overflow-y: auto;
    max-height: 480px;
    flex: 1;
}

/* Notification Item */
.notification-item {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color, #F3F4F6);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.notification-item:hover {
    background: var(--bg-light, #F9FAFB);
}

.notification-item.unread {
    background: #EFF6FF;
}

.notification-item.unread:hover {
    background: #DBEAFE;
}

.notification-item:last-child {
    border-bottom: none;
}

/* Notification Avatar */
.notif-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.notif-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

/* Notification Content */
.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark, #1F2937);
    margin-bottom: 4px;
    line-height: 1.4;
}

.notif-body {
    font-size: 13px;
    color: var(--text-medium, #6B7280);
    margin-bottom: 4px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.notif-time {
    font-size: 12px;
    color: var(--text-light, #9CA3AF);
}

/* Unread Dot */
.notif-unread-dot {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: #3B82F6;
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Empty State */
.notification-empty {
    padding: 40px 20px;
    text-align: center;
}

.notification-empty p {
    color: var(--text-light, #9CA3AF);
    font-size: 14px;
    margin: 0;
}

/* View All Link */
.view-all-link {
    display: block;
    padding: 12px 20px;
    text-align: center;
    color: var(--primary-purple, #FF8C00);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-top: 1px solid var(--border-color, #E5E7EB);
    transition: all 0.2s ease;
}

.view-all-link:hover {
    background: var(--bg-light, #F9FAFB);
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-dropdown {
        width: calc(100vw - 24px);
        right: -140px;
    }

    .notifications-header {
        padding: 12px 16px;
    }

    .notifications-header h3 {
        font-size: 15px;
    }

    .notification-item {
        padding: 12px 16px;
    }

    .notif-avatar,
    .notif-avatar-placeholder {
        width: 40px;
        height: 40px;
    }

    .notif-title {
        font-size: 13px;
    }

    .notif-body {
        font-size: 12px;
    }
}

/* ===================================
   CHAT LOADING ANIMATION
   =================================== */

/* Three-dot typing indicator for chat */
.chat-typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
}

.chat-typing-dot {
    width: 8px;
    height: 8px;
    background: var(--text-gray, #6B7280);
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.chat-typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.chat-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* ========================================
   GLASS-NEUMORPHISM SHARED STYLES
   Modern UI blend for all pages
   ======================================== */

/* CSS Variables for Neumorphic shadows - shared across all pages */
:root {
    --glass-neu-light: rgba(255, 255, 255, 0.8);
    --glass-neu-dark: rgba(0, 0, 0, 0.08);
    --glass-neu-dark-strong: rgba(0, 0, 0, 0.12);
    --glass-neu-inset-light: rgba(255, 255, 255, 0.5);
    --glass-neu-inset-dark: rgba(0, 0, 0, 0.05);
    --glass-neu-orange-glow: rgba(255, 140, 0, 0.15);
    --glass-neu-purple-glow: rgba(139, 92, 246, 0.15);
    --glass-neu-green-glow: rgba(16, 185, 129, 0.15);
}

[data-theme="dark"] {
    --glass-neu-light: rgba(50, 50, 50, 0.5);
    --glass-neu-dark: rgba(0, 0, 0, 0.4);
    --glass-neu-dark-strong: rgba(0, 0, 0, 0.5);
    --glass-neu-inset-light: rgba(60, 60, 60, 0.4);
    --glass-neu-inset-dark: rgba(0, 0, 0, 0.3);
    --glass-neu-orange-glow: rgba(255, 140, 0, 0.2);
    --glass-neu-purple-glow: rgba(139, 92, 246, 0.2);
    --glass-neu-green-glow: rgba(16, 185, 129, 0.2);
}

/* Glass-Neu Page Container */
.glass-neu-page {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 245, 230, 0.5) 100%);
}

[data-theme="dark"] .glass-neu-page {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(30, 30, 30, 0.95) 100%);
}

/* Glass-Neu Card - Base class for all cards */
.glass-neu-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow:
        8px 8px 24px var(--glass-neu-dark),
        -8px -8px 24px var(--glass-neu-light),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-neu-card:hover {
    transform: translateY(-4px);
    box-shadow:
        10px 10px 32px var(--glass-neu-dark-strong),
        -10px -10px 32px var(--glass-neu-light),
        0 8px 32px var(--glass-neu-orange-glow),
        inset 0 1px 1px rgba(255, 255, 255, 1);
}

[data-theme="dark"] .glass-neu-card {
    background: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        8px 8px 24px var(--glass-neu-dark),
        -8px -8px 24px var(--glass-neu-light),
        inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .glass-neu-card:hover {
    background: rgba(40, 40, 40, 0.9);
    box-shadow:
        10px 10px 32px var(--glass-neu-dark-strong),
        -10px -10px 32px var(--glass-neu-light),
        0 8px 32px var(--glass-neu-orange-glow),
        inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

/* Glass-Neu Section - For content sections */
.glass-neu-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow:
        6px 6px 18px var(--glass-neu-dark),
        -6px -6px 18px var(--glass-neu-light),
        inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .glass-neu-section {
    background: rgba(28, 28, 28, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow:
        6px 6px 18px var(--glass-neu-dark),
        -6px -6px 18px var(--glass-neu-light),
        inset 0 1px 1px rgba(255, 255, 255, 0.03);
}

/* Glass-Neu Button - Soft neumorphic button */
.glass-neu-btn {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    padding: 12px 24px;
    cursor: pointer;
    box-shadow:
        4px 4px 12px var(--glass-neu-dark),
        -4px -4px 12px var(--glass-neu-light),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

.glass-neu-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        6px 6px 16px var(--glass-neu-dark),
        -6px -6px 16px var(--glass-neu-light),
        0 4px 16px var(--glass-neu-orange-glow);
}

.glass-neu-btn:active {
    transform: translateY(0);
    box-shadow:
        inset 3px 3px 8px var(--glass-neu-inset-dark),
        inset -3px -3px 8px var(--glass-neu-inset-light);
}

[data-theme="dark"] .glass-neu-btn {
    background: rgba(35, 35, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        4px 4px 12px var(--glass-neu-dark),
        -4px -4px 12px var(--glass-neu-light),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

/* Glass-Neu Input - Inset form fields */
.glass-neu-input {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow:
        inset 3px 3px 8px var(--glass-neu-inset-dark),
        inset -3px -3px 8px var(--glass-neu-inset-light);
    transition: all 0.2s ease;
}

.glass-neu-input:focus {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow:
        inset 2px 2px 6px var(--glass-neu-inset-dark),
        inset -2px -2px 6px var(--glass-neu-inset-light),
        0 0 0 3px rgba(255, 140, 0, 0.1);
    outline: none;
}

[data-theme="dark"] .glass-neu-input {
    background: rgba(25, 25, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-dark);
}

/* Glass-Neu Badge - For status indicators */
.glass-neu-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow:
        3px 3px 10px var(--glass-neu-dark),
        -3px -3px 10px var(--glass-neu-light),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .glass-neu-badge {
    background: rgba(35, 35, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glass-Neu Avatar - For profile pictures */
.glass-neu-avatar {
    border-radius: 50%;
    box-shadow:
        6px 6px 16px var(--glass-neu-dark),
        -6px -6px 16px var(--glass-neu-light),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.glass-neu-avatar:hover {
    transform: scale(1.05);
    box-shadow:
        8px 8px 24px var(--glass-neu-dark),
        -8px -8px 24px var(--glass-neu-light),
        0 6px 20px var(--glass-neu-orange-glow);
}

[data-theme="dark"] .glass-neu-avatar {
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* Glass-Neu Tag - For category/label tags */
.glass-neu-tag {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 12px;
    box-shadow:
        2px 2px 6px var(--glass-neu-dark),
        -2px -2px 6px var(--glass-neu-light);
    transition: all 0.2s ease;
}

.glass-neu-tag:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

/* Glass-Neu Divider */
.glass-neu-divider {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 140, 0, 0.2) 20%,
        rgba(255, 140, 0, 0.3) 50%,
        rgba(255, 140, 0, 0.2) 80%,
        transparent 100%);
    border: none;
    margin: 24px 0;
    border-radius: 1px;
    box-shadow:
        0 1px 2px var(--glass-neu-dark),
        0 -1px 2px var(--glass-neu-light);
}

/* Glass-Neu List Item */
.glass-neu-list-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow:
        4px 4px 12px var(--glass-neu-dark),
        -4px -4px 12px var(--glass-neu-light),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
}

.glass-neu-list-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(4px);
    box-shadow:
        6px 6px 16px var(--glass-neu-dark),
        -6px -6px 16px var(--glass-neu-light),
        0 4px 12px var(--glass-neu-orange-glow);
}

[data-theme="dark"] .glass-neu-list-item {
    background: rgba(28, 28, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Accent Variants */
.glass-neu-card.accent-purple:hover,
.glass-neu-section.accent-purple {
    border-color: rgba(139, 92, 246, 0.2);
}
.glass-neu-card.accent-purple:hover {
    box-shadow:
        10px 10px 32px var(--glass-neu-dark-strong),
        -10px -10px 32px var(--glass-neu-light),
        0 8px 32px var(--glass-neu-purple-glow);
}

.glass-neu-card.accent-green:hover,
.glass-neu-section.accent-green {
    border-color: rgba(16, 185, 129, 0.2);
}
.glass-neu-card.accent-green:hover {
    box-shadow:
        10px 10px 32px var(--glass-neu-dark-strong),
        -10px -10px 32px var(--glass-neu-light),
        0 8px 32px var(--glass-neu-green-glow);
}
