        /* Root Variables */
        :root {
            /* Base theme colors */
            --primary-bg: #000;
            --secondary-bg: #111;
            --text-color: #fff;
            --accent-color: #e67e22;
            --secondary-accent: #3498db;
            --tertiary-accent: #9b59b6;
            --transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            
            /* Frame style variables with improved texture and depth */
            --silver-light: rgba(242, 242, 242, 0.15);
            --silver-medium: rgba(192, 192, 192, 0.13);
            --silver-dark: rgba(128, 128, 128, 0.09);
            --silver-highlight: rgba(255, 255, 255, 0.3);
            
            --gold-light: rgba(255, 215, 0, 0.15);
            --gold-medium: rgba(218, 165, 32, 0.13);
            --gold-dark: rgba(184, 134, 11, 0.09);
            --gold-highlight: rgba(255, 235, 122, 0.3);
            
            --lighting-neutral: 0 0 60px rgba(255, 255, 255, 0.15);
            --lighting-warm: 0 0 60px rgba(255, 220, 180, 0.20);
            --lighting-cool: 0 0 60px rgba(180, 220, 255, 0.20);
            
            /* Current settings */
            --current-lighting: var(--lighting-neutral);
            --lighting-intensity: 1;
        }

        /* Light mode variables */
        .light-mode {
            --primary-bg: #f5f5f5;
            --secondary-bg: #e0e0e0;
            --text-color: #222;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            height: 100%;
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-color);
            overflow: hidden;
            transition: background-color 0.5s ease;
        }

        /* Enhanced Scrollbar styling */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 10px;
            transition: var(--transition);
            border: 2px solid transparent;
            background-clip: content-box;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #f39c12;
            border: 2px solid transparent;
            background-clip: content-box;
        }

        /* Firefox scrollbar styling */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--accent-color) rgba(0, 0, 0, 0.2);
        }

        .light-mode ::-webkit-scrollbar-track {
            background: rgba(200, 200, 200, 0.3);
        }

        .light-mode ::-webkit-scrollbar-thumb {
            background: var(--accent-color);
        }

        .light-mode * {
            scrollbar-color: var(--accent-color) rgba(200, 200, 200, 0.3);
        }

        /* Custom cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: rgba(230, 126, 34, 0.5);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease, background-color 0.3s ease;
            mix-blend-mode: difference;
        }

        .cursor.active {
            transform: translate(-50%, -50%) scale(1.5);
            background-color: rgba(52, 152, 219, 0.5);
        }

        /* Container */
        .container {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }

        /* Background image */
        .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            transform: scale(1.1);
            filter: blur(5px);
            transition: all 5s ease;
            z-index: -1;
        }

        .light-mode .bg-image {
            opacity: 0.2;
            filter: blur(5px) brightness(1.2);
        }

        /* Header & Navigation */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
            backdrop-filter: blur(10px);
            background-color: rgba(0, 0, 0, 0.2);
        }

        .light-mode .header {
            background-color: rgba(245, 245, 245, 0.7);
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.2), transparent);
            transition: 0.8s;
        }

        .logo:hover::before {
            left: 100%;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex: 1;
        }

        .nav a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 30px;
            opacity: 0.8;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }

        .nav a:hover {
            opacity: 1;
            transform: translateY(-3px);
            color: var(--accent-color);
        }

        .nav a:hover::before {
            width: 100%;
            box-shadow: 0 0 10px var(--accent-color);
        }

        /* Language selector */
        .lang-selector {
            position: relative;
            margin-left: 20px;
            z-index: 20;
        }

        .current-lang {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.1);
        }

        .current-lang:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            color: var(--accent-color);
        }

        .light-mode .current-lang:hover {
            background: rgba(0, 0, 0, 0.2);
        }

        .lang-options {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--secondary-bg);
            border-radius: 4px;
            padding: 0.5rem;
            width: 150px;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
        }

        .lang-selector:hover .lang-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            cursor: pointer;
            transition: var(--transition);
            border-radius: 4px;
        }

        .lang-option:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .light-mode .lang-option:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        /* Theme toggle button */
        .theme-toggle {
            margin-left: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: var(--text-color);
        }

        .theme-toggle:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .light-mode .theme-toggle {
            background: rgba(0, 0, 0, 0.1);
        }

        /* Main content */
        .content {
            text-align: center;
            max-width: 800px;
            padding: 60px 40px;
            background-color: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1.5s ease, transform 1.5s ease;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .light-mode .content {
            background-color: rgba(255, 255, 255, 0.8);
        }

        h1 {
            font-size: 48px;
            margin-bottom: 15px;
            font-weight: 300;
            position: relative;
            display: inline-block;
        }

        .title-underline {
            width: 100px;
            height: 3px;
            background: var(--accent-color);
            margin: 0 auto 30px;
            box-shadow: 0 0 10px var(--accent-color);
        }

        p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .enter-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--accent-color);
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s;
            cursor: pointer;
            border: 2px solid var(--accent-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .enter-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            z-index: -1;
        }

        .enter-button:hover::before {
            width: 100%;
        }

        .enter-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
        }

        /* Preview gallery */
        .preview-gallery {
            position: absolute;
            bottom: 100px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 0 20px;
            overflow: hidden;
            height: 80px;
            z-index: 5;
        }

        .preview-item {
            height: 100%;
            aspect-ratio: 3/2;
            object-fit: cover;
            border-radius: 5px;
            opacity: 0.6;
            transform: translateY(100px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            transition-delay: calc(var(--i) * 0.1s);
            filter: grayscale(70%);
            border: 2px solid transparent;
        }

        .preview-item.active {
            transform: translateY(0);
            opacity: 1;
            filter: grayscale(0%);
            border-color: var(--accent-color);
        }

        /* Footer */
        .footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            opacity: 0.7;
            backdrop-filter: blur(10px);
            background-color: rgba(0, 0, 0, 0.2);
        }

        .light-mode .footer {
            background-color: rgba(245, 245, 245, 0.7);
        }

        /* Pulse animation for the button */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
            }
            
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
            }
            
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
            }
        }

        /* Loading overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black;
            z-index: 2000;
            transform-origin: top;
            transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            visibility: hidden;
            opacity: 0;
        }

        .loading-overlay.active {
            visibility: visible;
            opacity: 1;
        }

        .loading-overlay.hidden {
            transform: scaleY(0);
        }

        .loading-text {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 5px;
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        .loading-bar {
            width: 200px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .loading-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background-color: var(--accent-color);
            transition: width 0.5s ease;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2000;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            overflow-y: auto;
        }

        .modal-content {
            position: relative;
            margin: 5% auto;
            width: 80%;
            max-width: 800px;
            background-color: var(--secondary-bg);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            animation: modalFadeIn 0.5s;
        }

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

        /* Improved close button - pulsing dot */
        .close-modal {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            border-radius: 50%;
            background-color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            overflow: hidden;
            animation: closePulse 2s infinite;
        }

        .close-modal::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 3px;
            background-color: white;
            transform: rotate(45deg);
        }

        .close-modal::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 3px;
            background-color: white;
            transform: rotate(-45deg);
        }

        @keyframes closePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
                transform: scale(1);
            }
            
            70% {
                box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
                transform: scale(1.1);
            }
            
            100% {
                box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
                transform: scale(1);
            }
        }

        .close-modal:hover {
            background-color: var(--secondary-accent);
            transform: rotate(90deg);
        }

        .modal h2 {
            font-size: 32px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .modal h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .modal-body {
            margin-top: 20px;
        }

        .modal-body p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        /* Artist Section Styles */
        .artist-feature {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .artist-feature:last-child {
            border-bottom: none;
        }

        .artist-feature h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: var(--accent-color);
        }

        .artist-specialty {
            font-style: italic;
            opacity: 0.8;
            margin-bottom: 10px;
        }

        /* Collection Grid Styles */
        .collection-intro {
            text-align: center;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .styles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .style-card {
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .style-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
        }
        
        .style-image {
            height: 200px;
            overflow: hidden;
        }
        
        .style-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .style-card:hover .style-image img {
            transform: scale(1.1);
        }
        
        .style-info {
            padding: 20px;
        }
        
        .style-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--accent-color);
        }
        
        .style-info p {
            font-size: 14px;
            margin-bottom: 15px;
            opacity: 0.9;
            line-height: 1.5;
        }
        
        .style-link {
            display: inline-block;
            padding: 8px 15px;
            background-color: var(--accent-color);
            color: white;
            text-decoration: none;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .style-link:hover {
            background-color: var(--secondary-accent);
            transform: translateY(-3px);
        }
        
        .view-all-container {
            text-align: center;
            margin-top: 20px;
        }
        
        .view-all-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-color);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 18px;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .view-all-btn:hover {
            background-color: var(--secondary-accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
        }

        /* Contact Form Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--text-color);
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus, 
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px rgba(230, 126, 34, 0.3);
        }

        .submit-button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
        }

        .contact-info {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--accent-color);
            width: 20px;
        }

        .success-message {
            text-align: center;
            padding: 20px 0;
        }

        .success-message i {
            font-size: 48px;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .header {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .nav {
                margin-top: 15px;
                width: 100%;
                justify-content: space-between;
                flex-wrap: wrap;
            }
            
            .nav a {
                margin-left: 0;
                margin-right: 10px;
                margin-bottom: 10px;
                font-size: 14px;
            }
            
            .lang-selector {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .theme-toggle {
                margin-left: 10px;
                margin-top: 10px;
            }
            
            h1 {
                font-size: 32px;
            }
            
            p {
                font-size: 16px;
            }
            
            .content {
                padding: 30px 20px;
                max-width: 90%;
            }
            
            .preview-gallery {
                bottom: 80px;
                height: 60px;
            }

            .modal-content {
                width: 90%;
                padding: 25px;
                margin: 10% auto;
            }
            
            .modal h2 {
                font-size: 24px;
            }

            .styles-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }


        /* ==========================================================================
   Artist Modal - Complete CSS
   Comprehensive styling for the artist modal with organized sections
   ========================================================================== */

/* -----------------------------
   1. Modal Base Styles
   ----------------------------- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background-color: var(--secondary-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    animation: modalFadeIn 0.5s;
}

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

/* Close Button */
.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    overflow: hidden;
    animation: closePulse 2s infinite;
    z-index: 10;
}

