/* Artist Dashboard Custom Styles */

/* ============================================
   LAYOUT STRUCTURE
   ============================================ */

.artist-dashboard {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
}

/* ============================================
   SIDEBAR - FUTURISTIC DARK THEME
   ============================================ */

.artist-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    border-right: 1px solid rgba(74, 144, 226, 0.15);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.5),
        inset -1px 0 0 rgba(74, 144, 226, 0.1);
}

@media (max-width: 991px) {
    .artist-sidebar {
        transform: translateX(-100%);
    }

    .artist-sidebar.open {
        transform: translateX(0);
    }
}

/* Sidebar Header */
.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(74, 144, 226, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(74, 144, 226, 0.02) 100%);
}

.sidebar-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a90e2 0%, #5ba3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    opacity: 1;
    color: #4a90e2;
    transform: rotate(90deg);
}

/* User Section */
.sidebar-user {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(74, 144, 226, 0.15);
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, transparent 100%);
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.user-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #4a90e2, #5ba3ff, #4a90e2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.user-avatar:hover {
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.user-avatar:hover::before {
    opacity: 1;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
}

.user-name {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.user-email {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 0.25rem 0.75rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    font-size: 0.9375rem;
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4a90e2 0%, #357abd 50%, #4a90e2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.nav-link:hover {
    background: rgba(74, 144, 226, 0.1);
    color: rgba(255, 255, 255, 0.95) !important;
    transform: translateX(6px);
    border-color: rgba(74, 144, 226, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link:hover::before {
    transform: scaleY(1);
}

/* Active Navigation Link - HIGHLY VISIBLE */
.nav-link.active {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.25) 0%, rgba(53, 122, 189, 0.2) 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(74, 144, 226, 0.5) !important;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(74, 144, 226, 0.2) !important;
    transform: translateX(6px);
}

.nav-link.active::before {
    transform: scaleY(1);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.8),
        0 0 30px rgba(74, 144, 226, 0.4);
    width: 4px;
}

.nav-link i {
    margin-right: 0.875rem;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 0 transparent);
}

.nav-link.active i {
    color: #5ba3ff !important;
    filter: drop-shadow(0 0 8px rgba(91, 163, 255, 0.6));
    transform: scale(1.1);
}

.nav-link:hover i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.95);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(74, 144, 226, 0.15);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, transparent 100%);
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.625rem 1rem !important;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(185, 28, 46, 0.1) 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logout-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.logout-btn:hover::before {
    left: 100%;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4),
        0 0 20px rgba(220, 53, 69, 0.2);
}

.logout-btn i {
    font-size: 1rem !important;
    transition: transform 0.3s ease;
}

.logout-btn:hover i {
    transform: rotate(-15deg);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.artist-main {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .artist-main {
        margin-left: 0;
    }
}

.artist-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg,
            rgba(74, 144, 226, 0.3) 0%,
            rgba(74, 144, 226, 0.6) 50%,
            rgba(74, 144, 226, 0.3) 100%) 1;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(74, 144, 226, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(74, 144, 226, 0.5) 50%,
            transparent 100%);
}

.sidebar-toggle {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    color: #4a90e2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.sidebar-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sidebar-toggle:hover::before {
    width: 200px;
    height: 200px;
}

.sidebar-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #2a6bb8;
}

.sidebar-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-title {
    flex: 1;
    position: relative;
}

