        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f5f0;
            background-image: radial-gradient(#e0d6c9 1px, transparent 1px);
            background-size: 20px 20px;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4, h5 { font-family: Georgia, 'Times New Roman', serif; color: #2c4f36; margin-bottom: 1rem; font-weight: bold; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-top: 1rem; border-bottom: 3px solid #8b4513; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 2.5rem; padding-left: 0.5rem; border-left: 5px solid #a0522d; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2rem; color: #556b2f; }
        h4 { font-size: 1.3rem; margin-top: 1.5rem; color: #6b8e23; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #8b4513; text-decoration: none; transition: color 0.3s ease, background-color 0.3s ease; }
        a:hover { color: #d2691e; text-decoration: underline; }
        strong { color: #2c4f36; font-weight: 700; }
        em { font-style: italic; color: #5a3921; }
        .container {
            display: grid;
            grid-template-columns: minmax(20px, 1fr) minmax(auto, 1200px) minmax(20px, 1fr);
            grid-template-areas:
                "header header header"
                "nav nav nav"
                ". breadcrumb ."
                ". main ."
                ". sidebar ."
                "footer footer footer";
        }
        @media (min-width: 992px) {
            .container {
                grid-template-columns: minmax(20px, 1fr) minmax(auto, 800px) 350px minmax(20px, 1fr);
                grid-template-areas:
                    "header header header header"
                    "nav nav nav nav"
                    ". breadcrumb breadcrumb ."
                    ". main sidebar ."
                    "footer footer footer footer";
            }
        }
        header { grid-area: header; background: linear-gradient(135deg, #2c4f36 0%, #3e6b4a 100%); color: white; padding: 1.5rem 2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .header-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .my-logo { font-family: Georgia, serif; font-size: 2.2rem; font-weight: bold; }
        .my-logo a { color: #f0e6d2; text-decoration: none; }
        .my-logo a:hover { color: #fff; text-shadow: 0 0 5px rgba(255,255,255,0.5); }
        .last-updated { font-size: 0.9rem; color: #c9d7c7; margin-top: 0.5rem; }
        nav { grid-area: nav; background-color: #3a5c40; }
        .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        .main-nav { display: flex; list-style: none; }
        .main-nav li { flex: 1; text-align: center; }
        .main-nav a { display: block; color: #f0e6d2; padding: 1rem 1.5rem; text-decoration: none; font-weight: 500; border-bottom: 3px solid transparent; transition: all 0.3s ease; }
        .main-nav a:hover, .main-nav a.active { background-color: #2c4f36; border-bottom-color: #d2691e; color: white; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; padding: 0.5rem 1rem; }
        .breadcrumb { grid-area: breadcrumb; margin: 1.5rem 0; font-size: 0.95rem; color: #666; }
        .breadcrumb a { color: #8b4513; }
        .breadcrumb span { color: #999; }
        main { grid-area: main; background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); margin-bottom: 2rem; }
        article { max-width: 100%; }
        aside { grid-area: sidebar; margin-bottom: 2rem; }
        .sidebar-widget { background: white; padding: 1.8rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 2rem; }
        .sidebar-widget h3 { font-size: 1.4rem; margin-top: 0; border-bottom: 2px solid #e0d6c9; padding-bottom: 0.7rem; }
        .search-form, .comment-form, .rating-form { display: flex; flex-direction: column; gap: 1rem; }
        input, textarea, select { padding: 0.9rem; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; width: 100%; }
        button, .btn { background: linear-gradient(to bottom, #8b4513, #6b3410); color: white; border: none; padding: 1rem 1.8rem; border-radius: 8px; cursor: pointer; font-weight: bold; font-size: 1rem; transition: all 0.3s ease; }
        button:hover, .btn:hover { background: linear-gradient(to bottom, #a0522d, #8b4513); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3); }
        .stars { display: flex; gap: 0.5rem; justify-content: center; margin: 1rem 0; }
        .stars i { color: #ddd; font-size: 1.8rem; cursor: pointer; transition: color 0.2s; }
        .stars i:hover, .stars i.active { color: #ffc107; }
        .intro { font-size: 1.3rem; color: #444; background: #f9f7f2; padding: 1.5rem; border-left: 5px solid #a0522d; border-radius: 0 8px 8px 0; margin-bottom: 2.5rem; }
        .highlight-box { background: linear-gradient(145deg, #eef7ee, #e0ebdf); border: 1px solid #b8d4b8; padding: 1.8rem; border-radius: 10px; margin: 2rem 0; }
        .faction-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
        .faction-card { background: white; border: 1px solid #ddd; border-radius: 10px; padding: 1.5rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .faction-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .game-image { width: 100%; border-radius: 10px; border: 5px solid #e0d6c9; margin: 2rem auto; box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
        .link-list { list-style: none; padding: 1rem; background: #f5f1ea; border-radius: 8px; }
        .link-list li { padding: 0.5rem 0; border-bottom: 1px dashed #ccc; }
        .link-list li:last-child { border-bottom: none; }
        .rule-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
        .rule-table th, .rule-table td { border: 1px solid #b8d4b8; padding: 0.8rem; text-align: left; }
        .rule-table th { background-color: #eef7ee; }
        footer { grid-area: footer; background: #2c4f36; color: #f0e6d2; padding: 3rem 2rem 1.5rem; margin-top: 3rem; }
        .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; }
        .footer-section h4 { color: #f0e6d2; border-bottom: 2px solid #3e6b4a; padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
        friend-link { display: block; padding: 0.5rem 0; color: #c9d7c7; }
        friend-link a { color: #c9d7c7; }
        friend-link a:hover { color: white; }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #3e6b4a; color: #a3b9a4; font-size: 0.9rem; }
        @media (max-width: 991px) {
            .main-nav { flex-direction: column; display: none; }
            .main-nav.active { display: flex; }
            .hamburger { display: block; }
            .nav-container { padding: 0; }
            .main-nav a { padding: 1rem; border-bottom: 1px solid #2c4f36; }
            .container { grid-template-areas:
                "header header header"
                "nav nav nav"
                ". breadcrumb ."
                ". main ."
                ". sidebar ."
                "footer footer footer"; }
        }
        @media (max-width: 768px) {
            main, .sidebar-widget { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            .header-content { flex-direction: column; text-align: center; }
            .last-updated { margin-bottom: 1rem; }
        }
