* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #d45d2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a13e1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            padding: 18px 0;
            border-bottom: 4px solid #d45d2b;
            position: sticky;
            top: 0;
            z-index: 100;
            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: 800;
            letter-spacing: 2px;
            color: #fff;
            text-transform: uppercase;
            background: linear-gradient(45deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(247, 151, 30, 0.3);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #eee;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            display: block;
        }
        .nav-list li a:hover {
            background: #d45d2b;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .nav-list li a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #d45d2b;
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #d45d2b;
        }
        .breadcrumb-wrap {
            background: #eef0f5;
            padding: 12px 0;
            border-bottom: 1px solid #dde0e8;
        }
        .breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.9rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #888;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #302b63;
        }
        .breadcrumb .current {
            color: #d45d2b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 50px 0 40px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎮⚔️";
            position: absolute;
            right: 20px;
            bottom: 20px;
            font-size: 5rem;
            opacity: 0.12;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .hero h1 span {
            background: linear-gradient(45deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto;
            opacity: 0.9;
            color: #ddd;
        }
        .hero .meta-info {
            margin-top: 20px;
            font-size: 0.95rem;
            color: #aaa;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            color: #f7971e;
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .content-area {
            background: #fff;
            border-radius: 20px;
            padding: 36px 32px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 24px 20px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            border-bottom: 3px solid #d45d2b;
            padding-bottom: 8px;
            margin-bottom: 16px;
            color: #1a1a2e;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f5;
        }
        .sidebar ul li a {
            color: #302b63;
            font-weight: 500;
        }
        .sidebar ul li a:hover {
            color: #d45d2b;
        }
        h2 {
            font-size: 2rem;
            color: #1a1a2e;
            margin: 40px 0 16px;
            border-left: 6px solid #d45d2b;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            color: #302b63;
            margin: 30px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            color: #16213e;
            margin: 22px 0 10px;
        }
        .content-area p {
            margin-bottom: 18px;
            color: #2d2d44;
        }
        .content-area ul,
        .content-area ol {
            margin: 16px 0 20px 24px;
            color: #2d2d44;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #fef6e9;
            border-left: 6px solid #f7971e;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #a13e1f;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f0f2fa;
            padding: 18px;
            border-radius: 14px;
            text-align: center;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #d45d2b;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #555;
            margin-top: 4px;
        }
        .content-img {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .content-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .content-img figcaption {
            background: #f5f5fa;
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #555;
            text-align: center;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            border: 1px solid #ddd;
            text-align: left;
        }
        th {
            background: #302b63;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f8fc;
        }
        .interview-box {
            background: #f0f4ff;
            border-radius: 16px;
            padding: 24px;
            margin: 28px 0;
            border: 1px solid #d0d8f0;
        }
        .interview-box .q {
            font-weight: 700;
            color: #302b63;
        }
        .interview-box .a {
            margin-left: 20px;
            color: #2d2d44;
        }
        .interactive-section {
            margin: 48px 0;
            padding-top: 24px;
            border-top: 2px dashed #ddd;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #302b63;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.25s;
            font-family: inherit;
            background: #fafbfd;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #d45d2b;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #d45d2b;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #a13e1f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 93, 43, 0.35);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #d45d2b;
            color: #d45d2b;
        }
        .btn-outline:hover {
            background: #d45d2b;
            color: #fff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ccc;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7971e;
        }
        .comment-list {
            margin-top: 20px;
        }
        .comment-item {
            background: #f8f8fc;
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 12px;
            border-left: 4px solid #d45d2b;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            gap: 16px;
            margin-bottom: 6px;
        }
        .comment-item .name {
            font-weight: 700;
            color: #302b63;
        }
        .site-footer {
            background: #0f0c29;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-inner h4 {
            color: #fff;
            margin-bottom: 12px;
            font-size: 1.1rem;
            border-bottom: 2px solid #d45d2b;
            padding-bottom: 6px;
            display: inline-block;
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner ul li {
            margin-bottom: 6px;
        }
        .footer-inner ul li a {
            color: #aaa;
        }
        .footer-inner ul li a:hover {
            color: #f7971e;
        }
        friend-link {
            display: block;
            margin-top: 24px;
            padding: 16px 0;
            border-top: 1px solid #2a2a4a;
            font-size: 0.95rem;
            color: #aaa;
        }
        friend-link a {
            color: #f7971e;
            margin: 0 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #2a2a4a;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 16px 0;
                border-radius: 12px;
                margin-top: 12px;
                border: 1px solid #333;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                border-bottom: 1px solid #2a2a4a;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-area {
                padding: 20px 16px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e8edf5;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 16px;
        }
        .last-updated i {
            color: #d45d2b;
        }