.header-title h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f1f1f 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.header-title h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2 0%, transparent 100%);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions .btn {
    background: linear-gradient(135deg, #4a90e2 0%, #2a6bb8 100%);
    border: none;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.header-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left 0.6s ease;
}

.header-actions .btn:hover::before {
    left: 100%;
}

.header-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-actions .btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header-actions .btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.header-actions .btn:hover i {
    transform: scale(1.1);
}

/* Header Responsive */
@media (max-width: 991px) {
    .header-title h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .artist-header {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .header-title h1 {
        font-size: 1.25rem;
    }

    .header-title h1::after {
        width: 40px;
        height: 2px;
        bottom: -3px;
    }

    .sidebar-toggle {
        padding: 0.65rem;
        font-size: 1.3rem;
        border-radius: 10px;
    }

    .header-actions .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .header-actions .btn i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .artist-header {
        padding: 0.875rem 1rem;
    }

    .header-title h1 {
        font-size: 1.1rem;
    }

    .header-actions .btn span {
        display: none;
    }

    .header-actions .btn {
        padding: 0.65rem;
        width: 42px;
        height: 42px;
        justify-content: center;
    }

    .header-actions .btn i {
        margin: 0 !important;
    }
}

.artist-content {
    flex: 1;
    padding: 2rem;
    background: transparent;
    min-height: 100vh;
}

@media (max-width: 767px) {
    .artist-content {
        padding: 1rem;
    }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.min-vh-50 {
    min-height: 50vh;
}

/* Remove link underlines globally for dashboard */
.artist-dashboard a {
    text-decoration: none !important;
}

/* Quick Actions - Remove icon underlines */
.quick-action-item {
    text-decoration: none !important;
}

.quick-action-item i {
    text-decoration: none !important;
}

/* Stat Cards */
.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon-wrapper {
    flex-shrink: 0;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.stat-card-primary .stat-icon {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.stat-card-success .stat-icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.stat-card-info .stat-icon {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.stat-card-warning .stat-icon {
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #1f1f1f;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

/* Paintings Overview Card */
.paintings-overview-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-header-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f1f1f;
    display: flex;
    align-items: center;
}

/* Mini Stats */
.mini-stat {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.mini-stat:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.mini-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.mini-stat-content {
    flex: 1;
    min-width: 0;
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: #1f1f1f;
}

.mini-stat-label {
    font-size: 0.8125rem;
    color: #6c757d;
    font-weight: 500;
}

/* Quick Actions Card */
.quick-actions-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.quick-action-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.quick-action-item:hover {
    background: #fff;
    border-color: #1f1f1f;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.quick-action-content {
    flex: 1;
    min-width: 0;
}

.quick-action-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 0.25rem;
}

.quick-action-desc {
    font-size: 0.8125rem;
    color: #6c757d;
}

.quick-action-arrow {
    font-size: 1.125rem;
    color: #6c757d;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quick-action-item:hover .quick-action-arrow {
    color: #1f1f1f;
    transform: translateX(4px);
}

/* Info Cards */
.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.info-value {
    font-size: 0.9375rem;
    color: #1f1f1f;
    font-weight: 600;
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 4px;
}

/* Badge Styles */
.badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

/* Section Titles */
.section-title-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f1f1f;
}

.section-title-small {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f1f1f;
}

.section-descr {
    font-size: 1rem;
    color: #6c757d;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 767px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .mini-stat {
        padding: 1rem;
    }

    .quick-actions-card,
    .paintings-overview-card,
    .info-card {
        padding: 1.5rem;
    }
}

/* ============================================
   FUTURISTIC DASHBOARD STYLES
   ============================================ */

.dashboard-page-futuristic {
    max-width: 1400px;
}

/* Futuristic Header */
.futuristic-header {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.futuristic-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, transparent 50%, rgba(74, 144, 226, 0.03) 100%);
    pointer-events: none;
}

.futuristic-title {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f1f1f 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.futuristic-subtitle {
    color: rgba(31, 31, 31, 0.7);
    font-size: 1.0625rem;
    position: relative;
    z-index: 1;
}

/* Futuristic Alert */
.futuristic-alert {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 205, 57, 0.05) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Futuristic Stat Cards */
.futuristic-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.futuristic-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, transparent 50%, rgba(74, 144, 226, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.futuristic-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 30px rgba(74, 144, 226, 0.1);
}

.futuristic-stat-card:hover::before {
    opacity: 1;
}

.futuristic-stat-icon-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.futuristic-stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #fff;
    position: relative;
    transition: all 0.4s ease;
}

.futuristic-stat-primary .futuristic-stat-icon {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.futuristic-stat-success .futuristic-stat-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.futuristic-stat-info .futuristic-stat-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    box-shadow: 0 0 20px rgba(23, 162, 184, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.futuristic-stat-warning .futuristic-stat-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.futuristic-stat-card:hover .futuristic-stat-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.6));
}

.futuristic-stat-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.futuristic-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #1f1f1f;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.futuristic-stat-label {
    font-size: 0.9375rem;
    color: rgba(31, 31, 31, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Futuristic Section Cards */
.futuristic-section-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.futuristic-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
}

.futuristic-card-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.futuristic-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f1f1f;
    display: flex;
    align-items: center;
}

.futuristic-card-subtitle {
    font-size: 0.9375rem;
    color: rgba(31, 31, 31, 0.6);
}

/* Futuristic Mini Stats */
.futuristic-mini-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(74, 144, 226, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.06);
}

.futuristic-mini-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.08), transparent);
    transition: left 0.6s ease;
}

.futuristic-mini-stat:hover {
    background: #ffffff;
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.12);
}

.futuristic-mini-stat:hover::before {
    left: 100%;
}

.futuristic-mini-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.futuristic-mini-dark {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

.futuristic-mini-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
}

.futuristic-mini-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.futuristic-mini-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    box-shadow: 0 0 15px rgba(23, 162, 184, 0.3);
}

.futuristic-mini-stat:hover .futuristic-mini-icon {
    transform: scale(1.1);
}

