        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f5f0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e6dfd3' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: #8b4513; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #5d2d0c; text-decoration: underline; }
        ul, ol { padding-left: 1.5em; margin-bottom: 1.5em; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: #2a4d2a;
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: Georgia, serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #f0e6d2;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i { color: #d4af37; }
        .my-logo:hover { text-decoration: none; color: #fff; }
        .nav-desktop { display: flex; gap: 2rem; }
        @media (max-width: 768px) { .nav-desktop { display: none; } }
        .nav-desktop a {
            color: #f0e6d2;
            font-weight: 500;
            padding: 0.5rem;
        }
        .nav-desktop a:hover { color: #d4af37; text-decoration: none; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6d2;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) { .hamburger { display: block; } }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #3a5d3a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #f0e6d2;
            padding: 0.8rem;
            border-bottom: 1px solid #4a6d4a;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9e2d6;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb a:hover { color: #8b4513; }
        .breadcrumb span { color: #999; }
        .search-section {
            background: linear-gradient(to right, #3a5d3a, #2a4d2a);
            padding: 2rem 0;
            text-align: center;
            color: white;
            margin-bottom: 2rem;
        }
        .search-form {
            max-width: 600px;
            margin: 1rem auto 0;
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #d4af37;
            color: #2a2a2a;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover { background-color: #e6c158; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article { background: #fff; padding: 2.5rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        h1 {
            font-size: 2.8rem;
            color: #2a4d2a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #3a5d3a;
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
            border-top: 1px dashed #ddd;
        }
        h3 {
            font-size: 1.5rem;
            color: #5d2d0c;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #8b4513;
            margin: 1.5rem 0 0.8rem;
        }
        p { margin-bottom: 1.5em; }
        strong { color: #5d2d0c; }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #555;
            background-color: #f9f7f2;
            padding: 1.5rem;
            border-left: 5px solid #d4af37;
            margin-bottom: 2rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf6e3, #f0e6d2);
            border: 2px solid #d4af37;
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 8px 16px rgba(212, 175, 55, 0.1);
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #666;
            border-left: 4px solid #3a5d3a;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .author { text-align: right; font-weight: bold; color: #333; margin-top: 0.5rem; }
        .article-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid #fff;
            outline: 1px solid #eee;
        }
        aside { background: #fff; padding: 1.5rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: #2a4d2a;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #d4af37;
            margin-bottom: 1rem;
        }
        .rating-widget, .comment-widget {
            background-color: #f9f7f2;
            padding: 1.5rem;
            border-radius: 8px;
        }
        .stars { font-size: 1.8rem; color: #ffc107; margin: 0.5rem 0; }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1rem; }
        .rating-form select, .comment-form input, .comment-form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
        }
        .comment-form textarea { min-height: 120px; resize: vertical; }
        .form-submit {
            background-color: #3a5d3a;
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .form-submit:hover { background-color: #2a4d2a; }
        .toc ul { list-style: none; padding-left: 0; }
        .toc li { margin-bottom: 0.7rem; }
        .toc a { display: block; padding: 0.5rem; border-radius: 4px; }
        .toc a:hover { background-color: #f0e6d2; text-decoration: none; }
        .faction-card {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 1.5rem;
            align-items: start;
            background: #fff;
            border: 2px solid #e0d6c2;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        .faction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.08);
            border-color: #d4af37;
        }
        .faction-icon {
            width: 100px;
            height: 100px;
            background-color: #8b4513;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }
        .update-info {
            background-color: #e9f7ef;
            border: 1px solid #a3d9b1;
            padding: 1rem;
            border-radius: 6px;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #2d5a3d;
        }
        footer {
            background-color: #2a2a2a;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-family: Georgia, serif;
            font-size: 2rem;
            color: #f0e6d2;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: #d4af37;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .footer-links ul { list-style: none; padding-left: 0; }
        .footer-links li { margin-bottom: 0.6rem; }
        .footer-links a { color: #aaa; }
        .footer-links a:hover { color: #d4af37; }
        friend-link {
            display: block;
            background-color: #3a3a3a;
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.8rem;
        }
        friend-link a { color: #d4af37; font-weight: bold; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #999;
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .emoji { font-size: 1.2em; }
