        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0a0c;
            color: #e8e3e0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0a35e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffc98a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5ede4;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2d2126;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #f0c8a0;
        }
        h4 {
            font-size: 1.1rem;
            color: #dbb894;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1216 0%, #2a1a22 100%);
            padding: 0.75rem 0;
            border-bottom: 3px solid #3f2a2f;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0a35e, #d97a5a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #98868c;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0a35e;
            color: #f0a35e;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0a35e22;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            display: inline-block;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #dbcacf;
            background: transparent;
            border: 1px solid transparent;
            transition: all 0.2s;
        }
        .nav-menu li a:hover {
            background: #3f2a2f;
            border-color: #f0a35e66;
            color: #f5ede4;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1f151a;
            padding: 0.6rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.5rem;
            margin-top: 0.75rem;
            margin-bottom: 1.2rem;
            border: 1px solid #2d2126;
        }
        .breadcrumb a {
            color: #c9a8a0;
        }
        .breadcrumb a:hover {
            color: #f0a35e;
        }
        .breadcrumb .current {
            color: #f0a35e;
            font-weight: 600;
        }
        .breadcrumb i {
            color: #6d525a;
            font-size: 0.7rem;
        }
        .search-section {
            background: #1f151a;
            padding: 1.8rem 1.5rem;
            border-radius: 20px;
            margin: 1.5rem 0 2rem;
            border: 1px solid #2d2126;
        }
        .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.8rem 1.2rem;
            border-radius: 40px;
            border: 2px solid #3f2a2f;
            background: #0f0b0d;
            color: #f5ede4;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0a35e;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #e67a3a, #c45a3a);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px #c45a3a55;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media(min-width:860px) {
            .content-grid {
                grid-template-columns: 1fr 300px;
            }
        }
        .article-body p {
            text-align: justify;
        }
        .article-body .highlight-box {
            background: #1f151a;
            border-left: 5px solid #f0a35e;
            padding: 1.2rem 1.5rem;
            border-radius: 0 16px 16px 0;
            margin: 1.4rem 0;
        }
        .article-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image-wrapper {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1f151a;
            padding: 0.6rem;
        }
        .featured-image-wrapper img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image-wrapper figcaption {
            text-align: center;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.9rem;
            color: #b8a0a0;
            font-style: italic;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
            padding: 0.8rem 0;
            margin: 1rem 0;
            list-style: none;
        }
        .link-list-inline li a {
            background: #1f151a;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            border: 1px solid #2d2126;
            font-size: 0.9rem;
            display: inline-block;
            transition: all 0.2s;
        }
        .link-list-inline li a:hover {
            background: #3f2a2f;
            border-color: #f0a35e;
            text-decoration: none;
        }
        .sidebar {
            background: #1f151a;
            border-radius: 20px;
            padding: 1.5rem;
            border: 1px solid #2d2126;
            align-self: start;
            position: sticky;
            top: 6rem;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #2d2126;
            padding-bottom: 0.5rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #2a1a22;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a i {
            color: #f0a35e;
            width: 1.2rem;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media(min-width:700px) {
            .interaction-area {
                grid-template-columns: 1fr 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #1f151a;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #2d2126;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #2d2126;
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 12px;
            border: 2px solid #2d2126;
            background: #0f0b0d;
            color: #f5ede4;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #f0a35e;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 0.7rem 2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #e67a3a, #c45a3a);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px #c45a3a55;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #4a353a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0a35e;
        }
        .rating-form .score-value {
            display: inline-block;
            margin-left: 0.8rem;
            font-weight: 700;
            color: #f0a35e;
        }
        .site-footer {
            background: #1a1216;
            border-top: 3px solid #2d2126;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.8rem;
        }
        @media(min-width:700px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr;
            }
        }
        .footer-copyright p {
            font-size: 0.9rem;
            color: #98868c;
            margin-bottom: 0.3rem;
        }
        .footer-copyright .copy-bold {
            color: #dbcacf;
            font-weight: 500;
        }
        friend-link {
            display: block;
            background: #0f0b0d;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            border: 1px solid #2d2126;
        }
        friend-link h4 {
            margin: 0 0 0.8rem;
            font-size: 1.1rem;
            color: #f0c8a0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
        }
        friend-link ul li a {
            font-size: 0.9rem;
            background: #1f151a;
            padding: 0.3rem 0.9rem;
            border-radius: 30px;
            border: 1px solid #2d2126;
            display: inline-block;
        }
        friend-link ul li a:hover {
            border-color: #f0a35e66;
            text-decoration: none;
        }
        .last-update {
            text-align: center;
            padding: 0.8rem 0 0;
            font-size: 0.85rem;
            color: #6d525a;
            border-top: 1px solid #2d2126;
            margin-top: 1.5rem;
        }
        @media(max-width:700px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 0.8rem;
                background: #1a1216;
                padding: 0.8rem;
                border-radius: 16px;
                border: 1px solid #2d2126;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1rem;
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        @media(min-width:701px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0a0c;
        }
        ::-webkit-scrollbar-thumb {
            background: #3f2a2f;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a3a42;
        }
        ::selection {
            background: #f0a35e55;
            color: #fff;
        }
