        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.8;
            color: #1a1a2e;
            background: #f8f9fc;
            padding: 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;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #0c0c1d;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 4px solid #c0392b;
            padding-bottom: 0.6rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a3e 100%);
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f1c40f;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 #c0392b;
        }
        .my-logo small {
            display: block;
            font-size: 0.7rem;
            color: #ccc;
            letter-spacing: 1px;
            text-shadow: none;
        }
        .my-logo:hover {
            color: #f39c12;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f1c40f;
            color: #f1c40f;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f1c40f;
            color: #0c0c1d;
        }
        .primary-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #ddd;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
        }
        .primary-nav a:hover {
            background: rgba(241, 196, 15, 0.2);
            color: #f1c40f;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #c0392b;
            color: #fff;
        }
        .breadcrumb {
            background: #eaeef2;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .breadcrumb a {
            color: #2c3e50;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .sep {
            color: #888;
            margin: 0 0.3rem;
        }
        .breadcrumb .current {
            color: #c0392b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a3e 0%, #2c2c5e 100%);
            color: #fff;
            padding: 3rem 1.5rem;
            border-radius: 16px;
            margin: 2rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚔️";
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 12rem;
            opacity: 0.08;
        }
        .hero h1 {
            color: #f1c40f;
            border-bottom: none;
            font-size: 3rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 1rem auto 0;
            opacity: 0.9;
        }
        .hero .meta-badge {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-top: 1rem;
        }
        .search-box {
            background: #fff;
            border-radius: 50px;
            display: flex;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 2rem auto;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
        }
        .search-box button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0 1.8rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #a93226;
        }
        .section-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .section-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
            background: #eaeef2;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #555;
            background: #f5f7fa;
            font-style: italic;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 1rem 0;
        }
        .link-list-inline li a {
            background: #f0f2f5;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: 0.2s;
            display: inline-block;
        }
        .link-list-inline li a:hover {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        .comment-form,
        .rating-form {
            background: #f5f7fa;
            border-radius: 12px;
            padding: 1.8rem;
            margin: 1.5rem 0;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 1rem;
            transition: 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #c0392b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #2c3e50;
        }
        .btn-secondary:hover {
            background: #1a2a3a;
        }
        .star-display {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #f1c40f;
        }
        .star-display .fa-star,
        .star-display .fa-star-half-alt {
            color: #f1c40f;
        }
        .star-display .fa-star-o {
            color: #ccc;
        }
        .site-footer {
            background: #0c0c1d;
            color: #ccc;
            padding: 3rem 1.5rem 1.5rem;
            margin-top: 4rem;
            border-radius: 20px 20px 0 0;
        }
        .site-footer a {
            color: #f1c40f;
        }
        .site-footer a:hover {
            color: #f39c12;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 1rem 0;
            border-top: 1px solid #2a2a4a;
            border-bottom: 1px solid #2a2a4a;
            margin: 1.5rem 0;
        }
        .friend-link a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .friend-link a:hover {
            color: #f1c40f;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #888;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2a4a;
        }
        .last-updated {
            display: inline-block;
            background: #2a2a4a;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a3e;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.8rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1rem;
                border-bottom: 1px solid #2a2a4a;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .section-card {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box button {
                padding: 0.7rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 2rem 1rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-muted {
            color: #777;
            font-size: 0.9rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .emoji-big {
            font-size: 2rem;
        }
        .schema-hidden {
            display: none;
        }
