*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #f5a623;
            --dark: #1a1a2e;
            --darker: #0f0f1a;
            --accent: #e94560;
            --light: #f8f9fa;
            --gray: #6c757d;
            --card-bg: #ffffff;
            --radius: 12px;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .header-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            letter-spacing: -1px;
            line-height: 1.2;
            display: inline-block;
            transition: all .3s;
        }
        .my-logo span {
            color: var(--primary);
        }
        .my-logo small {
            display: block;
            font-size: .7rem;
            color: var(--gray);
            letter-spacing: 2px;
            font-weight: 400;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
            transition: all .4s;
        }
        .nav-links a {
            color: #ddd;
            text-decoration: none;
            font-size: .9rem;
            font-weight: 500;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: all .3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links a:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .burger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1100;
            transition: all .3s;
        }
        .burger.active {
            transform: rotate(90deg);
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
            font-size: .85rem;
        }
        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb-list li+li::before {
            content: "▶";
            color: #bbb;
            font-size: .6rem;
            margin-right: 6px;
        }
        .breadcrumb-list a {
            color: var(--gray);
            text-decoration: none;
        }
        .breadcrumb-list a:hover {
            color: var(--primary);
        }
        .breadcrumb-list .active {
            color: var(--dark);
            font-weight: 600;
        }
        .search-area {
            background: var(--dark);
            padding: 16px 0;
            border-bottom: 1px solid #333;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 50px;
            font-size: .95rem;
            outline: none;
        }
        .search-form button {
            background: var(--primary);
            border: none;
            color: #000;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all .3s;
        }
        .search-form button:hover {
            background: #ffbf40;
            transform: scale(1.04);
        }
        .hero {
            background: linear-gradient(145deg, #0f0f1a, #1a1a2e 60%, #16213e);
            color: #fff;
            padding: 70px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "NFS";
            position: absolute;
            right: -30px;
            bottom: -50px;
            font-size: 14rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 18px;
            max-width: 800px;
        }
        .hero h1 .highlight {
            color: var(--primary);
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 680px;
            color: #b0b0c8;
            margin-bottom: 24px;
        }
        .hero-info {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            font-size: .9rem;
            color: #aaa;
        }
        .hero-info i {
            color: var(--primary);
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 40px;
            padding: 50px 0 60px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        @media(max-width:992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 3;
            }
        }
        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 32px;
            margin-bottom: 32px;
            border-left: 4px solid var(--primary);
            transition: all .3s;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        h2 {
            font-size: 1.8rem;
            margin: 40px 0 18px;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
        }
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 4px;
        }
        h3 {
            font-size: 1.3rem;
            margin: 28px 0 12px;
            color: var(--dark);
        }
        h4 {
            font-size: 1.05rem;
            margin: 20px 0 10px;
            color: #333;
        }
        p {
            margin-bottom: 16px;
            color: #444;
        }
        .lead {
            font-size: 1.08rem;
            line-height: 1.8;
            color: #333;
            font-weight: 400;
        }
        .strong {
            font-weight: 700;
            color: var(--dark);
        }
        .highlight-box {
            background: #fff7ed;
            border-left: 4px solid var(--primary);
            padding: 18px 22px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .info-box {
            background: #f0f4ff;
            border-left: 4px solid #3b82f6;
            padding: 18px 22px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .warning-box {
            background: #fef2f2;
            border-left: 4px solid var(--accent);
            padding: 18px 22px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .tip-box {
            background: #f0fdf4;
            border-left: 4px solid #22c55e;
            padding: 18px 22px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .game-image {
            width: 100%;
            border-radius: var(--radius);
            margin: 24px 0;
            box-shadow: var(--shadow);
            display: block;
            height: auto;
        }
        .figure-caption {
            font-size: .85rem;
            color: var(--gray);
            text-align: center;
            margin-top: -18px;
            margin-bottom: 24px;
        }
        .responsive-table {
            width: 100%;
            overflow-x: auto;
            margin: 24px 0;
            border-radius: var(--radius);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: .95rem;
            min-width: 480px;
        }
        table th {
            background: var(--dark);
            color: #fff;
            padding: 14px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 12px 14px;
            border-bottom: 1px solid #eee;
            vertical-align: top;
        }
        table tr:nth-child(even) {
            background: #f9f9f9;
        }
        table tr:hover {
            background: #f0f4ff;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all .3s;
            border: none;
            cursor: pointer;
            font-size: .95rem;
            gap: 10px;
            align-items: center;
        }
        .btn-primary {
            background: var(--primary);
            color: #000;
        }
        .btn-primary:hover {
            background: #ffbf40;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(245, 166, 35, 0.4);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #000;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 20px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select {
            width: 100%;
            padding: 14px;
            border: 2px solid #eee;
            border-radius: 8px;
            font-family: inherit;
            font-size: .95rem;
            transition: border .3s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            outline: none;
            border-color: var(--primary);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        @media(max-width:600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .star-rating {
            display: inline-flex;
            flex-direction: row-reverse;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            font-size: 1.6rem;
            cursor: pointer;
            transition: all .2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--primary);
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 24px;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 12px;
            margin-bottom: 16px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px dotted #eee;
        }
        .sidebar-card ul li a {
            color: #444;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all .3s;
        }
        .sidebar-card ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .faq-item {
            margin-bottom: 12px;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 0 20px;
        }
        .faq-item summary {
            padding: 16px 0;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary);
            transition: all .3s;
        }
        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }
        .faq-item details p {
            padding-bottom: 16px;
            color: #555;
        }
        .comment-list {
            margin-top: 20px;
        }
        .comment-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            padding: 16px;
            background: #fafafa;
            border-radius: 10px;
        }
        .comment-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #000;
            flex-shrink: 0;
        }
        .comment-body p {
            margin: 0;
            font-size: .92rem;
            color: #555;
        }
        .comment-body .meta {
            font-size: .8rem;
            color: var(--gray);
            margin-bottom: 4px;
        }
        friend-link {
            display: block;
            padding: 40px 0 20px;
        }
        friend-link h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            list-style: none;
            padding: 0;
        }
        .friend-list li a {
            display: inline-block;
            padding: 8px 18px;
            background: #f5f5f5;
            border-radius: 50px;
            font-size: .85rem;
            color: var(--dark);
            text-decoration: none;
            border: 1px solid #e0e0e0;
            transition: all .3s;
        }
        .friend-list li a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #000;
        }
        .site-footer {
            background: var(--darker);
            color: #999;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 16px;
            font-size: 1.05rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            padding: 5px 0;
        }
        .footer-col ul li a {
            color: #999;
            text-decoration: none;
            font-size: .88rem;
            transition: all .3s;
        }
        .footer-col ul li a:hover {
            color: var(--primary);
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            font-size: .85rem;
            color: #666;
        }
        @media(max-width:768px) {
            .header-wrap {
                flex-wrap: nowrap;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                padding: 40px 30px;
                gap: 20px;
                transition: right .4s ease;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
                z-index: 1050;
                align-items: flex-start;
            }
            .nav-links.active {
                right: 0;
            }
            .burger {
                display: block;
            }
            .burger i.fa-bars::before {
                content: "\f0c9";
            }
            .burger.active i.fa-bars::before {
                content: "\f00d";
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero {
                padding: 50px 0;
            }
            .card {
                padding: 22px;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .btn {
                padding: 12px 20px;
                font-size: .85rem;
            }
        }
