:root {
            --bg: #191b20;
            --bg-soft: #1f2228;
            --panel: #23262b;
            --panel-strong: #181b22;
            --accent: #e63946;
            --accent-soft: rgba(230, 57, 70, 0.15);
            --gold: #d7b75b;
            --gold-soft: rgba(215, 183, 91, 0.15);
            --text: #f2f2f2;
            --muted: #b8bcc4;
            --border: rgba(255, 255, 255, 0.08);
            --shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
            --radius-lg: 22px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --max-width: 1240px;
        }
        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            min-height: 100vh;
            background:
                radial-gradient(circle at top, rgba(230, 57, 70, 0.12), transparent 28%),
                linear-gradient(180deg, #15171b 0%, #191b20 38%, #16181c 100%);
            color: var(--text);
            font-family: 'Roboto', Arial, sans-serif;
            line-height: 1.55;
        }
        a { color: inherit; }
        img { max-width: 100%; display: block; }
        .topbar {
            background: linear-gradient(180deg, rgba(24, 27, 34, 0.98), rgba(24, 27, 34, 0.92));
            border-bottom: 1px solid var(--border);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
        }
        .topbar-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.9rem;
        }
        .topbar-links { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }
        .chip-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0.7rem 1rem;
            text-decoration: none;
            color: var(--text);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 999px;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
            font-size: 0.95rem;
        }
        .chip-link:hover, .chip-link:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(215, 183, 91, 0.38);
            background: rgba(215, 183, 91, 0.08);
            color: #fff;
            outline: none;
        }
        .chip-link.highlight {
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.18), rgba(215, 183, 91, 0.1));
            border-color: rgba(230, 57, 70, 0.28);
        }
        .topbar-note { color: var(--muted); font-size: 0.93rem; text-align: right; }
        .page-shell { max-width: var(--max-width); margin: 0 auto; padding: 2rem 1.25rem 2.8rem; }
        .hero {
            background: linear-gradient(180deg, rgba(35, 38, 43, 0.96), rgba(24, 27, 34, 0.96));
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 2rem 1.4rem 1.6rem;
            margin-bottom: 1.35rem;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .hero::before, .panel::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, rgba(215, 183, 91, 0), rgba(215, 183, 91, 0.36), rgba(215, 183, 91, 0));
            pointer-events: none;
        }
        .kicker {
            display: inline-block;
            margin-bottom: 0.8rem;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            background: var(--gold-soft);
            border: 1px solid rgba(215, 183, 91, 0.26);
            color: var(--gold);
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        h1 {
            margin: 0;
            font-family: 'Oswald', Arial, sans-serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            line-height: 1;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--text);
        }
        .hero p { max-width: 860px; margin: 0.95rem auto 0; color: var(--muted); font-size: 1rem; }
        .layout { display: grid; gap: 1.35rem; }
        .panel {
            background: linear-gradient(180deg, rgba(35, 38, 43, 0.96), rgba(29, 32, 37, 0.96));
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 1.2rem;
            position: relative;
            overflow: hidden;
        }
        .panel + .panel { margin-top: 0; }
        .panel-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
        .panel h2 {
            margin: 0;
            font-family: 'Oswald', Arial, sans-serif;
            font-size: 1.35rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--gold);
        }
        .panel .eyebrow { color: var(--muted); font-size: 0.94rem; max-width: 760px; }
        .grid { display: grid; gap: 1rem; }
        .grid.cards { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
        .grid.gallery { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
        .link-card, .download-card {
            display: block;
            text-decoration: none;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }
        .link-card:hover, .link-card:focus-visible, .download-card:hover, .download-card:focus-visible {
            transform: translateY(-3px);
            border-color: rgba(230, 57, 70, 0.24);
            background: rgba(230, 57, 70, 0.05);
            outline: none;
        }
        .card-cover { aspect-ratio: 16/10; overflow: hidden; background: #15171b; }
        .card-cover img { width: 100%; height: 100%; object-fit: cover; }
        .card-body { padding: 1rem; }
        .card-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 0.6rem;
            padding: 0.25rem 0.55rem;
            border-radius: 999px;
            background: rgba(230, 57, 70, 0.12);
            border: 1px solid rgba(230, 57, 70, 0.2);
            color: #ffd8dc;
            font-size: 0.76rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .card-body h3 { margin: 0 0 0.4rem; font-size: 1.08rem; }
        .card-body p { margin: 0; color: var(--muted); font-size: 0.94rem; }
        .photo-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }
        .photo-link { display: block; background: #101216; }
        .photo-link img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; transition: transform 0.35s ease; }
        .photo-link:hover img, .photo-link:focus-visible img { transform: scale(1.03); }
        .photo-copy { padding: 0.85rem 0.9rem 0.95rem; }
        .photo-copy h3 { margin: 0 0 0.35rem; font-size: 1rem; }
        .photo-copy p { margin: 0; color: var(--muted); font-size: 0.9rem; }
        .photo-note { margin-top: 0.35rem !important; font-size: 0.8rem !important; color: #d4c089 !important; }
        .source-link { display: inline-flex; margin-top: 0.55rem; color: var(--gold); font-size: 0.85rem; text-decoration: none; }
        .source-link:hover, .source-link:focus-visible { text-decoration: underline; outline: none; }
        .pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
        .pill {
            display: inline-flex; align-items: center; justify-content: center; min-height: 40px;
            padding: 0.65rem 0.95rem; border-radius: 999px;
            background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255,255,255,0.06);
            color: var(--text); text-decoration: none; transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }
        .pill:hover, .pill:focus-visible { transform: translateY(-1px); border-color: rgba(215,183,91,0.28); background: rgba(215,183,91,0.08); outline: none; }
        .stack { display: grid; gap: 1.35rem; }
        .footer { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem 1.6rem; color: #9ea4af; font-size: 0.9rem; text-align: center; }
        .note-box { padding: 0.9rem 1rem; border-radius: var(--radius-md); background: rgba(215,183,91,0.08); border: 1px solid rgba(215,183,91,0.15); color: #e9ddbb; }
        .lightbox { position: fixed; inset: 0; background: rgba(7, 8, 11, 0.86); display: none; align-items: center; justify-content: center; padding: 1rem; z-index: 50; }
        .lightbox.open { display: flex; }
        .lightbox-inner { max-width: min(1100px, 100%); max-height: 100%; display: grid; gap: 0.8rem; }
        .lightbox img { max-width: 100%; max-height: calc(100vh - 140px); width: auto; height: auto; border-radius: 18px; box-shadow: 0 30px 55px rgba(0,0,0,0.45); }
        .lightbox-copy { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: #eef0f4; }
        .lightbox-title { font-size: 1rem; color: #eef0f4; }
        .lightbox-actions { display: flex; gap: 0.7rem; align-items: center; }
        .lightbox-btn { cursor: pointer; border: 0; border-radius: 999px; padding: 0.7rem 1rem; background: rgba(255,255,255,0.1); color: #fff; font: inherit; }
        .lightbox-btn:hover, .lightbox-btn:focus-visible { background: rgba(230,57,70,0.28); outline: none; }
        @media (max-width: 720px) {
            .page-shell { padding: 1.3rem 0.85rem 2rem; }
            .topbar-inner { flex-direction: column; align-items: stretch; }
            .topbar-note { text-align: left; }
            .topbar-links { flex-direction: column; align-items: stretch; }
            .chip-link { width: 100%; }
            .hero { padding: 1.6rem 1rem 1.25rem; }
            .panel { padding: 1rem; }
            .grid.gallery { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
        }
