        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f9f7f2;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #8e2a1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin: 0.5em 0 0.4em;
            color: #1a1a2e;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 1.8em 0 0.6em;
            border-left: 6px solid #c44536;
            padding-left: 18px;
            color: #1a1a2e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.4em 0 0.5em;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1em 0 0.4em;
            color: #3a3a52;
        }
        p {
            margin: 0.8em 0 1.2em;
        }
        .lead {
            font-size: 1.2rem;
            color: #3d3d5c;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #c44536;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #f9f7f2;
            letter-spacing: -0.03em;
            background: linear-gradient(90deg, #f9a826, #c44536);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #f9a826;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f9f7f2;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8e4dd;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 40px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(249, 168, 38, 0.18);
            color: #f9a826;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 5px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6d0c4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #8a7a6a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #5e4e3e;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1a1a2e 0%, #2a2a4a 100%);
            color: #f9f7f2;
            padding: 50px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚔️";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 8rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            color: #f9f7f2;
            font-size: 2.8rem;
            margin-top: 0;
        }
        .hero .lead {
            color: #d6d0c4;
            max-width: 720px;
        }
        .hero .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 28px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f9a826;
            color: #1a1a2e;
            box-shadow: 0 6px 24px rgba(249, 168, 38, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(249, 168, 38, 0.45);
            text-decoration: none;
            color: #1a1a2e;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f9a826;
            color: #f9a826;
            box-shadow: none;
        }
        .btn-outline:hover {
            background: rgba(249, 168, 38, 0.12);
            color: #f9a826;
            box-shadow: none;
        }
        .meta-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #b0a89a;
            margin: 12px 0 4px;
        }
        .meta-updated i {
            color: #f9a826;
        }
        .section-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px 36px;
            margin: 32px 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e0;
            transition: box-shadow 0.3s ease;
        }
        .section-card:hover {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #e8e4dd;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 18px;
            font-size: 0.85rem;
            color: #5e4e3e;
            background: #f3efe8;
            font-style: italic;
        }
        ul,
        ol {
            margin: 0.6em 0 1.2em 1.8em;
        }
        li {
            margin: 0.3em 0;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 12px;
            list-style: none;
            margin: 1em 0;
            padding: 0;
        }
        .link-list li a {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f5f1ea;
            padding: 12px 18px;
            border-radius: 14px;
            font-weight: 500;
            transition: background 0.25s, transform 0.15s;
        }
        .link-list li a:hover {
            background: #e8e0d4;
            transform: translateX(4px);
            text-decoration: none;
        }
        .link-list li a i {
            color: #c44536;
            width: 20px;
            text-align: center;
        }
        .search-box {
            display: flex;
            gap: 8px;
            margin: 18px 0 10px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #d6d0c4;
            border-radius: 60px;
            font-size: 1rem;
            background: #fcfaf6;
            transition: border 0.3s;
            outline: none;
        }
        .search-box input:focus {
            border-color: #c44536;
            box-shadow: 0 0 0 4px rgba(196, 69, 54, 0.1);
        }
        .search-box button {
            padding: 14px 28px;
            border: none;
            border-radius: 60px;
            background: #c44536;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-box button:hover {
            background: #8e2a1a;
            transform: scale(1.02);
        }
        .comment-form,
        .score-form {
            background: #f5f1ea;
            padding: 24px 28px;
            border-radius: 20px;
            margin: 16px 0 24px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            padding: 14px 18px;
            border: 2px solid #d6d0c4;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            background: #fcfaf6;
            resize: vertical;
            transition: border 0.3s;
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: #c44536;
            box-shadow: 0 0 0 4px rgba(196, 69, 54, 0.08);
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border: 2px solid #d6d0c4;
            border-radius: 60px;
            font-size: 0.95rem;
            background: #fcfaf6;
            outline: none;
        }
        .comment-form .form-row input:focus {
            border-color: #c44536;
        }
        .comment-form button,
        .score-form button {
            padding: 12px 32px;
            border: none;
            border-radius: 60px;
            background: #c44536;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 1rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #8e2a1a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d6d0c4;
            cursor: pointer;
            margin: 8px 0 12px;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f9a826;
            transform: scale(1.12);
        }
        .star-rating.active i {
            color: #f9a826;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c8c2b6;
            padding: 48px 0 28px;
            margin-top: 60px;
            border-top: 4px solid #c44536;
        }
        .site-footer a {
            color: #e8e4dd;
        }
        .site-footer a:hover {
            color: #f9a826;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: #f9f7f2;
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-left: 3px solid #c44536;
            padding-left: 12px;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid ul li {
            margin: 6px 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #2d2d44;
            font-size: 0.85rem;
            color: #8a8276;
        }
        .copyright span {
            color: #f9a826;
        }
        friend-link {
            display: block;
            background: #2d2d44;
            padding: 28px 32px;
            border-radius: 20px;
            margin: 20px 0 10px;
            color: #e8e4dd;
        }
        friend-link h4 {
            color: #f9a826;
            margin-top: 0;
            border-left: 3px solid #f9a826;
            padding-left: 14px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin: 12px 0 0;
        }
        friend-link ul li a {
            color: #e8e4dd;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s;
        }
        friend-link ul li a:hover {
            border-bottom-color: #f9a826;
            text-decoration: none;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 12px 0 18px;
                margin-top: 12px;
                border-radius: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 20px;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section-card {
                padding: 20px 18px;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-box input {
                min-width: 140px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .hero .btn-group {
                flex-direction: column;
            }
            .btn {
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .gap-1 {
            gap: 8px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .emoji-lg {
            font-size: 1.8rem;
            line-height: 1;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(249, 168, 38, 0.18) 0%, rgba(249, 168, 38, 0.08) 100%);
            padding: 0 6px;
            border-radius: 4px;
        }
        .tag {
            display: inline-block;
            background: #c44536;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 40px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
