        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0b1a;
            color: #e8e6f0;
            line-height: 1.7;
            padding: 0 16px;
            min-height: 100vh;
        }
        a {
            color: #f0b27a;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffd5a8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.5em 0 0.3em;
        }
        h2 {
            font-size: 1.8rem;
            margin: 1.8em 0 0.6em;
            border-bottom: 2px solid #f0b27a33;
            padding-bottom: 0.3em;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.4em 0 0.4em;
            color: #f7d9b0;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1em 0 0.3em;
            color: #dcc8a8;
        }
        p {
            margin-bottom: 1.2em;
            word-break: break-word;
        }
        ul,
        ol {
            margin: 0.8em 0 1.4em 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        strong {
            color: #f7d9b0;
            font-weight: 700;
        }
        em {
            color: #dcc8a8;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 8px;
        }
        header {
            padding: 18px 0 8px;
            border-bottom: 1px solid #2a2540;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0b27a, #d9915a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0b27a;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px 20px;
            flex-wrap: wrap;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px 18px;
            flex-wrap: wrap;
            margin: 0;
        }
        .nav-list li a {
            font-size: 0.95rem;
            padding: 6px 2px;
            color: #c8c0dc;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            color: #f0b27a;
            border-bottom-color: #f0b27a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8e6f0;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f1b30;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            margin: 12px 0 4px;
            padding: 8px 0;
            font-size: 0.88rem;
            color: #9a92b0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #5a5270;
        }
        .breadcrumb a {
            color: #b0a8c8;
        }
        .breadcrumb a:hover {
            color: #f0b27a;
        }
        .search-block {
            background: #1a1530;
            border-radius: 16px;
            padding: 18px 22px;
            margin: 28px 0 16px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 18px;
            border: 1px solid #2e2848;
        }
        .search-block label {
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #f0b27a;
        }
        .search-block form {
            display: flex;
            flex: 1 1 260px;
            gap: 8px;
        }
        .search-block input[type="text"] {
            flex: 1;
            padding: 10px 16px;
            border-radius: 40px;
            border: none;
            background: #2a2540;
            color: #e8e6f0;
            font-size: 0.95rem;
            outline: 2px solid transparent;
            transition: outline 0.2s;
        }
        .search-block input[type="text"]:focus {
            outline-color: #f0b27a;
        }
        .search-block button {
            background: #f0b27a;
            border: none;
            border-radius: 40px;
            padding: 10px 20px;
            font-weight: 700;
            color: #0d0b1a;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-block button:hover {
            background: #ffc799;
            transform: scale(1.02);
        }
        .featured-img {
            margin: 30px 0 20px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            background: #1a1530;
            padding: 8px;
        }
        .featured-img img {
            border-radius: 10px;
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 10px 12px 4px;
            font-size: 0.9rem;
            color: #9a92b0;
            font-style: italic;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px 40px;
        }
        @media (min-width: 820px) {
            .content-grid {
                grid-template-columns: 1fr 280px;
            }
        }
        .main-article {
            min-width: 0;
        }
        .side-block {
            background: #1a1530;
            border-radius: 16px;
            padding: 20px 18px;
            border: 1px solid #2e2848;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .side-block h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .side-block ul {
            list-style: none;
            margin: 12px 0 0;
            padding: 0;
        }
        .side-block li {
            margin-bottom: 8px;
            padding: 4px 0;
            border-bottom: 1px solid #2a2540;
        }
        .side-block li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .side-block li a i {
            width: 18px;
            color: #f0b27a;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 24px;
            margin: 40px 0 30px;
        }
        @media (max-width: 640px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-card {
            background: #1a1530;
            border-radius: 16px;
            padding: 18px 20px 22px;
            border: 1px solid #2e2848;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 10px;
        }
        .interact-card textarea,
        .interact-card input[type="text"],
        .interact-card select {
            padding: 10px 14px;
            border-radius: 10px;
            border: none;
            background: #2a2540;
            color: #e8e6f0;
            font-size: 0.95rem;
            outline: 2px solid transparent;
            transition: outline 0.2s;
            width: 100%;
        }
        .interact-card textarea:focus,
        .interact-card input:focus,
        .interact-card select:focus {
            outline-color: #f0b27a;
        }
        .interact-card textarea {
            min-height: 72px;
            resize: vertical;
        }
        .interact-card button {
            background: #f0b27a;
            border: none;
            border-radius: 40px;
            padding: 10px 22px;
            font-weight: 700;
            color: #0d0b1a;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
        }
        .interact-card button:hover {
            background: #ffc799;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #4a4270;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0b27a;
        }
        footer {
            margin-top: 50px;
            padding: 30px 0 20px;
            border-top: 1px solid #2a2540;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px 30px;
        }
        friend-link {
            display: block;
            background: #1a1530;
            border-radius: 12px;
            padding: 16px 20px;
            margin: 10px 0 18px;
            border: 1px solid #2e2848;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 2px 0;
        }
        .copyright {
            font-size: 0.85rem;
            color: #7a7290;
            text-align: center;
            padding: 16px 0 4px;
            width: 100%;
        }
        .copyright a {
            color: #b0a8c8;
        }
        @media (max-width: 680px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1530;
                border-radius: 12px;
                padding: 12px 16px;
                margin-top: 8px;
                border: 1px solid #2e2848;
            }
            .nav-list li a {
                display: block;
                padding: 8px 4px;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked+.hamburger+.nav-list {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .search-block form {
                flex-wrap: wrap;
            }
            .search-block input[type="text"] {
                min-width: 140px;
            }
            .side-block {
                position: static;
            }
        }
        @media (max-width: 440px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .interact-card button {
                width: 100%;
                text-align: center;
            }
        }
        .text-muted {
            color: #9a92b0;
        }
        .mt-1 {
            margin-top: 0.6rem;
        }
        .mb-1 {
            margin-bottom: 0.6rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .badge {
            display: inline-block;
            background: #2e2848;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #c8c0dc;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a7290;
            margin: 8px 0 16px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .last-updated i {
            color: #f0b27a;
        }
        .link-icon {
            color: #f0b27a;
            margin-right: 4px;
        }
        blockquote {
            border-left: 4px solid #f0b27a;
            padding: 8px 16px;
            margin: 16px 0;
            background: #1a1530;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #dcc8a8;
        }
        .highlight-box {
            background: #1f1b30;
            border-radius: 14px;
            padding: 16px 20px;
            margin: 18px 0;
            border-left: 4px solid #f0b27a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 12px;
            margin: 16px 0;
        }
        .stat-item {
            background: #2a2540;
            border-radius: 12px;
            padding: 14px 12px;
            text-align: center;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0b27a;
            display: block;
        }
        .stat-item .label {
            font-size: 0.8rem;
            color: #9a92b0;
        }
