        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-dark: #0c0a09;
            --bg-card: #1a1614;
            --bg-card-hover: #241f1b;
            --gold-primary: #d4a54a;
            --gold-light: #f0d48a;
            --gold-dark: #a0782c;
            --text-main: #e8e0d5;
            --text-soft: #b5ab9e;
            --text-muted: #7a7166;
            --border-gold: rgba(212, 165, 74, 0.25);
            --shadow-gold: rgba(212, 165, 74, 0.12);
            --font-serif: 'Georgia', 'Times New Roman', serif;
            --font-sans: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --radius: 12px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--gold-primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-serif);
            color: var(--gold-light);
            line-height: 1.3;
            margin-top: 1.6em;
            margin-bottom: 0.6em;
            font-weight: 700;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            margin-top: 0.2em;
            text-align: center;
            text-shadow: 0 0 40px rgba(212, 165, 74, 0.15);
        }
        h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            border-left: 4px solid var(--gold-primary);
            padding-left: 1rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--text-main);
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text-soft);
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text-soft);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(180deg, #0f0d0b 0%, #0c0a09 100%);
            border-bottom: 1px solid var(--border-gold);
            padding: 0.8rem 0;
            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;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-family: var(--font-serif);
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--gold-primary);
            letter-spacing: 0.04em;
            text-shadow: 0 0 30px rgba(212, 165, 74, 0.2);
            transition: text-shadow var(--transition);
            line-height: 1.2;
        }
        .my-logo:hover {
            text-shadow: 0 0 50px rgba(212, 165, 74, 0.35);
            text-decoration: none;
        }
        .my-logo small {
            display: block;
            font-size: 0.55rem;
            font-family: var(--font-sans);
            color: var(--text-muted);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 300;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid var(--border-gold);
            color: var(--gold-primary);
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(212, 165, 74, 0.1);
        }
        .hamburger:focus-visible {
            outline: 2px solid var(--gold-primary);
            outline-offset: 2px;
        }
        nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 0.4rem 1rem;
            border-radius: 6px;
            font-size: 0.92rem;
            color: var(--text-soft);
            transition: background var(--transition), color var(--transition);
            white-space: nowrap;
        }
        nav a:hover,
        nav a.active {
            background: rgba(212, 165, 74, 0.12);
            color: var(--gold-light);
            text-decoration: none;
        }
        .breadcrumbs {
            background: rgba(255, 255, 255, 0.02);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: var(--text-muted);
            font-size: 1.1rem;
        }
        .breadcrumbs a {
            color: var(--text-soft);
        }
        .breadcrumbs a:hover {
            color: var(--gold-primary);
        }
        .breadcrumbs .current {
            color: var(--gold-primary);
        }
        main {
            padding: 2.8rem 0 4rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-gold);
        }
        .article-header .meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem 1.8rem;
            font-size: 0.92rem;
            color: var(--text-muted);
            margin-top: 0.8rem;
        }
        .article-header .meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .featured-image {
            margin: 2.5rem 0 3rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            background: var(--bg-card);
            padding: 0.6rem;
            border: 1px solid var(--border-gold);
        }
        .featured-image img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 0.8rem 0.4rem 0.2rem;
            font-style: italic;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media(min-width:992px) {
            .content-grid {
                grid-template-columns: 1fr 300px;
            }
        }
        .article-body {
            font-size: 1.05rem;
        }
        .article-body p {
            margin-bottom: 1.4rem;
        }
        .article-body strong {
            color: var(--gold-light);
            font-weight: 600;
        }
        .article-body .highlight {
            background: rgba(212, 165, 74, 0.08);
            border-left: 3px solid var(--gold-primary);
            padding: 1.2rem 1.8rem;
            border-radius: 0 8px 8px 0;
            margin: 1.8rem 0;
            font-style: italic;
        }
        .article-body ul,
        .article-body ol {
            margin: 1rem 0 1.5rem 1.8rem;
            color: var(--text-soft);
        }
        .article-body li {
            margin-bottom: 0.5rem;
        }
        .article-body .link-card {
            display: inline-block;
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 0.3rem 1rem;
            margin: 0.2rem 0;
            transition: background var(--transition), transform var(--transition);
        }
        .article-body .link-card:hover {
            background: var(--bg-card-hover);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius);
            padding: 1.5rem;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--border-gold);
            padding-bottom: 0.6rem;
            color: var(--gold-primary);
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.6rem;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: background var(--transition);
            font-size: 0.92rem;
        }
        .sidebar-card li a:hover {
            background: rgba(212, 165, 74, 0.08);
            text-decoration: none;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 1px solid var(--border-gold);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-main);
            font-size: 0.95rem;
            transition: border-color var(--transition), box-shadow var(--transition);
            min-width: 0;
        }
        .search-form input[type="text"]::placeholder {
            color: var(--text-muted);
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 3px rgba(212, 165, 74, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.4rem;
            background: var(--gold-primary);
            color: #0c0a09;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .search-form button:focus-visible {
            outline: 2px solid var(--gold-light);
            outline-offset: 2px;
        }
        .feedback-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-gold);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media(min-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .comment-form textarea,
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--border-gold);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-main);
            font-size: 0.95rem;
            font-family: var(--font-sans);
            transition: border-color var(--transition), box-shadow var(--transition);
            margin-bottom: 0.8rem;
        }
        .comment-form textarea:focus,
        .comment-form input[type="text"]:focus {
            outline: none;
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 3px rgba(212, 165, 74, 0.15);
        }
        .comment-form textarea {
            resize: vertical;
            min-height: 100px;
        }
        .comment-form button,
        .score-form button {
            padding: 0.7rem 2rem;
            background: var(--gold-primary);
            color: #0c0a09;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .score-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            margin: 0.6rem 0 1rem;
        }
        .score-stars input {
            display: none;
        }
        .score-stars label {
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: color var(--transition), transform var(--transition);
        }
        .score-stars label::before {
            content: "★";
        }
        .score-stars input:checked~label,
        .score-stars label:hover,
        .score-stars label:hover~label {
            color: var(--gold-primary);
            transform: scale(1.1);
        }
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .score-form .score-value {
            font-size: 0.95rem;
            color: var(--text-soft);
        }
        footer {
            background: linear-gradient(180deg, #0c0a09 0%, #080706 100%);
            border-top: 1px solid var(--border-gold);
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media(min-width:768px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr;
            }
        }
        friend-link {
            display: block;
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius);
            padding: 1.5rem 2rem;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.1rem;
            color: var(--gold-primary);
            border-bottom: 1px solid var(--border-gold);
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
        }
        friend-link li a {
            font-size: 0.92rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .copyright strong {
            color: var(--text-soft);
        }
        .emoji {
            font-style: normal;
        }
        .text-gold {
            color: var(--gold-primary);
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        @media(max-width:767px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.8rem;
                border-top: 1px solid var(--border-gold);
                margin-top: 0.6rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.7rem 1rem;
                border-radius: 4px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media(min-width:768px) {
            nav {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0c0a09;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold-dark);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold-primary);
        }
        ::selection {
            background: rgba(212, 165, 74, 0.3);
            color: #fff;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
