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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #0a0a0a;
            min-height: 100vh;
            position: relative;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #fff;
            color: #0a0a0a;
            padding: 8px 16px;
            z-index: 100;
            text-decoration: none;
            font-weight: 900;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Minimal gradient overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 0, 128, 0.03) 0%,
                rgba(128, 0, 255, 0.03) 25%,
                rgba(0, 128, 255, 0.03) 50%,
                rgba(0, 255, 128, 0.03) 75%,
                rgba(255, 255, 0, 0.03) 100%
            );
            pointer-events: none;
            z-index: 0;
        }

        header {
            background: rgba(10, 10, 10, 0.95);
            padding: 2rem 2rem 2rem;
            text-align: center;
            border-bottom: 4px solid transparent;
            border-image: linear-gradient(90deg, 
                #ff0080 0%,
                #8000ff 20%,
                #0080ff 40%,
                #00ff80 60%,
                #ffff00 80%,
                #ff0080 100%
            ) 1;
            position: relative;
            z-index: 1;
        }

        .title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(3rem, 12vw, 9rem);
            line-height: 1.2;
            letter-spacing: -0.04em;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, 
                #ff0080 0%,
                #8000ff 20%,
                #0080ff 40%,
                #00ff80 60%,
                #ffff00 80%,
                #ff0080 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;

        }
        
        .smaller {
        font-size: .5em;
        }

        header p {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1rem, 2.5vw, 2rem);
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 700;
        }

        main {
            max-width: 1600px;
            margin: 0 auto;
            padding: 1rem 2rem;
            position: relative;
            z-index: 1;
        }

        #gallery-section {
            margin: 1rem 0;
        }

        #gallery-section h3 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(3rem, 8vw, 7rem);
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(135deg, 
                #ff0080 0%,
                #8000ff 20%,
                #0080ff 40%,
                #00ff80 60%,
                #ffff00 80%,
                #ff0080 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            letter-spacing: -0.03em;
            text-transform: uppercase;
        }

        .masonry-grid {
            column-count: 4;
            column-gap: 2rem;
            margin-top: 3rem;
        }

        .masonry-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 2rem;
            break-inside: avoid;
            position: relative;
            overflow: hidden;
            background: #0a0a0a;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .masonry-item:hover {
            border-color: transparent;
            border-image: linear-gradient(135deg, 
                #ff0080,
                #8000ff,
                #0080ff
            ) 1;
            box-shadow: 
                0 0 30px rgba(255, 0, 128, 0.3),
                0 0 60px rgba(128, 0, 255, 0.2);
            transform: translateY(-4px);
        }

        .masonry-item img {
            width: 100%;
            height: auto;
            display: block;
            background-color: #f5f5f5; /* Placeholder color while loading */
            transition: all 0.3s ease;
        }
        
        /* Lazy loading fade-in effect */
        img[loading="lazy"] {
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        img[loading="lazy"].loaded {
            opacity: 1;
        }

        .masonry-item figure {
            margin: 0;
            padding: 0;
        }

        .masonry-item figure img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.3s ease;
        }

        .masonry-item:hover img {
            filter: brightness(1.1);
        }

        .masonry-item:hover figure img {
            filter: brightness(1.1);
        }

        .masonry-item figcaption {
            padding: 1rem;
            font-size: clamp(0.85rem, 1.5vw, 0.9rem);
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            background: rgba(10, 10, 10, 0.9);
            font-style: italic;
        }

        .callout-box {
            background: rgba(10, 10, 10, 0.8);
            color: #ffffff;
            padding: 2rem;
            border: 2px solid transparent;
            border-image: linear-gradient(135deg, 
                #ff0080,
                #8000ff,
                #0080ff,
                #00ff80
            ) 1;
            margin: 1rem 0 0 0;
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;

        }

        .callout-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 0, 128, 0.05),
                rgba(128, 0, 255, 0.05),
                rgba(0, 128, 255, 0.05),
                rgba(0, 255, 128, 0.05)
            );
            z-index: -1;
        }
        
        .emoji {
        font-size: 2em;
        }

        .callout-box h3 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 0;
            font-weight: 900;
            background: linear-gradient(135deg, 
                #ff0080,
                #8000ff,
                #0080ff
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
        }

        .callout-box p {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            line-height: 1.1;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
        }
        
        .callout-box strong {
        font-size: 1.8em;
        line-height: 1;
        }

        .callout-box a {
            color: #00ff80;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            border-bottom: 2px solid rgba(0, 255, 128, 0.3);
        }

        .callout-box a:hover {
            color: #ffff00;
            border-bottom-color: rgba(255, 255, 0, 0.5);
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.75rem 1.5rem;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            color: #ffffff;
            background: rgba(10, 10, 10, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: capitalize;
            letter-spacing: 0.05em;
            min-height: 44px;
            min-width: 44px;
        }

        .filter-btn:hover {
            border-color: #0080ff;
            box-shadow: 0 0 20px rgba(0, 128, 255, 0.3);
            transform: translateY(-2px);
        }

        .filter-btn:focus {
            outline: 3px solid #0080ff;
            outline-offset: 2px;
        }

        .filter-btn.active {
            border-color: transparent;
            border-image: linear-gradient(135deg, 
                #ff0080,
                #8000ff,
                #0080ff
            ) 1;
            background: rgba(255, 0, 128, 0.1);
            font-weight: 900;
        }

        .masonry-item.filtered-out {
            opacity: 0.3;
            filter: grayscale(80%);
        }

        .masonry-item.filtered-out:hover {
            opacity: 0.5;
        }

        nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 4rem auto;
            padding: 0 2rem;
            max-width: 1600px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        nav a {
            padding: 1rem 2.5rem;
            font-family: 'Inter', sans-serif;
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            font-weight: 900;
            text-decoration: none;
            color: #ffffff;
            background: rgba(10, 10, 10, 0.8);
            border: 2px solid transparent;
            border-image: linear-gradient(135deg, 
                #ff0080,
                #8000ff
            ) 1;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            min-height: 44px;
            min-width: 44px;
        }

        nav a:hover {
            background: rgba(255, 0, 128, 0.1);
            box-shadow: 
                0 0 30px rgba(255, 0, 128, 0.3),
                0 0 60px rgba(128, 0, 255, 0.2);
            transform: translateY(-2px);
        }

        nav a:focus {
            outline: 3px solid #ff0080;
            outline-offset: 2px;
        }

        footer {
            text-align: center;
            padding: 3rem 2rem;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(10, 10, 10, 0.95);
            margin-top: 4rem;
            border-top: 4px solid transparent;
            border-image: linear-gradient(90deg, 
                #ff0080 0%,
                #8000ff 20%,
                #0080ff 40%,
                #00ff80 60%,
                #ffff00 80%,
                #ff0080 100%
            ) 1;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        footer a {
            color: #00ff80;
            text-decoration: none;
            font-weight: 700;
            border-bottom: 2px solid rgba(0, 255, 128, 0.3);
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: #ffff00;
            border-bottom-color: rgba(255, 255, 0, 0.5);
        }

        footer a:focus {
            outline: 3px solid #00ff80;
            outline-offset: 2px;
        }

        @media (max-width: 1200px) {
            .masonry-grid { column-count: 3; }
        }

        @media (max-width: 900px) {
            .masonry-grid { column-count: 2; }
            header { padding: 4rem 1.5rem 3rem; }
            .callout-box {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .callout-box p {
                margin-top: 1rem;
            }
        }

        @media (max-width: 600px) {
            .masonry-grid { column-count: 1; }
            header { padding: 3rem 1rem 2rem; }
            .callout-box { padding: 2rem; }
            nav { gap: 1rem; }
        }
    