        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fef9f0;
            color: #2c1810;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #5a3921;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #d4a574;
            padding-bottom: 0.3em;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #a87c4f;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #7d5a3a;
        }
        h4 {
            font-size: 1.4rem;
            color: #946b43;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.1rem;
        }
        a {
            color: #8b5a2b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d2691e;
            text-decoration: underline;
        }
        strong {
            color: #5a3921;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #7d5a3a;
        }
        .highlight {
            background-color: #fff8dc;
            padding: 2px 6px;
            border-radius: 3px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #888;
            text-align: right;
            padding: 10px 0;
            border-top: 1px dashed #ccc;
            margin-top: 2em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        header {
            background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
            color: #fef9f0;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4a574;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: #f1c27d;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #ede7d9;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #8b5a2b;
        }
        .breadcrumb a {
            color: #5a3921;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #f1c27d;
            font-weight: 500;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #ffd89b;
            border-bottom-color: #d4a574;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f1c27d;
            cursor: pointer;
        }
        .hero-image {
            margin: 25px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(90, 57, 33, 0.2);
        }
        .hero-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: #ede7d9;
            color: #5a3921;
        }
        .article-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .intro {
            font-size: 1.2rem;
            background-color: #f9f5eb;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            border-left: 5px solid #a87c4f;
        }
        .strategy-block {
            background-color: #f5f1e6;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 1px solid #e3d8c0;
        }
        .faction-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #5a3921;
            color: #fef9f0;
            border-radius: 50%;
            margin-right: 10px;
            font-weight: bold;
        }
        .sidebar {
            background-color: #f9f5eb;
            padding: 25px;
            border-radius: 10px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            margin-top: 0;
            color: #5a3921;
            border-bottom: 2px solid #d4a574;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dotted #d4a574;
        }
        .sidebar a {
            color: #5a3921;
            display: block;
            padding: 5px 0;
        }
        .sidebar a:hover {
            color: #d2691e;
            padding-left: 5px;
        }
        .interactive-section {
            background-color: #fff;
            border: 2px solid #e3d8c0;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 5px;
            color: #5a3921;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px 15px;
            border: 1px solid #d4a574;
            border-radius: 5px;
            font-size: 1rem;
            background-color: #fef9f0;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            direction: rtl;
            justify-content: flex-end;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ffc107;
        }
        .btn {
            background-color: #8b5a2b;
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        .btn:hover {
            background-color: #a87c4f;
            transform: translateY(-3px);
        }
        footer {
            background-color: #3e2723;
            color: #f1c27d;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #f1c27d;
            border-bottom: 2px solid #d4a574;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .friend-link {
            color: #f1c27d;
            padding: 8px 0;
            border-bottom: 1px dotted #5d4037;
        }
        .friend-link:hover {
            color: #ffd89b;
            padding-left: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #5d4037;
            font-size: 0.9rem;
            color: #d4a574;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-wrap: wrap; }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #5d4037;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .main-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .sidebar {
                position: static;
            }
            .article-content {
                padding: 20px;
            }
        }