.futuristic-mini-content {
    flex: 1;
}

.futuristic-mini-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1f1f1f;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.futuristic-mini-label {
    font-size: 0.875rem;
    color: rgba(31, 31, 31, 0.6);
    font-weight: 500;
}

/* Futuristic Quick Actions */
.futuristic-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.futuristic-quick-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(74, 144, 226, 0.15);
    border-radius: 16px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.06);
}

.futuristic-quick-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.08), transparent);
    transition: left 0.6s ease;
}

.futuristic-quick-item:hover {
    background: #ffffff;
    border-color: rgba(74, 144, 226, 0.35);
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.15);
}

.futuristic-quick-item:hover::before {
    left: 100%;
}

.futuristic-quick-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.futuristic-quick-primary {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

.futuristic-quick-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    box-shadow: 0 0 15px rgba(108, 117, 125, 0.3);
}

.futuristic-quick-item:hover .futuristic-quick-icon {
    transform: scale(1.15) rotate(5deg);
}

.futuristic-quick-content {
    flex: 1;
}

.futuristic-quick-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 0.375rem;
}

.futuristic-quick-desc {
    font-size: 0.875rem;
    color: rgba(31, 31, 31, 0.6);
}

.futuristic-quick-arrow {
    font-size: 1.5rem;
    color: rgba(74, 144, 226, 0.3);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.futuristic-quick-item:hover .futuristic-quick-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #4a90e2;
}

/* Futuristic Info Cards */
.futuristic-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.futuristic-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
}

.futuristic-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.futuristic-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.futuristic-info-label {
    font-size: 0.9375rem;
    color: rgba(31, 31, 31, 0.6);
    font-weight: 500;
}

.futuristic-info-value {
    font-size: 1rem;
    color: #1f1f1f;
    font-weight: 600;
}

/* Futuristic Progress Bar */
.futuristic-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    max-width: 300px;
}

.futuristic-progress {
    flex: 1;
    height: 12px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.futuristic-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4a90e2 0%, #5ba3ff 100%);
    border-radius: 50px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.futuristic-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.futuristic-progress-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #4a90e2;
    min-width: 50px;
    text-align: right;
}

/* Futuristic Badges */
.futuristic-badge {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.futuristic-badge-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    color: #198754;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.futuristic-badge-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    color: #fd7e14;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Responsive Futuristic Styles */
@media (max-width: 768px) {
    .futuristic-title {
        font-size: 1.75rem;
    }

    .futuristic-stat-card {
        padding: 1.5rem;
    }

    .futuristic-stat-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .futuristic-stat-value {
        font-size: 2.25rem;
    }

    .futuristic-quick-grid {
        grid-template-columns: 1fr;
    }

    .futuristic-mini-value {
        font-size: 1.5rem;
    }

    .futuristic-progress-wrapper {
        max-width: 100%;
    }
}

/* ============================================
   FUTURISTIC PROFILE PAGE STYLES
   ============================================ */

.futuristic-profile-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Profile Header */
.futuristic-profile-header {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.futuristic-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
}

.futuristic-profile-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.futuristic-profile-title i {
    color: #4a90e2;
}

.futuristic-profile-subtitle {
    font-size: 1rem;
    color: rgba(31, 31, 31, 0.6);
    position: relative;
    z-index: 1;
}

/* Profile Cards */
.futuristic-profile-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.futuristic-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
}

/* Section Headers */
.futuristic-section-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.futuristic-section-action {
    flex-shrink: 0;
}

.futuristic-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f1f1f;
    display: flex;
    align-items: center;
}

.futuristic-section-title i {
    color: #4a90e2;
}

.futuristic-section-subtitle {
    font-size: 0.875rem;
    color: rgba(31, 31, 31, 0.6);
}

/* Section Divider */
.futuristic-section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 144, 226, 0.3) 50%, transparent 100%);
    margin: 2rem 0;
}

/* Form Elements */
.futuristic-form-label {
    font-size: 0.875rem;
    color: #1f1f1f;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.futuristic-form-label i {
    opacity: 0.7;
    color: #4a90e2;
}

.futuristic-form-input,
.futuristic-form-textarea {
    border: 1px solid rgba(74, 144, 226, 0.2);
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.04);
}

.futuristic-form-input:focus,
.futuristic-form-textarea:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.1),
        0 4px 12px rgba(74, 144, 226, 0.15);
    outline: none;
    background: #ffffff;
}

.futuristic-form-input:disabled {
    opacity: 0.6;
    background: rgba(74, 144, 226, 0.05);
    cursor: not-allowed;
}

.futuristic-form-textarea {
    min-height: 140px;
    resize: vertical;
}

/* Buttons */
.futuristic-submit-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.futuristic-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.futuristic-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.futuristic-submit-btn:hover::before {
    left: 100%;
}