.close-modal::before, .close-modal::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: white;
}

.close-modal::before {
    transform: rotate(45deg);
}

.close-modal::after {
    transform: rotate(-45deg);
}

@keyframes closePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
        transform: scale(1);
    }
    
    70% {
        box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
        transform: scale(1.1);
    }
    
    100% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
        transform: scale(1);
    }
}

.close-modal:hover {
    background-color: var(--secondary-accent);
    transform: rotate(90deg);
}

/* Modal Header */
.modal h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.modal h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.modal-body {
    margin-top: 20px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* -----------------------------
   2. Artist Modal Specific Styles
   ----------------------------- */

/* Scrollable content area */
.artist-modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(0, 0, 0, 0.2);
}

/* Artist Header Section */
.artist-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
}

.artist-profile h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 600;
}

.artist-specialty {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.artist-statement {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
    color: var(--text-color);
    opacity: 0.85;
}

/* Artist Philosophy Section */
.artist-philosophy {
    margin-bottom: 30px;
}

.artist-philosophy p {
    text-align: justify;
    hyphens: auto;
}

/* Section Headings */
.artist-modal-body h4 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Collections Grid */
.artist-collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.artist-collection {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-collection:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 126, 34, 0.3);
}

.artist-collection h5 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-color);
    font-weight: 600;
}

