        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fc;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c1121f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #780000;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #1a1a2e;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
            border-bottom: 4px solid #c1121f;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #c1121f;
            padding-left: 0.9rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.45rem;
            margin-top: 2rem;
            color: #2a2a3e;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            color: #3a3a4e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #c1121f 0%, #780000 100%);
            color: #fff;
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(193, 18, 31, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fff;
        }
        .my-logo i {
            font-size: 1.8rem;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            opacity: 0.85;
            display: block;
            margin-top: -0.2rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            display: block;
            padding: 0.5rem 1rem;
            color: #fff;
            font-weight: 500;
            border-radius: 30px;
            font-size: 0.92rem;
            transition: background 0.25s, transform 0.2s;
        }
        .main-nav li a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .main-nav li a i {
            margin-right: 0.4rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #fff;
            padding: 0.6rem 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #888;
        }
        .breadcrumb a {
            color: #c1121f;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #c1121f 100%);
            color: #fff;
            padding: 3rem 0 2.8rem;
            margin-bottom: 2rem;
            border-radius: 0 0 40px 40px;
        }
        .hero h1 {
            color: #fff;
            border-bottom-color: rgba(255, 255, 255, 0.4);
            font-size: 2.6rem;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.92;
            max-width: 800px;
            margin-top: 0.8rem;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.2rem;
            font-size: 0.95rem;
            opacity: 0.85;
        }
        .hero .meta i {
            margin-right: 0.4rem;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 2.5rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.4rem;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c1121f;
            box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.12);
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #c1121f;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            background: #780000;
            transform: translateY(-2px);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .main-content {
            background: #fff;
            border-radius: 24px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }
        .side-content {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .side-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin-bottom: 1.8rem;
        }
        .side-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #eee;
            padding-bottom: 0.6rem;
        }
        .side-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .side-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .side-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #2a2a3e;
        }
        .side-card ul li a:hover {
            color: #c1121f;
        }
        .side-card ul li a i {
            color: #c1121f;
            font-size: 0.7rem;
        }
        .featured-image {
            border-radius: 18px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #f8f9fc;
            font-size: 0.85rem;
            color: #555;
            border-top: 1px solid #e9ecef;
        }
        .rating-area,
        .comment-area {
            background: #f8f9fc;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 1.5rem;
            border: 1px solid #e9ecef;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f4b942;
        }
        .rating-form button,
        .comment-form button {
            padding: 0.6rem 2rem;
            background: #c1121f;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #780000;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #c1121f;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            margin-bottom: 0.8rem;
        }
        .comment-form input[type="text"]:focus {
            border-color: #c1121f;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 40px 40px 0 0;
        }
        .site-footer a {
            color: #f0a0a0;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fff;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner ul li {
            padding: 0.25rem 0;
        }
        .footer-inner ul li a {
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 1.5rem;
            font-size: 0.9rem;
        }
        friend-link a {
            margin: 0 0.6rem 0 0;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            font-size: 0.85rem;
            opacity: 0.7;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 1.2rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .side-content {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, opacity 0.3s ease;
                opacity: 0;
            }
            .nav-toggle:checked~.nav-wrapper {
                max-height: 600px;
                opacity: 1;
            }
            .main-nav {
                flex-direction: column;
                width: 100%;
                padding: 0.8rem 0;
                gap: 0;
            }
            .main-nav li a {
                border-radius: 8px;
                padding: 0.7rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content {
                padding: 1.2rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .rating-area,
            .comment-area {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 2rem 0 1.8rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .main-content {
                padding: 0.8rem 0.8rem;
                border-radius: 16px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .text-muted {
            color: #777;
            font-size: 0.9rem;
        }
        .badge {
            display: inline-block;
            background: #c1121f;
            color: #fff;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #c1121f, transparent);
            margin: 2rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th,
        table td {
            padding: 0.7rem 1rem;
            border: 1px solid #e0e0e0;
            text-align: left;
        }
        table th {
            background: #c1121f;
            color: #fff;
            font-weight: 600;
        }
        table tr:nth-child(even) {
            background: #f8f9fc;
        }
        .highlight-box {
            background: #fff3f3;
            border-left: 5px solid #c1121f;
            padding: 1.2rem 1.8rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .btn {
            display: inline-block;
            padding: 0.6rem 2rem;
            background: #c1121f;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            transition: background 0.25s, transform 0.2s;
        }
        .btn:hover {
            background: #780000;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .btn i {
            margin-right: 0.5rem;
        }