.futuristic-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.futuristic-border-btn {
    background: transparent;
    color: #4a90e2;
    border: 2px solid rgba(74, 144, 226, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.futuristic-border-btn:hover {
    background: #4a90e2;
    color: #fff;
    border-color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
    font-size: 0.9375rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.alert-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    color: #198754;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(185, 28, 46, 0.1) 100%);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .futuristic-profile-card {
        padding: 1.5rem;
    }

    .futuristic-profile-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .futuristic-profile-title {
        font-size: 1.5rem;
    }

    .futuristic-submit-btn,
    .futuristic-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   FUTURISTIC PAINTINGS PAGE
======================================== */

.futuristic-paintings-page {
    width: 100%;
}

/* Paintings Header */
.paintings-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.futuristic-add-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #2a6bb8 100%);
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.futuristic-add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left 0.6s ease;
}

.futuristic-add-btn:hover::before {
    left: 100%;
}

.futuristic-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.futuristic-add-btn:active {
    transform: translateY(0);
}

.futuristic-add-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.futuristic-add-btn:hover i {
    transform: rotate(90deg);
}

/* Empty State */
.futuristic-empty-state {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.empty-state-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #4a90e2;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(74, 144, 226, 0.2);
}

.futuristic-empty-state .empty-state-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f1f1f 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.futuristic-empty-state .empty-state-desc {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Painting Cards */
.futuristic-painting-card {
    background: #ffffff;
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.futuristic-painting-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.painting-image-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.painting-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.futuristic-painting-card:hover .painting-img {
    transform: scale(1.05);
}

.painting-status-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-active {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.status-inactive {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.painting-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.painting-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f1f1f;
    margin: 0 0 0.875rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.painting-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.painting-cat {
    font-size: 0.875rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.painting-cost {
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a90e2 0%, #2a6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Action Bar */
.painting-action-bar {
    display: flex;
    gap: 0.625rem;
    margin-top: auto;
}

.painting-action-btn {
    flex: 1;
    height: 40px;
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #4a90e2;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.painting-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.action-view::before {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.action-edit::before {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.action-delete::before {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.painting-action-btn i,
.painting-action-btn span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.painting-action-btn:hover::before {
    opacity: 1;
}

.painting-action-btn:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.painting-action-btn:hover i,
.painting-action-btn:hover span {
    color: #ffffff;
    transform: scale(1.1);
}

.painting-action-btn:active {
    transform: translateY(0);
}

.painting-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.painting-action-btn:disabled::before {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 991px) {
    .futuristic-painting-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .futuristic-empty-state {
        padding: 3rem 1.5rem;
    }

    .empty-state-icon-wrapper {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .futuristic-empty-state .empty-state-title {
        font-size: 1.5rem;
    }

    .painting-action-bar {
        gap: 0.5rem;
    }

    .painting-action-btn {
        height: 36px;
        font-size: 1rem;
    }

    .futuristic-add-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Gallery Page Styles */
.gallery-upload-label {
    border: 2px dashed rgba(74, 144, 226, 0.3);
    border-radius: 12px;
    padding: 3rem 2rem;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
    user-select: none;
}

.gallery-upload-label:hover:not(.uploading) {
    border-color: #4a90e2;
    background-color: rgba(74, 144, 226, 0.05);
}

.gallery-upload-label.uploading {
    cursor: not-allowed;
    opacity: 0.7;
    background-color: rgba(74, 144, 226, 0.05);
}

.gallery-upload-icon {
    font-size: 3rem;
    color: #4a90e2;
}

.gallery-upload-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.gallery-upload-text-small {
    font-size: 0.8125rem;
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 144, 226, 0.15);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.gallery-image-container {
    position: relative;
    padding-top: 75%; /* 4:3 aspect ratio (800x600) */
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-delete-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    z-index: 10;
}

.gallery-delete-btn:hover:not(:disabled) {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
}

.gallery-delete-btn:disabled {
    cursor: not-allowed;
}

.gallery-delete-icon {
    font-size: 18px;
}

.gallery-delete-spinner {
    width: 16px;
    height: 16px;
}

.gallery-accent-border {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
}

.gallery-empty-icon {
    font-size: 4rem;
    color: #999;
}

.gallery-upload-spinner {
    color: #4a90e2;
    width: 3rem;
    height: 3rem;
}

.gallery-upload-text-primary {
    color: #1f1f1f;
}

.gallery-upload-text-accent {
    color: #4a90e2;
}

.gallery-file-input {
    display: none;
}

.gallery-upload-content {
    pointer-events: none;
}

.gallery-loading-container {
    min-height: 400px;
}

.gallery-loading-spinner {
    color: #1f1f1f;
}