:root {
            --bg: #191b20;
            --panel: #23262b;
            --accent: #e63946;
            --accent-soft: rgba(230, 57, 70, 0.14);
            --gold: #d7b75b;
            --gold-soft: rgba(215, 183, 91, 0.14);
            --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: 1180px;
        }

        * { box-sizing: border-box; }
        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.6;
        }

        a { color: inherit; }

        .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.25rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }

        .topbar-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
        }

        .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;
        }

        .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);
            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.94rem;
        }

        .page-shell {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 2rem 1.2rem 2.8rem;
        }

        .hero {
            text-align: center;
            margin-bottom: 1.6rem;
        }

        .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;
        }

        .site-title {
            margin: 0;
            font-family: 'Oswald', Arial, sans-serif;
            font-size: clamp(2.45rem, 5vw, 4.2rem);
            line-height: 0.98;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .site-title .accent { color: var(--accent); }

        .hero-copy {
            max-width: 780px;
            margin: 0.95rem auto 0;
            color: var(--muted);
            font-size: 1.02rem;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .link-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            min-height: 100%;
            padding: 1.2rem;
            text-decoration: none;
            background: linear-gradient(180deg, rgba(35, 38, 43, 0.97), rgba(29, 32, 37, 0.97));
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .link-card:hover,
        .link-card:focus-visible {
            transform: translateY(-2px);
            border-color: rgba(215, 183, 91, 0.28);
            background: linear-gradient(180deg, rgba(38, 42, 48, 0.99), rgba(30, 33, 38, 0.99));
            outline: none;
        }

        .link-card::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));
        }

        .card-tag {
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            padding: 0.34rem 0.7rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: var(--gold);
            font-size: 0.8rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .card-title {
            margin: 0;
            font-family: 'Oswald', Arial, sans-serif;
            font-size: 1.35rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            color: var(--text);
        }

        .card-text {
            margin: 0;
            color: var(--muted);
            font-size: 0.96rem;
        }

        .card-url {
            margin-top: auto;
            color: #fff;
            font-size: 0.9rem;
            word-break: break-word;
        }

        .footer-actions {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0.85rem 1.25rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .back-link:hover,
        .back-link:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(215, 183, 91, 0.38);
            background: rgba(215, 183, 91, 0.08);
            outline: none;
        }

        @media (max-width: 980px) {
            .links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 640px) {
            .page-shell { padding: 1.35rem 0.85rem 2rem; }
            .topbar-inner { align-items: stretch; }
            .topbar-note { text-align: left; }
            .topbar-links { flex-direction: column; }
            .chip-link { width: 100%; }
            .links-grid { grid-template-columns: 1fr; }
        }
