        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f8f6f2;
            color: #1e1e2a;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 0.75rem 0;
            border-bottom: 4px solid #e67e22;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(to right, #f39c12, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 1.2rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f0f0f0;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            background: rgba(230, 126, 34, 0.3);
            color: #f39c12;
            text-decoration: none;
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d5cec1;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #7f6b5e;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .active {
            color: #2c3e50;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #fff;
            padding: 3.5rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚔️";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 8rem;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, #f1c40f, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0.5rem auto 1.5rem;
            color: #cfd8dc;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #bbb;
        }
        .main-content {
            padding: 3rem 0 4rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body h2 {
            font-size: 2rem;
            color: #1a1a2e;
            border-left: 5px solid #e67e22;
            padding-left: 1rem;
            margin: 2.5rem 0 1rem;
        }
        .content-body h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin: 2rem 0 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .content-body h4 {
            font-size: 1.2rem;
            color: #34495e;
            margin: 1.5rem 0 0.5rem;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 1.2rem;
            color: #2d2d3a;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .content-body strong {
            color: #1a1a2e;
        }
        .content-body .highlight-box {
            background: #fff8e7;
            border-left: 4px solid #e67e22;
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .content-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .feature-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .feature-image figcaption {
            background: #fff;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #555;
            border-top: 1px solid #eee;
        }
        .sidebar {
            background: #fff;
            border-radius: 12px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #ece8e0;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: #1a1a2e;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.6rem;
        }
        .sidebar a {
            color: #2c3e50;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar a:hover {
            color: #e67e22;
            text-decoration: none;
        }
        .search-section {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #ece8e0;
        }
        .search-section h3 {
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            color: #1a1a2e;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.2s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #e67e22;
        }
        .search-form button {
            background: #e67e22;
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #d35400;
            transform: translateY(-1px);
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .comment-box,
        .rating-box {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #ece8e0;
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.2rem;
            color: #1a1a2e;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #e67e22;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            margin-top: 0.5rem;
            outline: none;
            transition: border 0.2s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #e67e22;
        }
        .comment-box .btn,
        .rating-box .btn {
            background: #e67e22;
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 0.8rem;
            display: inline-block;
        }
        .comment-box .btn:hover,
        .rating-box .btn:hover {
            background: #d35400;
            transform: translateY(-1px);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #f1c40f;
            margin: 0.5rem 0;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #f39c12;
        }
        .rating-value {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.2rem;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            border-top: 4px solid #e67e22;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f39c12;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #bbb;
        }
        .footer-inner a:hover {
            color: #f39c12;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
        }
        friend-link a::after {
            content: "·";
            color: #555;
            margin-left: 0.8rem;
        }
        friend-link a:last-child::after {
            content: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #888;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.35s ease, padding 0.3s;
                padding: 0;
            }
            .main-nav.open {
                max-height: 500px;
                padding: 1rem 0 0.5rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.3rem;
            }
            .main-nav a {
                display: block;
                padding: 0.6rem 0.8rem;
                border-radius: 6px;
            }
            .main-nav a:hover {
                background: rgba(230, 126, 34, 0.2);
            }
            .hero {
                padding: 2.5rem 0 3rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 0.2rem 0.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-body h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            .content-body h3 {
                font-size: 1.1rem;
            }
            .sidebar {
                padding: 1.2rem;
            }
            .comment-box,
            .rating-box {
                padding: 1rem;
            }
        }
