        *,
        *::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: #0c0b0e;
            color: #e8e4e0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f0a050;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffcc80;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff6ed;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 1rem;
            border-left: 6px solid #e63946;
            padding-left: 1rem;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #2a1f1a;
            padding-bottom: 0.5rem;
            color: #ffcc80;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #f5b774;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #e8c9a3;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: #141114;
            border-bottom: 2px solid #2a1f1a;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            background: rgba(20, 17, 20, 0.97);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0a050;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #e63946, #f0a050);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.6rem;
            display: block;
            -webkit-text-fill-color: #887a72;
            color: #887a72;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f0a050;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: transform 0.2s;
        }
        .nav-toggle:hover {
            transform: scale(1.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-menu a {
            color: #c7b9ae;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f0a050;
            border-bottom-color: #e63946;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0 0.5rem;
            font-size: 0.9rem;
            color: #8f8178;
        }
        .breadcrumb a {
            color: #b8a79c;
        }
        .breadcrumb a:hover {
            color: #f0a050;
        }
        .breadcrumb span {
            margin: 0 0.4rem;
            color: #5a4e46;
        }
        .search-section {
            background: #1b1618;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            border: 1px solid #2f2522;
        }
        .search-section label {
            font-weight: 600;
            color: #f0c8a0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.1rem;
        }
        .search-section input[type="text"] {
            flex: 1 1 260px;
            padding: 0.75rem 1.2rem;
            border: none;
            border-radius: 40px;
            background: #2d2320;
            color: #f0e8e0;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: 0.3s;
        }
        .search-section input[type="text"]:focus {
            outline-color: #e63946;
            background: #3a2c28;
        }
        .search-section button {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 40px;
            background: #e63946;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-section button:hover {
            background: #c52d39;
            transform: scale(1.02);
        }
        .interaction-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .interaction-panel {
                grid-template-columns: 1fr;
            }
        }
        .card-interact {
            background: #1b1618;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #2f2522;
        }
        .card-interact h3 {
            margin-top: 0;
            color: #f5b774;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 1rem 0 1.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #4a3e38;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b130;
        }
        .interact-form input[type="text"],
        .interact-form textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            margin-bottom: 0.8rem;
            border: none;
            border-radius: 10px;
            background: #2d2320;
            color: #f0e8e0;
            font-size: 0.95rem;
            outline: 2px solid transparent;
            transition: 0.3s;
            font-family: inherit;
        }
        .interact-form input[type="text"]:focus,
        .interact-form textarea:focus {
            outline-color: #e63946;
            background: #3a2c28;
        }
        .interact-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interact-form button {
            padding: 0.65rem 1.8rem;
            border: none;
            border-radius: 40px;
            background: #e63946;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .interact-form button:hover {
            background: #c52d39;
        }
        .site-footer {
            background: #141114;
            border-top: 2px solid #2a1f1a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-grid h4 {
            color: #f0c8a0;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #2f2522;
            padding-bottom: 0.4rem;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid li {
            margin-bottom: 0.4rem;
        }
        .footer-grid a {
            color: #b8a79c;
            font-size: 0.92rem;
        }
        .footer-grid a:hover {
            color: #f0a050;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.4rem;
            font-size: 0.95rem;
            color: #8f8178;
        }
        friend-link a {
            color: #c7b9ae;
            margin: 0 0.5rem 0 0;
        }
        friend-link a:hover {
            color: #f0a050;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1f1a1c;
            color: #6b5e55;
            font-size: 0.85rem;
            margin-top: 1.5rem;
        }
        .article-body {
            padding: 0.5rem 0 1.5rem;
        }
        .article-body .lead {
            font-size: 1.2rem;
            color: #d4c5b8;
            border-left: 4px solid #e63946;
            padding-left: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        .img-wrapper {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1b1618;
            padding: 0.5rem;
            border: 1px solid #2f2522;
        }
        .img-wrapper figcaption {
            padding: 0.8rem 1rem 0.4rem;
            font-size: 0.9rem;
            color: #a8978a;
            font-style: italic;
            text-align: center;
        }
        .highlight-box {
            background: #1f181b;
            border-left: 4px solid #e63946;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #ffcc80;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #e63946;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
            transition: 0.3s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(230, 57, 70, 0.6);
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-section button {
                justify-content: center;
            }
            .interaction-panel {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 1rem;
            }
        }
        @media (max-width:480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.5rem;
            }
            .card-interact {
                padding: 1.2rem;
            }
        }
        .text-muted {
            color: #8f8178;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .list-unstyled {
            list-style: none;
            padding-left: 0;
        }
        .list-unstyled li {
            padding: 0.3rem 0;
        }
        .list-unstyled li::before {
            content: "⚔️ ";
            color: #e63946;
            margin-right: 0.4rem;
        }
        .tag {
            display: inline-block;
            background: #2a1f1a;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #c7b9ae;
        }
        .img-placeholder {
            background: linear-gradient(135deg, #2a1f1a, #1b1618);
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5a4e46;
            font-size: 1.2rem;
            border-radius: 12px;
        }
        .img-placeholder i {
            font-size: 4rem;
            margin-right: 1rem;
            color: #e63946;
        }
        @media (max-width:600px) {
            .img-placeholder {
                min-height: 200px;
                font-size: 1rem;
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }
            .img-placeholder i {
                font-size: 3rem;
                margin-right: 0;
                margin-bottom: 0.5rem;
            }
        }
