
        /* Gallery grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            background: var(--dm-gray-200);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--dm-shadow-lg);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            padding: 1rem;
            color: var(--dm-white);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .gallery-item-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .gallery-item-desc {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        /* Category filter */
        .category-filter {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Featured carousel */
        .featured-section {
            margin-bottom: 3rem;
        }

        .featured-section h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .carousel {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--dm-shadow-md);
        }

        /* Lightbox modal */
        .lightbox-modal .modal-body {
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--dm-black);
        }

        .lightbox-modal img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
        }

        .lightbox-info {
            padding: 1.5rem;
            background: var(--dm-card-bg);
        }

        .lightbox-info h3 {
            margin: 0 0 0.5rem;
        }

        .lightbox-info p {
            margin: 0;
            color: var(--dm-text-muted);
        }

        /* Stats bar */
        .stats-bar {
            display: flex;
            gap: 2rem;
            justify-content: center;
            padding: 2rem;
            background: var(--dm-gray-100);
            border-radius: 12px;
            margin-bottom: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dm-primary);
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--dm-text-muted);
            display: block;
        }
