        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0f;
            color: #ddd;
            line-height: 1.8;
            font-size: 1.1rem;
            overflow-x: hidden;
        }
        a {
            color: #c8a36b;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #e6b85c;
            text-shadow: 0 0 8px rgba(200, 163, 107, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, #111122, #0a0a0f);
            padding: 1.5rem 0;
            border-bottom: 2px solid #2a2a3c;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #c8a36b, #9c7c3e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1.5px;
        }
        .my-logo:hover {
            filter: brightness(1.2);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
        }
        .hamburger span {
            height: 3px;
            width: 25px;
            background-color: #c8a36b;
            margin: 3px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        nav a:hover {
            background-color: rgba(200, 163, 107, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #2a2a3c;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #c8a36b;
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(20, 20, 30, 0.7);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 5px solid #c8a36b;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #f0e6d2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
            border-bottom: 3px double #c8a36b;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            color: #d4af37;
            padding-left: 10px;
            border-left: 4px solid #9c7c3e;
        }
        h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: #e6c068;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #d1b894;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background-color: rgba(200, 163, 107, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #c8a36b;
            margin: 1.5rem 0;
            font-style: italic;
        }
        emoji {
            font-size: 1.3rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        aside {
            background-color: rgba(15, 15, 25, 0.8);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #33334d;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            border-bottom: 2px solid #444;
            padding-bottom: 0.7rem;
            margin-bottom: 1.2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            background-color: #1a1a2e;
            border: 1px solid #444;
            border-radius: 6px;
            color: #eee;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ffc107;
        }
        button {
            background: linear-gradient(to right, #9c7c3e, #c8a36b);
            color: #111;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(200, 163, 107, 0.4);
        }
        .featured-img {
            margin: 2.5rem auto;
            width: 90%;
            max-width: 800px;
            border: 3px solid #444;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .featured-img figcaption {
            text-align: center;
            font-style: italic;
            color: #999;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        footer {
            background-color: #0d0d15;
            padding: 3rem 0 2rem;
            border-top: 2px solid #2a2a3c;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #c8a36b;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            color: #aaa;
            font-size: 0.9rem;
            text-align: right;
            margin-top: 2rem;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: flex;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1.5rem;
                gap: 0;
            }
            nav.active {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 1rem;
                border-bottom: 1px solid #333;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
            .content-wrapper {
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        .text-bold {
            font-weight: 800;
            color: #f0e6d2;
        }
        .text-italic {
            font-style: italic;
            color: #c2b8a3;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        .text-center {
            text-align: center;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
