 <style>

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            background-image: linear-gradient(rgba(9, 9, 11, 0.92), rgba(9, 9, 11, 0.92)), 
                              url('01-Kupios.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--text-primary);
            font-family: var(--font);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img, video {
            -webkit-user-drag: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }

        a { color: inherit; text-decoration: none; }

        header {
            padding: 2.5rem 2rem;
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 0px solid var(--border);
        }

        .studio-brand h1 { font-size: 1.25rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
        .studio-brand p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }

        main { max-width: 1600px; margin: 0 auto; padding: 2rem; }

        .breadcrumb-trail { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
        .breadcrumb-trail a { transition: color 0.2s; }
        .breadcrumb-trail a:hover { color: var(--accent); }
        .breadcrumb-separator { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
        .breadcrumb-active { color: var(--text-primary); font-weight: 500; }

        .section-headline { font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin: 2rem 0 1rem 0; color: var(--text-muted); border-left: 2px solid var(--border); padding-left: 0.75rem; }

        .album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
        .album-card { display: block; background: rgba(20, 20, 22, 0.25); padding: 0.75rem; border-radius: 6px; border: 1px solid transparent; transition: background 0.3s, border-color 0.3s; }
        .album-card:hover { background: rgba(20, 20, 22, 0.5); border-color: var(--border); }
        .album-cover-frame { position: relative; aspect-ratio: 3 / 2; background: var(--bg-surface); border-radius: 4px; overflow: hidden; margin-bottom: 0.8rem; border: 1px solid var(--border); }
        .album-cover-frame img, .album-cover-frame video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .album-card:hover .album-cover-frame img, .album-card:hover .album-cover-frame video { transform: scale(1.03); }
        .album-meta { display: flex; justify-content: space-between; align-items: baseline; padding: 0 0.1rem; }
        .album-title { font-size: 0.95rem; font-weight: 500; color: var(--text-primary); }
        .album-stats { font-size: 0.82rem; color: var(--text-muted); }

        .masonry-container { column-count: 1; column-gap: 1.5rem; }
        @media(min-width: 640px) { .masonry-container { column-count: 2; } }
        @media(min-width: 1024px) { .masonry-container { column-count: 3; } }
        @media(min-width: 1440px) { .masonry-container { column-count: 4; } }

        .masonry-item { break-inside: avoid; margin-bottom: 1.5rem; position: relative; background: var(--bg-surface); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border-radius: 4px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; }
        .masonry-item img, .masonry-item video { width: 100%; height: auto; display: block; }
        
        .media-badge { position: absolute; top: 10px; right: 10px; background: rgba(0, 0, 0, 0.65); backdrop-filter: blur(4px); padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; display: flex; align-items: center; gap: 0.3rem; z-index: 10; border: 1px solid rgba(255,255,255,0.08); }
        .masonry-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); opacity: 0; transition: opacity 0.25s ease; display: flex; align-items: flex-end; padding: 1.2rem; z-index: 5; }
        .masonry-item:hover .masonry-overlay { opacity: 1; }
        .img-title { font-size: 0.88rem; color: #fff; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; max-width: 90%; }

        #lightbox { position: fixed; inset: 0; background: #050506; z-index: 2000; display: none; opacity: 0; transition: opacity 0.3s ease; flex-direction: column; user-select: none; }
        #lightbox.active { display: flex; opacity: 1; }
        .lb-header { height: 60px; display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); z-index: 2100; }
        .lb-counter { font-size: 0.88rem; color: var(--text-muted); }
        .lb-controls { display: flex; gap: 0.5rem; align-items: center; }
        .lb-stage { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; padding: 1rem; overflow: hidden; }
        .lb-img, .lb-video { max-width: 100%; max-height: 80vh; object-fit: contain; opacity: 0; transform: scale(0.98); transition: opacity 0.2s, transform 0.2s; box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8); outline: none; }
        .lb-img.loaded, .lb-video.loaded { opacity: 1; transform: scale(1); }

        .lb-nav { 
            position: absolute; 
            top: 50%; 
            transform: translateY(-50%); 
            width: 52px; 
            height: 52px; 
            border-radius: 50%; 
            background: rgba(0, 0, 0, 0.65); 
            backdrop-filter: blur(8px); 
            -webkit-backdrop-filter: blur(8px); 
            border: 1px solid rgba(255, 255, 255, 0.2); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            z-index: 2050; 
            color: #ffffff; 
            opacity: 0.85; 
            transition: all 0.2s ease; 
            outline: none; 
        }
        .lb-nav:hover { 
            opacity: 1; 
            background: rgba(255, 255, 255, 0.25); 
            transform: translateY(-50%) scale(1.1); 
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); 
        }
        .lb-nav-prev { left: 1.5rem; }
        .lb-nav-next { right: 1.5rem; }

        @media (max-width: 640px) {
            .lb-nav { width: 42px; height: 42px; }
            .lb-nav-prev { left: 0.5rem; }
            .lb-nav-next { right: 0.5rem; }
        }

        .lb-footer-info { background: #09090b; border-top: 1px solid rgba(255,255,255,0.04); padding: 1.2rem 2rem; text-align: center; z-index: 2100; }
        .lb-meta-title { font-size: 0.95rem; margin-bottom: 0.25rem; }
        .lb-meta-exif { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.02em; }
        .btn { background: var(--bg-surface); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid var(--border); color: var(--text-primary); padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.82rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; }
        .btn:hover { background: var(--bg-elevated); border-color: rgba(255, 255, 255, 0.2); }
        .icon-svg { width: 18px; height: 18px; fill: currentColor; }

        footer { max-width: 1600px; margin: 5rem auto 0 auto; padding: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }
    </style>