        *,
        *::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: #0d0f12;
            color: #e8e6e1;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f0e6c5;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 2px solid #f5c54240;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid #f5c542;
            padding-left: 0.75rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #dac292;
        }
        h4 {
            font-size: 1.15rem;
            color: #c0b28e;
            font-weight: 500;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d6d2c8;
        }
        blockquote {
            border-left: 4px solid #f5c542;
            background: #1a1d24;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #cfc9b8;
        }
        hr {
            border: none;
            border-top: 1px solid #2f323a;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            background: #f5c542;
            color: #0d0f12;
            padding: 0.5rem 1rem;
            border-radius: 0 0 6px 6px;
            z-index: 9999;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: #14171c;
            border-bottom: 2px solid #2a2e38;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            background: #14171cee;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f5c542, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            font-size: 1.4rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3f4550;
            color: #e8e6e1;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2e38;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.6rem;
            align-items: center;
        }
        .main-nav a {
            color: #c5c1b5;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #2a2e38;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.25rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #1a1d24;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #262a32;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #6b7280;
        }
        .breadcrumb a {
            color: #9ca3af;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #d4c5a0;
            font-weight: 500;
        }
        .search-section {
            background: #1a1d24;
            padding: 1.2rem 0;
            border-bottom: 1px solid #262a32;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border: 1px solid #3f4550;
            border-radius: 8px;
            background: #0d0f12;
            color: #e8e6e1;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-form button {
            background: #f5c542;
            border: none;
            color: #0d0f12;
            font-weight: 600;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #e0b83a;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 0.9rem;
        }
        .hero {
            background: linear-gradient(145deg, #14171c 0%, #1f242d 100%);
            padding: 2.5rem 0 2rem;
            border-bottom: 1px solid #2a2e38;
        }
        .hero h1 {
            font-size: 2.6rem;
            margin-top: 0;
            border-bottom: none;
            padding-bottom: 0;
        }
        .hero .subtitle {
            font-size: 1.1rem;
            color: #b8ad8e;
            margin-top: 0.2rem;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #8e8e8e;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
            color: #f5c542;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
        }
        .content-body p,
        .content-body li {
            font-size: 1.02rem;
        }
        .content-body li {
            margin-bottom: 0.35rem;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #1a1d24;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #2a2e38;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #2f323a;
            padding-bottom: 0.5rem;
            margin-bottom: 0.8rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .sidebar-card li a:hover {
            background: #252a33;
            text-decoration: none;
        }
        .sidebar-card li a i {
            width: 1.2rem;
            color: #f5c542;
            font-size: 0.85rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2f323a;
            background: #1a1d24;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #a8a292;
            background: #14171c;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .comment-box,
        .score-box {
            background: #1a1d24;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #2a2e38;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #2f323a;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box textarea,
        .comment-box input,
        .score-box select,
        .score-box input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #3f4550;
            border-radius: 8px;
            background: #0d0f12;
            color: #e8e6e1;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .comment-box textarea:focus,
        .comment-box input:focus,
        .score-box select:focus {
            border-color: #f5c542;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box button,
        .score-box button {
            background: #f5c542;
            border: none;
            color: #0d0f12;
            font-weight: 600;
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #e0b83a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin-bottom: 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #3f4550;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .site-footer {
            background: #14171c;
            border-top: 2px solid #2a2e38;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-grid h4 {
            margin-top: 0;
            font-size: 1rem;
            color: #d4c5a0;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid li {
            margin-bottom: 0.3rem;
        }
        .footer-grid li a {
            font-size: 0.9rem;
            color: #9ca3af;
        }
        .footer-grid li a:hover {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1rem;
            background: #1a1d24;
            border-radius: 8px;
            margin: 1rem 0 0.5rem;
            font-size: 0.9rem;
            border: 1px solid #2a2e38;
        }
        friend-link a {
            margin: 0 0.3rem;
        }
        .copyright {
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
            border-top: 1px solid #262a32;
            padding-top: 1.2rem;
            margin-top: 0.8rem;
        }
        .copyright a {
            color: #9ca3af;
        }
        @media (max-width: 820px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 640px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #14171c;
                padding: 0.8rem 0;
                border-top: 1px solid #2a2e38;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 0;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 420px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        .text-gold {
            color: #f5c542;
        }
        .text-muted {
            color: #8e8e8e;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .w-100 {
            width: 100%;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
