        *,
        *::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, sans-serif;
            background: #f8f9fc;
            color: #1e2a3a;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        a {
            color: #d62828;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #9b1b1b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0b1a2a;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #d62828;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: linear-gradient(135deg, #0b1a2a 0%, #1a2d42 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .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: -0.5px;
            color: #f4d03f;
            text-shadow: 0 2px 8px rgba(244, 208, 63, 0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            font-size: 2rem;
            color: #d62828;
        }
        .my-logo:hover {
            color: #ffdd59;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
            font-size: 0.9rem;
            margin-left: 0.3rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #e0e7ef;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.25s, color 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(255, 255, 255, 0.12);
            color: #f4d03f;
            text-decoration: none;
        }
        .nav-list li a.active {
            background: #d62828;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #eef1f5;
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce1e8;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #888;
        }
        .breadcrumb a {
            color: #d62828;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #0f1f2f 0%, #1d3448 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚔️🏰🔥";
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 8rem;
            opacity: 0.06;
            pointer-events: none;
            transform: rotate(-15deg);
        }
        .hero h1 {
            color: #f4d03f;
            font-size: 3rem;
            margin-bottom: 0.75rem;
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto 1.5rem;
            color: #d0dbe8;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #b0c4d9;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hero .last-updated i {
            margin-right: 0.4rem;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            max-width: 580px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.85rem 1.2rem;
            border: 2px solid #dce1e8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #d62828;
        }
        .search-form button {
            background: #d62828;
            color: #fff;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #b01e1e;
            transform: scale(1.02);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .content-area {
            background: #fff;
            border-radius: 16px;
            padding: 2.5rem 2.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef1f5;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 2px solid #f0f2f5;
            padding-bottom: 0.75rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0f2f5;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            color: #1e2a3a;
        }
        .sidebar-card ul li a:hover {
            color: #d62828;
            text-decoration: none;
        }
        .sidebar-card ul li a i {
            color: #d62828;
            width: 1.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            background: #f8f9fc;
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #555;
            text-align: center;
            border-top: 1px solid #eef1f5;
        }
        .feedback-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eef1f5;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 2px solid #dce1e8;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.3s;
            margin-bottom: 1rem;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #d62828;
            outline: none;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            background: #d62828;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #b01e1e;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f4d03f;
            transform: scale(1.1);
        }
        .rating-stars i.active {
            color: #f4d03f;
        }
        footer {
            background: #0b1a2a;
            color: #b0c4d9;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            justify-content: center;
        }
        .footer-links a {
            color: #b0c4d9;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f4d03f;
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
        }
        friend-link a {
            color: #f4d03f;
            font-weight: 600;
        }
        friend-link a:hover {
            color: #ffdd59;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.7;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .content-area {
                padding: 1.8rem 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #122233;
                padding: 1rem 0.5rem;
                border-radius: 0 0 12px 12px;
                margin-top: 0.75rem;
                gap: 0.15rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 1rem;
                border-radius: 6px;
            }
            .header-inner {
                align-items: center;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                min-width: 160px;
            }
            .content-area {
                padding: 1.2rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo span {
                display: none;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }
            .search-form input {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
        }
        .highlight {
            background: #fff7e6;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #d62828;
            color: #fff;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .divider {
            height: 4px;
            background: linear-gradient(90deg, #d62828, #f4d03f);
            width: 80px;
            border-radius: 4px;
            margin: 1.5rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            vertical-align: middle;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: #0b1a2a;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
        }
        table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #eef1f5;
        }
        table tr:hover td {
            background: #f8f9fc;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #d62828;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(214, 40, 40, 0.3);
            cursor: pointer;
            transition: transform 0.2s, opacity 0.3s;
            opacity: 0;
            pointer-events: none;
            border: none;
            z-index: 999;
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: all;
        }
        .scroll-top:hover {
            transform: scale(1.1);
        }
