        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            color: #1e1e2a;
            background: #f9f9fc;
            padding: 0;
            margin: 0;
        }
        a {
            color: #2a6f97;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #c44536;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0d1b2a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 5px solid #c44536;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            color: #2a2a3a;
        }
        p {
            margin-bottom: 1.1rem;
            color: #2d2d3f;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0d1b2a, #1b2a3f);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5e9d8;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(196, 69, 54, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd9b3;
            text-decoration: none;
        }
        .my-logo i {
            color: #c44536;
            margin-right: 6px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px 16px;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            background: rgba(196, 69, 54, 0.25);
            color: #ffd9b3;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 5px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #e2e8f0;
            color: #e2e8f0;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #eef2f7;
            padding: 10px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #dce2ec;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 6px 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8a9bb0;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #2a6f97;
        }
        .breadcrumb .current {
            color: #1e1e2a;
            font-weight: 600;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 40px;
            margin: 30px 0 50px;
        }
        @media(max-width:860px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .content-area {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px 32px 40px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px 20px 28px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            border-bottom: 3px solid #c44536;
            padding-bottom: 6px;
            margin-top: 0.2rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem;
        }
        .sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px solid #edf0f5;
        }
        .sidebar ul li a {
            font-size: 0.92rem;
        }
        .sidebar .highlight-box {
            background: #f4f7fc;
            padding: 14px 16px;
            border-radius: 12px;
            margin: 18px 0;
            border-left: 4px solid #c44536;
        }
        .sidebar .highlight-box p {
            margin-bottom: 0.3rem;
            font-size: 0.92rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 18px 0 22px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #dce2ec;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #f9fafc;
        }
        .search-form input:focus {
            border-color: #c44536;
        }
        .search-form button {
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0 22px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #a8382a;
            transform: scale(1.02);
        }
        .rating-area {
            background: #f8f6f3;
            padding: 20px 22px;
            border-radius: 16px;
            margin: 30px 0 20px;
        }
        .rating-area .stars {
            font-size: 1.8rem;
            color: #e2b714;
            letter-spacing: 6px;
            cursor: pointer;
        }
        .rating-area .stars i {
            transition: transform 0.15s;
        }
        .rating-area .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 18px;
            margin-top: 8px;
        }
        .rating-form button {
            background: #2a6f97;
            color: #fff;
            border: none;
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #1b4f6e;
        }
        .comment-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #eef2f7;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #dce2ec;
            border-radius: 16px;
            font-size: 0.95rem;
            min-height: 100px;
            resize: vertical;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #c44536;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
            align-items: center;
        }
        .comment-form input {
            flex: 1 1 200px;
            padding: 10px 14px;
            border: 2px solid #dce2ec;
            border-radius: 30px;
            font-size: 0.92rem;
            outline: none;
        }
        .comment-form input:focus {
            border-color: #c44536;
        }
        .comment-form button {
            background: #0d1b2a;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #1b2a3f;
        }
        .feature-image {
            margin: 24px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
        }
        .feature-image figcaption {
            background: #f4f7fc;
            padding: 10px 16px;
            font-size: 0.88rem;
            color: #3d4a5c;
            text-align: center;
        }
        .link-group {
            background: #f8faff;
            border-radius: 14px;
            padding: 16px 20px;
            margin: 22px 0;
            border: 1px solid #e6ecf5;
        }
        .link-group h4 {
            margin-top: 0;
        }
        .link-group ul {
            columns: 2 200px;
            column-gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .link-group ul li {
            padding: 4px 0;
            break-inside: avoid;
        }
        .link-group ul li a {
            font-size: 0.92rem;
        }
        .link-group ul li a i {
            margin-right: 6px;
            color: #c44536;
            font-size: 0.75rem;
        }
        .site-footer {
            background: #0d1b2a;
            color: #cbd5e1;
            padding: 36px 0 20px;
            margin-top: 50px;
        }
        .site-footer a {
            color: #b6c9e0;
        }
        .site-footer a:hover {
            color: #ffd9b3;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media(max-width:700px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-grid h4 {
            color: #f5e9d8;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid ul li {
            padding: 4px 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 18px;
            border-top: 1px solid #2a3a4f;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 22px;
            margin-top: 22px;
            border-top: 1px solid #1e2f42;
            font-size: 0.85rem;
            color: #8a9bb0;
        }
        @media(max-width:768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-wrapper {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
            }
            #nav-toggle:checked+.hamburger+.nav-wrapper {
                display: flex;
            }
            .nav-list {
                flex-direction: column;
                gap: 4px;
            }
            .nav-list li a {
                display: block;
                padding: 10px 12px;
                background: rgba(255, 255, 255, 0.04);
                border-radius: 8px;
            }
            .content-area {
                padding: 16px 14px 30px;
            }
            .sidebar {
                position: static;
                margin-top: 10px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .link-group ul {
                columns: 1;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form input {
                flex: 1 1 100%;
            }
            .search-form button {
                flex: 1;
                padding: 12px;
            }
            .rating-area .stars {
                font-size: 1.5rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .badge {
            display: inline-block;
            background: #c44536;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
        .update-date {
            color: #5a6a7e;
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .update-date i {
            color: #c44536;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        table th {
            background: #0d1b2a;
            color: #f5e9d8;
            padding: 10px 14px;
            text-align: left;
        }
        table td {
            padding: 9px 14px;
            border-bottom: 1px solid #eef2f7;
        }
        table tr:hover td {
            background: #f8f6f3;
        }
        .highlight {
            background: #fdf6e3;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .btn {
            display: inline-block;
            background: #c44536;
            color: #fff;
            padding: 8px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .btn:hover {
            background: #a8382a;
            text-decoration: none;
            color: #fff;
        }
        .player-quote {
            background: #f0f4fb;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0;
            border-left: 6px solid #c44536;
            font-style: italic;
        }
        .player-quote strong {
            font-style: normal;
            display: block;
            margin-top: 6px;
            color: #0d1b2a;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
            margin-right: 6px;
        }
        .section-divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #c4453630, transparent);
            margin: 30px 0;
        }
