        *,
        *::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;
            background: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #7ec8e3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b5e6ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0f0ff;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 1rem 0;
            border-bottom: 2px solid #2a2a4a;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.7rem 0;
            color: #d0d8ff;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem 0;
            color: #b0c0e8;
        }
        p {
            margin-bottom: 1rem;
        }
        ul,
        ol {
            margin: 0.5rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        strong {
            color: #f5e6a0;
            font-weight: 600;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2a4a;
            margin: 2rem 0;
        }
        .wrapper {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            flex: 1;
        }
        .site-header {
            background: linear-gradient(135deg, #16162e 0%, #1a1a3a 100%);
            border-bottom: 2px solid #2d2d5e;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5e6a0, #d4b87a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #d4b87a;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo span {
            font-size: 0.75rem;
            display: block;
            -webkit-text-fill-color: #8888aa;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #4a4a7a;
            color: #e0e0f0;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #7ec8e3;
            color: #7ec8e3;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8c8e8;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #2a2a5a;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #3a3a7a;
            color: #f5e6a0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #8888aa;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #5555aa;
            font-weight: 700;
            margin-right: 0.3rem;
        }
        .breadcrumb a {
            color: #7ec8e3;
        }
        .breadcrumb a:hover {
            color: #b5e6ff;
        }
        .search-section {
            background: #1a1a34;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0 2rem 0;
            border: 1px solid #2a2a5a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-section label {
            font-weight: 600;
            color: #c8c8f0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #3a3a6a;
            border-radius: 8px;
            background: #0a0a18;
            color: #e0e0f0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #7ec8e3;
        }
        .search-form button {
            padding: 0.7rem 1.4rem;
            background: #3a3a7a;
            border: none;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #4a4a9a;
        }
        .content-area {
            padding: 0.5rem 0 2rem 0;
        }
        .featured-image {
            margin: 1.5rem 0 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a1a30;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.7rem 1rem;
            font-size: 0.85rem;
            color: #9999bb;
            background: #1a1a30;
            border-top: 1px solid #2a2a4a;
        }
        .last-updated {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: #2a2a4a;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #aaaacc;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #7ec8e3;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #16162e;
            border-radius: 10px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a4a;
        }
        th {
            background: #22224a;
            color: #f0e6c0;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1e1e40;
        }
        .tip-box {
            background: #1a2a3a;
            border-left: 4px solid #7ec8e3;
            padding: 1rem 1.4rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .tip-box strong {
            color: #7ec8e3;
        }
        .player-quote {
            background: #1e1e3a;
            border-radius: 14px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #3a3a6a;
            position: relative;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 3.5rem;
            color: #4a4a8a;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .player-quote p {
            font-style: italic;
            padding-left: 2rem;
            color: #d0d0f0;
        }
        .player-quote cite {
            display: block;
            margin-top: 0.5rem;
            padding-left: 2rem;
            color: #8888bb;
            font-size: 0.85rem;
        }
        .interaction-section {
            background: #16162e;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2a5a;
        }
        .interaction-section h3 {
            margin-top: 0;
            border-bottom: 1px solid #2a2a4a;
            padding-bottom: 0.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #4a4a7a;
            cursor: pointer;
            margin: 0.8rem 0 1.2rem 0;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5d77a;
            transform: scale(1.15);
        }
        .rating-stars i.active-perm {
            color: #f5d77a;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #3a3a6a;
            border-radius: 8px;
            background: #0a0a18;
            color: #e0e0f0;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            width: 100%;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #7ec8e3;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 140px;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            background: #3a3a7a;
            border: none;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover {
            background: #4a4a9a;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 2px solid #2a2a4a;
            margin-top: 2rem;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #c8c8f0;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.3rem 0.8rem;
            background: #1e1e3a;
            border-radius: 6px;
            font-size: 0.9rem;
            color: #b0c8e8;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2e2e5a;
            color: #fff;
            text-decoration: none;
        }
        .site-footer {
            background: #0c0c1e;
            border-top: 2px solid #1e1e3e;
            padding: 1.8rem 0;
            text-align: center;
            font-size: 0.85rem;
            color: #7777aa;
            margin-top: 2rem;
        }
        .site-footer p {
            margin-bottom: 0.3rem;
        }
        .site-footer .copy {
            font-weight: 500;
            color: #9999bb;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                padding: 0.5rem 0;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a36;
                border-radius: 12px;
                padding: 0.5rem 0;
                margin-top: 0.5rem;
                border: 1px solid #2a2a5a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-radius: 0;
            }
            .search-section {
                flex-direction: column;
                padding: 1rem;
            }
            .search-form {
                width: 100%;
            }
            .interaction-section {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .wrapper {
                padding: 0 14px;
            }
            .player-quote {
                padding: 1.2rem 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .featured-image {
                margin: 1rem 0;
            }
            .table-wrap table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 0.4rem 0.6rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a6a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4a4a8a;
        }
        :focus-visible {
            outline: 2px solid #7ec8e3;
            outline-offset: 2px;
        }
        .text-accent {
            color: #f5e6a0;
        }
        .text-muted {
            color: #8888aa;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
