
        @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

        :root {
            --bg: #f7f7f7;
            --text: #444;
            --accent: #ff7e00;
            --caption-bg: rgba(0, 0, 0, 0.6);
            --caption-text: #fff;
            --lightbox-bg: rgba(0, 0, 0, 0.8);
        }

        body.theme-dark {
            --bg: #121212;
            --text: #ddd;
            --accent: #ff7e00;
            --caption-bg: rgba(255, 255, 255, 0.15);
            --caption-text: #f0f0f0;
            --lightbox-bg: rgba(0, 0, 0, 0.9);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: var(--bg);
            margin: 0;
            padding: 20px;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1 {
            margin-bottom: 1rem;
        }
        h1 svg {
            color: var(--accent)
        }

        h2 {
            font-size: 1.2rem;
        }

        p {
            margin-bottom: 1rem;
            line-height: 1.4;
            font-size: .9rem;
        }

        h3 {
            margin-bottom: 1rem;
            color: var(--text);
            font-size: 1rem;
            font-weight: 400;
        }

        h1, h3,
        h2,
        p {
            text-align: center;
        }

        @media (min-width:600px) {
            header {
                max-width: 50%;
                margin: 2rem auto 4rem auto;
            }
        }

        footer {
            margin-top: 5rem;
            line-height: 1.4;
            font-size: .8rem;
            text-align: center;
            color: var(--text);
        }

        footer a {
            color: var(--accent);
            text-decoration: none;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gallery-item img {
            width: 75%;
            height: auto;
            border-radius: 6px;
            display: block;
            object-fit: contain;
            cursor: pointer;
        }
        .gallery-item.landscape img {
            width: 100%;
            height: auto;
        }

        .gallery.few-images {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .gallery.few-images .gallery-item {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            max-width: 350px;
        }

        .gallery.few-images .gallery-item img {
            width: auto;
            max-width: 100%;
            height: auto;
            max-height: 350px;
            display: block;
        }

        .gallery-item .caption {
            display: none;
        }

        .caption {
            background: var(--caption-bg);
            color: var(--caption-text);
            padding: 5px;
            font-size: 14px;
            border-radius: 0 0 6px 6px;
            text-align: center;
            flex-shrink: 0;
        }

        #lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--lightbox-bg);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            flex-direction: column;
        }

        #lightbox img {
            max-width: 90%;
            max-height: 80%;
            border-radius: 6px;
        }

        .lightbox-caption {
            color: #fff;
            margin-top: 10px;
            text-align: center;
        }

        .lightbox-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #fff;
            font-size: 2rem;
            padding: 0 10px;
            cursor: pointer;
        }

        .lightbox-arrow.prev {
            left: 10px;
        }

        .lightbox-arrow.next {
            right: 10px;
        }

        #lightbox:target {
            display: flex;
        }

        #cta {
        text-align: center;
        margin-top: 5rem;
    }

    .icon-list {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .icon-list li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--panel-bg, transparent);
        color: var(--text);
        text-decoration: none;
        transition: background 0.2s, color 0.2s, transform 0.1s;
    }

    .icon-list li a:hover {
        color: var(--accent);
        transform: scale(1.1);
    }

    .icon-list svg {
        width: 20px;
        height: 20px;
    }

        /* Theme toggle button */
        #themeToggle {
            position: fixed;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text);
            transition: color 0.3s, transform 0.15s;
        }

        #themeToggle:hover {
            color: var(--accent);
        }

        #themeToggle:active {
            transform: scale(0.9);
        }