.artist-collection p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Artist Journey Section */
.artist-journey {
    margin-bottom: 30px;
}

.artist-journey p {
    text-align: justify;
}

/* Exhibition List */
.exhibition-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.exhibition-list li {
    margin-bottom: 15px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.exhibition-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 18px;
    top: -2px;
}

.exhibition-title {
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.95;
}

/* Contact Section */
.artist-contact {
    background-color: rgba(230, 126, 34, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-top: 35px;
    text-align: center;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.artist-contact h4 {
    border-bottom: none;
    margin-top: 0;
    font-size: 22px;
}

.contact-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* -----------------------------
   3. Light Mode Adjustments
   ----------------------------- */
.light-mode .artist-modal-body {
    color: #333;
}

.light-mode .artist-statement {
    border-left-color: var(--accent-color);
}

.light-mode .artist-modal-body h4 {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.light-mode .artist-collection {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .artist-collection:hover {
    border-color: rgba(230, 126, 34, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.light-mode .artist-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.light-mode .artist-contact {
    background-color: rgba(230, 126, 34, 0.08);
    border-color: rgba(230, 126, 34, 0.15);
}

.light-mode .contact-btn:hover {
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

.light-mode .exhibition-list li:before {
    color: var(--accent-color);
}

/* -----------------------------
   4. Responsive Adjustments
   ----------------------------- */
@media (max-width: 992px) {
    .artist-collections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .artist-collections {
        grid-template-columns: 1fr;
    }
    
    .artist-modal-body {
        max-height: 65vh;
        padding-right: 10px;
    }
    
    .artist-profile h3 {
        font-size: 24px;
    }
    
    .artist-specialty {
        font-size: 16px;
    }
    
    .artist-statement {
        font-size: 16px;
        padding-left: 12px;
    }
    
    .artist-modal-body h4 {
        font-size: 20px;
    }
    
    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 5% auto;
    }
    
    .modal h2 {
        font-size: 26px;
    }
    
    .exhibition-list li {
        padding-left: 18px;
    }
}

@media (max-width: 480px) {
    .artist-header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .artist-profile h3 {
        font-size: 22px;
    }
    
    .artist-specialty {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .artist-statement {
        font-size: 15px;
        padding-left: 10px;
        border-width: 2px;
    }
    
    .artist-modal-body h4 {
        font-size: 18px;
        margin: 25px 0 12px;
    }
    
    .artist-collection h5 {
        font-size: 16px;
    }
    
    .artist-collection p {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    .modal h2 {
        font-size: 24px;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
    
    .close-modal {
        width: 35px;
        height: 35px;
        right: 15px;
        top: 15px;
    }
    
    .close-modal::before,
    .close-modal::after {
        width: 18px;
    }
}