         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f5f5f5;
            color: #333;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(135deg, #006400, #228B22);
            color: white;
            padding: 1rem 0;
            margin-bottom: 30px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo img {
            height: 60px;
        }
        
        h1 {
            font-size: 2rem;
            margin-bottom: 20px;
           
        }
        
        h2 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #333;
        }
        
        .back-link {
            display: inline-block;
            margin-bottom: 20px;
            color: #006400;
            text-decoration: none;
            font-weight: bold;
        }
        
        .back-link:hover {
            text-decoration: underline;
        }
        
        .archive-folders {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .folder-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .folder-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .folder-icon {
            font-size: 48px;
            color: #ff9800;
            margin-bottom: 10px;
        }
        
        .folder-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .folder-info {
            color: #666;
            font-size: 0.9rem;
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .gallery-item.loading {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        
        .empty-message {
            text-align: center;
            padding: 40px;
            color: #666;
            font-style: italic;
        }
        
        .breadcrumb {
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .breadcrumb a {
            color: #006400;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        #lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        #lightbox.show {
            visibility: visible;
            opacity: 1;
        }
        
        #lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
            transform-origin: center center;
            will-change: transform;
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 10000;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            font-size: 40px;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s;
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .lightbox-prev {
            left: 20px;
        }
        
        .lightbox-next {
            right: 20px;
        }

        .lightbox-controls,
        .image-info {
            transition: opacity 0.3s;
        }

        #lightbox:not(:hover) .lightbox-controls,
        #lightbox:not(:hover) .image-info {
            opacity: 0.3;
        }

        #lightbox:not(:hover) .lightbox-controls:hover,
        #lightbox:not(:hover) .image-info:hover {
            opacity: 1;
        }

        .image-container {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            cursor: grab;
            user-select: none;
        }
        
        .image-container.grabbing {
            cursor: grabbing;
        }
        
        .lightbox-controls {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px 15px;
            border-radius: 50px;
            z-index: 10001;
            backdrop-filter: blur(5px);
        }
        
        .lightbox-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        
        .lightbox-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .lightbox-btn:active {
            transform: scale(0.95);
        }
        
        .lightbox-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .lightbox-btn:disabled:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: none;
        }
        
        .zoom-in {
            font-size: 24px;
            font-weight: bold;
        }
        
        .zoom-out {
            font-size: 28px;
            line-height: 1;
        }
        
        .image-info {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-size: 16px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 15px;
            margin: 0 auto;
            width: fit-content;
            border-radius: 20px;
            backdrop-filter: blur(5px);
        }
        
        .zoom-level {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 10px;
            border-radius: 10px;
            min-width: 50px;
            display: inline-block;
        }
        
        .image-name {
            max-width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 14px;
            opacity: 0.8;
        }
        
        #lightbox.fullscreen .image-container img {
            max-width: none;
            max-height: none;
        }
        
        .archive-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .images-count {
            background-color: #e8f5e8;
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        * {
            transition: all 0.2s ease;
        }
        
        @media (max-width: 768px) {
            .lightbox-nav {
                width: 50px;
                height: 50px;
                font-size: 30px;
            }
            
            .lightbox-prev {
                left: 10px;
            }
            
            .lightbox-next {
                right: 10px;
            }
            
            .lightbox-controls {
                top: auto;
                bottom: 80px;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .lightbox-btn {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .image-info {
                flex-direction: column;
                gap: 5px;
                bottom: 10px;
                padding: 6px 12px;
            }
             .container {
                padding: 15px;
            }
            
            h1 {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }
            
            h2 {
                font-size: 1.3rem;
                margin: 20px 0 10px;
            }
            
            .logo img {
                height: 50px;
            }
            
            .logo div h1 {
                font-size: 1.2rem;
            }
            
            .logo div p {
                font-size: 0.9rem;
            }
            
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 10px;
            }
            
            .gallery-item {
                height: 150px;
            }

        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
                width: 95%;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .logo {
                flex-direction: column;
                text-align: center;
            }
            
            .logo img {
                height: 40px;
            }
            
            .logo div h1 {
                font-size: 1.1rem;
                margin-bottom: 5px;
            }
            
            .logo div p {
                font-size: 0.8rem;
            }
            
            h1 {
                font-size: 1.3rem;
                text-align: center;
            }
            
            .archive-folders {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            
            .gallery-item {
                height: 120px;
            }
            
            .archive-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .images-count {
                width: 100%;
                text-align: center;
            }

            .lightbox-nav {
                width: 45px;
                height: 45px;
                font-size: 25px;
            }
            
            .lightbox-prev {
                left: 5px;
            }
            
            .lightbox-next {
                right: 5px;
            }
            
            .lightbox-controls {
                bottom: 70px;
                padding: 8px 12px;
            }
            
            .lightbox-btn {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            
            .image-info {
                flex-direction: column;
                gap: 5px;
                padding: 6px 10px;
                font-size: 14px;
                width: 90%;
                bottom: 10px;
            }
            
            .zoom-level, .image-name {
                font-size: 12px;
            }
        }

        @media (max-width: 360px) {
            .gallery {
                grid-template-columns: 1fr;
                gap: 6px;
            }
            
            .gallery-item {
                height: 180px;
            }
            
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .lightbox-controls {
                bottom: 60px;
                gap: 5px;
            }
            
            .lightbox-btn {
                width: 30px;
                height: 30px;
            }
        }   

        @media (prefers-color-scheme: dark) {
            body {
                background-color: #121212;
                color: #e0e0e0;
            }
            
            .folder-card,
            .images-count {
                background-color: #1e1e1e;
                color: #e0e0e0;
            }
            
            .gallery-item img {
                filter: brightness(0.95);
            }
        }