

        /* CSS Variables for theming */
        :root {
            /* Primary Colors - Deep elegant base */
            --primary-color: #0a0a14;
            /* Rich black */
            --secondary-color: #1e1e2a;
            /* Dark slate */
            --accent-color: #d4af37;
            /* Gold - for luxury accents */
            --accent-dark: #b5922e;
            /* Darker gold */
            --accent-light: #f0e6c2;
            /* Soft gold light */
            /* Text Colors - Optimized contrast */
            --text-color: #ffffff;
            /* Pure white */
            --text-color-dark: #0a0a14;
            /* Matching primary */
            --text-color-light: #b8b8c7;
            /* Soft gray for secondary text */
            --text-lighter: #e0e0e5;
            /* Very light gray */
            /* Background Colors - Sophisticated neutrals */
            --bg-color: #ffffff;
            /* Clean white */
            --bg-dark: #0a0a14;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--text-color);
            line-height: 1.6;
            color:   var(--bg-dark);
        }
      
        .container {
      
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .title-header {
            margin-top: 90px;
            
            text-align: center;
            padding: 30px 0;
        }

        h1 {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
        }

        h1::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 25%;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 20px 0;
        }

        .gallery-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            aspect-ratio: 2/3;
            background-color: var(--secondary-color);
        }

        .gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-card:hover .gallery-img {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 10, 20, 0.9), transparent);
            padding: 20px;
            color: var(--text-color);
        }

        .model-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .model-title {
            font-size: 0.9rem;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 10, 20, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }

        .lightbox-caption {
            text-align: center;
            margin-top: 15px;
        }

        .lightbox-name {
            font-size: 1.5rem;
            color: var(--text-color);
            margin-bottom: 5px;
        }

        .lightbox-title {
            font-size: 1rem;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .close-btn {
            position: absolute;
            top: -40px;
            right: 0;
            color: var(--text-color);
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: var(--accent-color);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .gallery {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .gallery {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2rem;
            }
        }
  