        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0d0b15;
            color: #e4e0e8;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #d4a373;
            text-decoration: none;
            transition: color .25s, opacity .25s;
        }
        a:hover,
        a:focus-visible {
            color: #f0c27a;
            opacity: .92;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.25;
            color: #f5f0f8;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: .6rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: .8rem;
            border-bottom: 2px solid #2a2238;
            padding-bottom: .4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: .5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: .3rem;
            color: #cbbae3;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #15101f;
            border-bottom: 2px solid #2a2238;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #d4a373, #f0c27a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 18px rgba(212, 163, 115, 0.25);
        }
        .my-logo small {
            font-size: .65rem;
            -webkit-text-fill-color: #9a8aaa;
            display: block;
            font-weight: 400;
            letter-spacing: .5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a373;
            color: #d4a373;
            font-size: 1.3rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #d4a37322;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.6rem;
            align-items: center;
        }
        .primary-nav a {
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cdc4db;
            transition: 0.2s;
        }
        .primary-nav a:hover {
            background: #2a2238;
            color: #f0c27a;
        }
        .breadcrumb {
            background: #1a1527;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2238;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7a6b8a;
        }
        .breadcrumb a {
            color: #b4a6c4;
        }
        .breadcrumb .current {
            color: #d4a373;
            font-weight: 500;
        }
        .hero {
            padding: 2.2rem 0 1.2rem;
        }
        .hero h1 {
            font-size: 2.6rem;
            background: linear-gradient(135deg, #f5f0f8, #d4a373);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            color: #9a8aaa;
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }
        .hero .meta i {
            margin-right: 0.3rem;
        }
        .last-updated {
            font-weight: 600;
            color: #d4a373;
        }
        .search-block {
            background: #1a1527;
            border-radius: 14px;
            padding: 1.4rem 1.6rem;
            margin: 1.6rem 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            border: 1px solid #2a2238;
        }
        .search-block label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #d4a373;
        }
        .search-block form {
            flex: 1;
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-block input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 0.6rem 1rem;
            border-radius: 40px;
            border: 1px solid #3a2f4a;
            background: #0d0b15;
            color: #e4e0e8;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
        }
        .search-block input[type="text"]:focus {
            border-color: #d4a373;
            box-shadow: 0 0 0 3px #d4a37333;
        }
        .search-block button {
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            border: none;
            background: #d4a373;
            color: #0d0b15;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-block button:hover {
            background: #f0c27a;
            transform: scale(1.02);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 1.6rem 0 2.4rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: #15101f;
            border-radius: 16px;
            padding: 1.4rem 1.2rem;
            border: 1px solid #2a2238;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 1px solid #2a2238;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.6rem;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: 0.2s;
        }
        .sidebar a:hover {
            background: #2a2238;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a1527;
            padding: 0.6rem;
            border: 1px solid #2a2238;
        }
        .featured-image img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image figcaption {
            padding: 0.6rem 0.4rem 0.2rem;
            font-size: 0.85rem;
            color: #9a8aaa;
            text-align: center;
            font-style: italic;
        }
        .inline-link-list {
            background: #1a1527;
            border-left: 4px solid #d4a373;
            padding: 1rem 1.4rem;
            border-radius: 0 12px 12px 0;
            margin: 1.4rem 0;
        }
        .inline-link-list a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
        }
        .feedback-section {
            background: #15101f;
            border-radius: 16px;
            padding: 1.8rem 1.6rem;
            margin: 2.4rem 0;
            border: 1px solid #2a2238;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-bottom: none;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin-top: 1rem;
        }
        .feedback-card {
            background: #1a1527;
            border-radius: 12px;
            padding: 1.2rem 1.2rem 1.4rem;
            border: 1px solid #2a2238;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.6rem 0.9rem;
            border-radius: 8px;
            border: 1px solid #3a2f4a;
            background: #0d0b15;
            color: #e4e0e8;
            font-size: 0.9rem;
            outline: none;
            font-family: inherit;
            transition: 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #d4a373;
            box-shadow: 0 0 0 3px #d4a37333;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            align-self: flex-start;
            padding: 0.55rem 1.6rem;
            border-radius: 40px;
            border: none;
            background: #d4a373;
            color: #0d0b15;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card button:hover {
            background: #f0c27a;
            transform: scale(1.02);
        }
        .site-footer {
            background: #15101f;
            border-top: 2px solid #2a2238;
            padding: 2rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            margin-top: 0;
            color: #d4a373;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 0.4rem;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #2a2238;
            font-size: 0.9rem;
            color: #9a8aaa;
        }
        friend-link a {
            margin: 0 0.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            border-top: 1px solid #1a1527;
            font-size: 0.85rem;
            color: #7a6b8a;
        }
        @media (max-width: 820px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.6rem;
                gap: 0.2rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.5rem 0.8rem;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
        }
        @media (max-width: 540px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .search-block form {
                flex-direction: column;
            }
            .search-block input[type="text"] {
                min-width: auto;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .feedback-section {
                padding: 1rem 0.9rem;
            }
            .sidebar {
                padding: 1rem 0.9rem;
            }
        }
        .highlight {
            color: #f0c27a;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #2a2238;
            padding: 0.1rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #b4a6c4;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        hr {
            border: none;
            height: 1px;
            background: #2a2238;
            margin: 1.8rem 0;
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 0.6rem 0.8rem;
            border: 1px solid #2a2238;
            text-align: left;
        }
        th {
            background: #1a1527;
            color: #d4a373;
        }
        td {
            background: #0d0b15;
        }
        .anchor {
            scroll-margin-top: 80px;
        }
