        *,
        *::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, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0f3b5e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #d97706;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 0;
            color: #0b1e2e;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.75rem;
            border-bottom: 3px solid #e9a820;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #1a3a4a;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
            color: #2c5a6e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0a1f2b 0%, #143647 100%);
            color: #fff;
            padding: 0.8rem 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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 12px rgba(250, 204, 21, 0.25);
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #94a3b8;
            font-weight: 400;
            letter-spacing: 0.3px;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: #b0c4d8;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #e2e8f0;
            padding: 0.45rem 0.9rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.2s;
            display: block;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~.nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 1rem;
            background: #0e2a38;
            border-radius: 16px;
            padding: 1rem;
            gap: 0.3rem;
        }
        .breadcrumb {
            background: #eef2f6;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce3ec;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #7f8c9b;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #2c5a6e;
        }
        .breadcrumb .current {
            color: #5b6f82;
            font-weight: 500;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0 3rem;
        }
        @media(max-width:820px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .sidebar {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.04);
            border: 1px solid #eaedf2;
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.25rem;
            margin-top: 0;
            border-left: 4px solid #e9a820;
            padding-left: 0.75rem;
            margin-bottom: 1.2rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0 0 1.8rem 0;
        }
        .sidebar li {
            margin-bottom: 0.3rem;
        }
        .sidebar li a {
            display: block;
            padding: 0.5rem 0.75rem;
            background: #f8fafc;
            border-radius: 10px;
            font-size: 0.9rem;
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }
        .sidebar li a:hover {
            background: #eef2f8;
            border-left-color: #e9a820;
            text-decoration: none;
            transform: translateX(4px);
        }
        .sidebar .game-links a {
            font-weight: 500;
            color: #0f3b5e;
        }
        .sidebar .game-links a i {
            margin-right: 0.5rem;
            color: #e9a820;
            width: 1.1rem;
            text-align: center;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #dce3ec;
            background: #fff;
            transition: box-shadow 0.25s;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(233, 168, 32, 0.25);
            border-color: #e9a820;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.7rem 1rem;
            font-size: 0.95rem;
            outline: none;
            background: transparent;
            font-family: inherit;
        }
        .search-box button {
            background: #e9a820;
            border: none;
            padding: 0 1.2rem;
            color: #0b1e2e;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-box button:hover {
            background: #d4951a;
        }
        .feedback-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin: 2rem 0 1.5rem;
            padding: 1.8rem;
            background: #f1f5f9;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
        }
        @media(max-width:560px) {
            .feedback-forms {
                grid-template-columns: 1fr;
                padding: 1.2rem;
            }
        }
        .feedback-forms form {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .feedback-forms label {
            font-weight: 600;
            font-size: 0.9rem;
            color: #1e3a4a;
        }
        .feedback-forms input,
        .feedback-forms textarea,
        .feedback-forms select {
            padding: 0.6rem 0.9rem;
            border: 1px solid #cdd7e2;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.9rem;
            background: #fff;
            transition: border 0.2s;
        }
        .feedback-forms input:focus,
        .feedback-forms textarea:focus,
        .feedback-forms select:focus {
            border-color: #e9a820;
            outline: none;
            box-shadow: 0 0 0 3px rgba(233, 168, 32, 0.15);
        }
        .feedback-forms textarea {
            min-height: 70px;
            resize: vertical;
        }
        .feedback-forms .btn {
            background: #0f3b5e;
            color: #fff;
            border: none;
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .feedback-forms .btn:hover {
            background: #1a4f6e;
            transform: translateY(-1px);
        }
        .feedback-forms .btn-score {
            background: #d97706;
        }
        .feedback-forms .btn-score:hover {
            background: #b86405;
        }
        .star-rating {
            display: flex;
            gap: 0.2rem;
            font-size: 1.5rem;
            color: #d1d5db;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
            color: #d1d5db;
            font-size: 1.6rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #facc15;
        }
        .hero-img-wrap {
            margin: 1.8rem 0 2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
            background: #e2e8f0;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            aspect-ratio: 1200/630;
            background: #cbd5e1;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #5f7a8a;
            background: #eef2f6;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .site-footer {
            background: #0a1f2b;
            color: #cbd5e1;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
            border-top: 4px solid #e9a820;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:680px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-inner h4 {
            color: #facc15;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #b0c4d8;
        }
        .footer-inner a:hover {
            color: #facc15;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner li {
            margin-bottom: 0.3rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.5rem;
            border-top: 1px solid #1f3f4f;
            margin-top: 1.2rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 0.2rem 0.3rem 0.2rem 0;
        }
        friend-link a:hover {
            background: rgba(250, 204, 21, 0.12);
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            font-size: 0.82rem;
            color: #7a94a8;
            border-top: 1px solid #1a3545;
            margin-top: 1.2rem;
        }
        @media(max-width:768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0e2a38;
                border-radius: 16px;
                padding: 1rem;
                margin-top: 0.8rem;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .sidebar {
                position: static;
                margin-top: 1.5rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 0.9rem;
            }
            .feedback-forms {
                padding: 1rem;
            }
            .star-rating label {
                font-size: 1.4rem;
            }
        }
        .highlight {
            background: linear-gradient(to right, #fef9e7, #fef3c7);
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
        }
        .badge {
            display: inline-block;
            background: #e9a820;
            color: #0b1e2e;
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .quote-block {
            background: #f1f5f9;
            border-left: 5px solid #e9a820;
            padding: 1.2rem 1.5rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
            font-style: italic;
            color: #1e3a4a;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
            font-weight: 600;
            font-size: 0.85rem;
            color: #2c5a6e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: #fff;
        }
        th,
        td {
            padding: 0.65rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eef2f6;
        }
        th {
            background: #0f3b5e;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #0f3b5e;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            transition: background 0.25s, transform 0.2s;
            border: none;
            cursor: pointer;
            z-index: 900;
        }
        .btn-top:hover {
            background: #e9a820;
            transform: translateY(-3px);
            color: #0b1e2e;
        }
        .author-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: #f1f5f9;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            margin: 1.8rem 0;
            flex-wrap: wrap;
        }
        .author-box .avatar {
            font-size: 2.8rem;
            color: #0f3b5e;
        }
        .author-box .info {
            font-size: 0.9rem;
        }
        .author-box .info strong {
            color: #0b1e2e;
        }
