*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg: #0f1216;
            --surface: #1a1f26;
            --surface2: #242b34;
            --accent: #c89b3c;
            --accent2: #e8c97a;
            --text: #e8e6e3;
            --text2: #a0a8b0;
            --border: #2e3844;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --maxw: 1200px;
            --gold: #c89b3c;
            --gold-light: #f0d68a;
            --dark-gold: #8a6d2b;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: var(--accent2);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--surface);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(200, 155, 60, 0.15);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: var(--text2);
            background: none;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text2);
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-list a:hover,
        .nav-list a:focus-visible {
            background: var(--surface2);
            color: var(--gold);
            text-decoration: none;
        }
        .nav-list a.active {
            color: var(--gold);
            background: rgba(200, 155, 60, 0.12);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: var(--surface2);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 12px 0;
            margin-top: 6px;
        }
        .nav-mobile.open {
            display: block;
        }
        .nav-mobile .nav-list {
            flex-direction: column;
            gap: 2px;
        }
        .nav-mobile .nav-list a {
            display: block;
            padding: 12px 16px;
            border-radius: 6px;
        }
        .breadcrumb {
            background: var(--surface);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: var(--text2);
        }
        .breadcrumb a {
            color: var(--text2);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--gold);
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #f0d68a, #c89b3c, #f0d68a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: var(--gold);
            border-bottom: 2px solid var(--border);
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: var(--gold-light);
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: var(--text);
        }
        p {
            margin-bottom: 18px;
            color: var(--text);
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text2);
            border-left: 4px solid var(--gold);
            padding-left: 20px;
            margin-bottom: 28px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(200, 155, 60, 0.15), rgba(200, 155, 60, 0.05));
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid var(--border);
            transition: transform 0.25s, box-shadow 0.3s, border-color 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: var(--gold);
        }
        .card h3 {
            margin-top: 0;
        }
        .card i {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 12px;
        }
        .stat-box {
            background: var(--surface2);
            border-radius: 8px;
            padding: 16px 20px;
            margin: 16px 0;
            border-left: 4px solid var(--gold);
        }
        .stat-box strong {
            color: var(--gold-light);
        }
        .btn {
            display: inline-block;
            background: var(--gold);
            color: #0f1216;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 8px;
            transition: background 0.25s, transform 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            text-decoration: none;
            color: #0f1216;
        }
        .feature-img {
            margin: 32px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .feature-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text2);
            margin-top: 8px;
            font-style: italic;
        }
        .search-section {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 32px 28px;
            margin: 40px 0;
            border: 1px solid var(--border);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            transition: border-color 0.25s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: var(--gold);
        }
        .search-form button {
            background: var(--gold);
            border: none;
            color: #0f1216;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.25s, transform 0.2s;
        }
        .search-form button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid var(--border);
        }
        .feedback-card h3 {
            margin-top: 0;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card textarea,
        .feedback-card input {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            font-family: var(--font);
            resize: vertical;
            transition: border-color 0.25s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            outline: none;
            border-color: var(--gold);
        }
        .feedback-card textarea {
            min-height: 100px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: var(--border);
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--gold);
        }
        .links-block {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid var(--border);
        }
        .links-block ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .links-block li a {
            display: inline-block;
            padding: 6px 14px;
            background: var(--surface2);
            border-radius: 6px;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }
        .links-block li a:hover {
            background: var(--gold);
            color: #0f1216;
            text-decoration: none;
        }
        footer {
            background: var(--surface);
            border-top: 2px solid var(--border);
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
        }
        @media (max-width: 640px) {
            footer .container {
                grid-template-columns: 1fr;
            }
        }
        .footer-brand {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 8px;
            display: block;
        }
        .footer-copy {
            font-size: 0.85rem;
            color: var(--text2);
            margin-top: 16px;
        }
        friend-link {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-style: normal;
        }
        friend-link a {
            color: var(--text2);
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: var(--gold);
        }
        friend-link .label {
            font-weight: 600;
            color: var(--gold);
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        .updated {
            display: inline-block;
            background: var(--surface2);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text2);
            margin-bottom: 20px;
            border: 1px solid var(--border);
        }
        .updated i {
            margin-right: 6px;
            color: var(--gold);
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .header-inner {
                padding: 10px 0;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 1.9rem;
            }
            .lead {
                font-size: 1.05rem;
                padding-left: 14px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .feedback-grid {
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .breadcrumb ul {
                gap: 4px 8px;
                font-size: 0.75rem;
            }
            .card {
                padding: 16px;
            }
        }
        :focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 20px;
            background: var(--gold);
            color: #0f1216;
            padding: 8px 16px;
            border-radius: 0 0 8px 8px;
            z-index: 999;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        ::selection {
            background: rgba(200, 155, 60, 0.35);
            color: #fff;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background: var(--surface2);
            color: var(--gold);
            font-weight: 600;
        }
        tr:hover td {
            background: rgba(200, 155, 60, 0.04);
        }
