        *,
        *::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;
            background: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            min-height: 100vh;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.25s ease, background 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #e74c3c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0b0b1a;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.6rem;
            border-bottom: 4px solid #e74c3c;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #e74c3c;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.25rem;
            color: #34495e;
            margin-top: 1.4rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .text-muted {
            color: #5d6d7e;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .fw-bold {
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b0b1a 0%, #1a1a3e 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #e74c3c, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(231, 76, 60, 0.2);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.04);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.4rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #eee;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.3s, color 0.3s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(231, 76, 60, 0.7);
            color: #fff;
            text-decoration: none;
        }
        @media (max-width: 820px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #12122a;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.6rem;
                gap: 0.3rem;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1.2rem;
                border-radius: 8px;
                width: 100%;
            }
        }
        .breadcrumb {
            background: transparent;
            padding: 0.8rem 0 0.4rem 0;
            font-size: 0.85rem;
            color: #7f8c8d;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #c0392b;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #5d6d7e;
        }
        .main-content {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 2.2rem;
            margin: 1.2rem 0 2rem 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
        }
        @media (max-width: 600px) {
            .main-content {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
        }
        .featured-img {
            margin: 1.8rem 0 2.4rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-img img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #5d6d7e;
            background: #f1f2f6;
            font-style: italic;
        }
        .search-section {
            background: linear-gradient(135deg, #fdf2f2, #fef9e7);
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #fadbd8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 640px;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #e0d5d5;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #e74c3c;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #e74c3c;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            background: #c0392b;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.2rem 0;
        }
        @media (max-width: 680px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card-interact {
            background: #fafafa;
            border-radius: 18px;
            padding: 1.8rem 1.8rem 2rem;
            border: 1px solid #eee;
            transition: box-shadow 0.3s;
        }
        .card-interact:hover {
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        }
        .card-interact h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .card-interact form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .card-interact textarea,
        .card-interact input[type="text"],
        .card-interact select {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .card-interact textarea:focus,
        .card-interact input:focus,
        .card-interact select:focus {
            border-color: #e74c3c;
        }
        .card-interact textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-interact button {
            padding: 0.7rem 1.6rem;
            background: #2c3e50;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        .card-interact button:hover {
            background: #1a2a3a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #f1c40f;
            cursor: pointer;
            margin: 0.3rem 0;
        }
        .rating-stars i {
            transition: transform 0.2s, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #f39c12;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.6rem 0;
            list-style: none;
        }
        .link-list li::before {
            content: "🎮 ";
            font-size: 0.85rem;
        }
        .link-list a {
            font-weight: 500;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem 0;
            font-size: 1rem;
            color: #2c3e50;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #f1f2f6;
            border-radius: 20px;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
        }
        friend-link a:hover {
            background: #e74c3c;
            color: #fff;
            text-decoration: none;
        }
        .site-footer {
            background: #0b0b1a;
            color: #ccc;
            padding: 2rem 0 1.2rem;
            margin-top: 2.5rem;
            border-radius: 24px 24px 0 0;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem;
        }
        .site-footer .copyright {
            width: 100%;
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid #2c2c4a;
            font-size: 0.85rem;
            color: #888;
        }
        .site-footer a {
            color: #f1948a;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .update-badge {
            display: inline-block;
            background: #eafaf1;
            color: #1e8449;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            border: 1px solid #a9dfbf;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 6px solid #f39c12;
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            margin: 1.6rem 0;
        }
        .highlight-box p {
            margin-bottom: 0.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        th {
            background: #2c3e50;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f9fa;
        }
        tr:hover {
            background: #fef9e7;
        }
        .back-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #e74c3c;
            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(231, 76, 60, 0.3);
            transition: transform 0.3s, background 0.3s;
            z-index: 999;
        }
        .back-top:hover {
            transform: scale(1.1);
            background: #c0392b;
            text-decoration: none;
            color: #fff;
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-direction: row;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .card-interact {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .back-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
        .nav-menu.show {
            display: flex;
        }
        .star-selected {
            color: #f39c12 !important;
        }
