        *,
        *::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: #f6f8fc;
            color: #1a1a2e;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #c81e3d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        hr {
            border: none;
            border-top: 2px solid #e0e5ec;
            margin: 2rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f2e 0%, #1a1a3e 100%);
            color: #fff;
            padding: 1rem 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;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ffed4a;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .my-logo small {
            font-size: 0.9rem;
            display: block;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #ddd;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: #fff;
            background: rgba(233, 69, 96, 0.7);
            text-decoration: none;
        }
        .main-nav a.active {
            background: #e94560;
            color: #fff;
        }
        .breadcrumb {
            background: #eef0f5;
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce1e9;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #e94560;
        }
        .breadcrumb span {
            color: #555;
        }
        .hero {
            background: linear-gradient(145deg, #1a1a3e 0%, #2d2d5e 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚡🏆🎮";
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 10rem;
            opacity: 0.06;
            pointer-events: none;
            line-height: 1;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 30px rgba(233, 69, 96, 0.3);
        }
        .hero h1 .highlight {
            color: #ffd700;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0.5rem auto 0;
            opacity: 0.9;
            line-height: 1.7;
        }
        .hero .meta-badge {
            display: inline-block;
            margin-top: 1.2rem;
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid rgba(255, 215, 0, 0.25);
            padding: 0.4rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: #ffd700;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef1f8;
            transition: box-shadow 0.3s ease;
        }
        section:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #0f0f2e;
            border-left: 6px solid #e94560;
            padding-left: 1rem;
        }
        h2 .emoji {
            margin-right: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 1.8rem 0 0.8rem;
            color: #1a1a3e;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #2d2d5e;
        }
        p {
            margin-bottom: 1rem;
        }
        .feature-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem 1.5rem;
            margin: 1.2rem 0;
        }
        .feature-list li {
            list-style: none;
            padding: 0.5rem 0.8rem;
            background: #f8f9fd;
            border-radius: 8px;
            border-left: 3px solid #e94560;
            font-weight: 500;
        }
        .feature-list li i {
            color: #e94560;
            margin-right: 0.5rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef1f8;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #eef1f8;
            padding-bottom: 0.6rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f2f7;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
        .sidebar-link-list a i {
            width: 20px;
            color: #e94560;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dce1e9;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #f9fafc;
        }
        .search-box input:focus {
            border-color: #e94560;
        }
        .search-box button {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 0 1.6rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-box button:hover {
            background: #c81e3d;
        }
        .comment-area textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #dce1e9;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.3s;
            background: #f9fafc;
        }
        .comment-area textarea:focus {
            border-color: #e94560;
            outline: none;
        }
        .comment-area .form-actions {
            display: flex;
            gap: 0.8rem;
            margin-top: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .btn-primary {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
        }
        .btn-primary:hover {
            background: #c81e3d;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
        }
        .btn-secondary {
            background: #eef0f5;
            color: #1a1a2e;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
        }
        .btn-secondary:hover {
            background: #dce1e9;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #dce1e9;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd700;
        }
        .site-footer {
            background: #0f0f2e;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #ffd700;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #bbb;
        }
        .site-footer a:hover {
            color: #ffd700;
            text-decoration: none;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #888;
        }
        .footer-copyright strong {
            color: #ddd;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.2rem 0;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .sidebar .sidebar-card {
                display: inline-block;
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.3rem;
                padding: 1rem 0 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            section {
                padding: 1.5rem 1.2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                padding: 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            section {
                padding: 1.2rem 0.9rem;
                border-radius: 10px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-small {
            font-size: 0.85rem;
            color: #666;
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .gap-2 {
            gap: 1rem;
        }
        .rounded-full {
            border-radius: 50px;
        }
        .badge {
            display: inline-block;
            background: #e94560;
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .badge-gold {
            background: #ffd700;
            color: #1a1a2e;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 6px solid #ffd700;
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            margin: 1.2rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eef1f8;
        }
        th {
            background: #f8f9fd;
            font-weight: 700;
            color: #0f0f2e;
        }
        tr:hover td {
            background: #fafbff;
        }
        @media (prefers-reduced-motion: no-preference) {
            .fade-up {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeUp 0.6s ease forwards;
            }
            @keyframes fadeUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
