*,
        *::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: #f4f6fa;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0b0c1a, #1a1c3b);
            color: #fff;
            padding: 16px 0;
            border-bottom: 4px solid #f5a623;
            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: 1.9rem;
            font-weight: 800;
            text-decoration: none;
            color: #f5a623;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f5a623, #f7d06a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(245, 166, 35, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 4px 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            color: #f5a623;
        }
        .main-nav {
            display: flex;
            gap: 10px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #eaeef5;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #f5a623;
            border-bottom-color: #f5a623;
        }
        .main-nav a i {
            margin-right: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb-wrap {
            background: #e8ecf3;
            padding: 10px 0;
            border-bottom: 1px solid #d0d6e0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 0.9rem;
            color: #3d4a5c;
        }
        .breadcrumb li+li::before {
            content: "\f105";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin: 0 10px;
            color: #8a95a8;
        }
        .breadcrumb a {
            color: #1e2b3a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #f5a623;
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #6b7a8f;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #1a1c3b 0%, #2d2f5e 100%);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎮";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 7rem;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #f5a623, #f7d06a, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto 20px;
            color: #cfd9ed;
            font-weight: 300;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            color: #aab4cd;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero .meta-info i {
            color: #f5a623;
            margin-right: 6px;
        }
        .last-updated {
            background: rgba(245, 166, 35, 0.18);
            padding: 4px 16px;
            border-radius: 30px;
            display: inline-block;
        }
        .search-section {
            background: #fff;
            padding: 24px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #dce2ec;
            transition: 0.3s;
            background: #fff;
        }
        .search-form:focus-within {
            border-color: #f5a623;
            box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #1e1e2a;
        }
        .search-form input::placeholder {
            color: #8a95a8;
        }
        .search-form button {
            background: #f5a623;
            color: #0b0c1a;
            border: none;
            padding: 0 28px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.25s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #e09110;
            color: #fff;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar-area {
            min-width: 0;
        }
        .content-area h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 16px;
            color: #0b0c1a;
            border-left: 6px solid #f5a623;
            padding-left: 18px;
        }
        .content-area h2:first-of-type {
            margin-top: 0;
        }
        .content-area h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 12px;
            color: #1a1c3b;
        }
        .content-area h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 8px;
            color: #2d2f5e;
        }
        .content-area p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2a2e3f;
        }
        .content-area p b,
        .content-area p strong {
            color: #0b0c1a;
        }
        .content-area ul,
        .content-area ol {
            margin: 16px 0 24px 28px;
            font-size: 1.05rem;
            color: #2a2e3f;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .content-area .feature-box {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 28px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e6ecf5;
            transition: 0.25s;
        }
        .content-area .feature-box:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
            transform: translateY(-2px);
        }
        .content-area .feature-box h4 {
            margin-top: 0;
            color: #f5a623;
        }
        .content-area .interview-block {
            background: #f0f3fa;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 28px 0;
            border-left: 6px solid #f5a623;
        }
        .content-area .interview-block p:last-child {
            margin-bottom: 0;
        }
        .content-area .stat-highlight {
            display: inline-block;
            background: #1a1c3b;
            color: #f5a623;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .content-img {
            margin: 32px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
        }
        .content-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: 0.3s;
        }
        .content-img img:hover {
            transform: scale(1.01);
        }
        .content-img figcaption {
            background: #f0f3fa;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #3d4a5c;
            text-align: center;
            font-style: italic;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            margin: 18px 0 24px;
            list-style: none;
            padding: 0;
        }
        .link-list-inline li a {
            color: #1a1c3b;
            text-decoration: none;
            background: #eef2f8;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: 0.2s;
            border: 1px solid #dce2ec;
        }
        .link-list-inline li a:hover {
            background: #f5a623;
            color: #0b0c1a;
            border-color: #f5a623;
        }
        .sidebar-box {
            background: #fff;
            border-radius: 20px;
            padding: 24px 22px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e6ecf5;
        }
        .sidebar-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #0b0c1a;
            border-bottom: 3px solid #f5a623;
            padding-bottom: 8px;
            display: inline-block;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-links li {
            margin-bottom: 6px;
        }
        .sidebar-links li a {
            display: block;
            padding: 8px 12px;
            color: #1e2b3a;
            text-decoration: none;
            border-radius: 12px;
            transition: 0.2s;
            font-size: 0.95rem;
            border-left: 3px solid transparent;
        }
        .sidebar-links li a:hover {
            background: #f4f6fa;
            border-left-color: #f5a623;
            color: #0b0c1a;
        }
        .sidebar-links li a i {
            margin-right: 10px;
            color: #f5a623;
            width: 18px;
            text-align: center;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 20px;
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 26px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e6ecf5;
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: #0b0c1a;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card h3 i {
            color: #f5a623;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dce2ec;
            border-radius: 14px;
            font-size: 0.95rem;
            margin-bottom: 14px;
            transition: 0.2s;
            background: #fafcff;
            font-family: inherit;
            color: #1e1e2a;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #f5a623;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
        }
        .feedback-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-form button {
            background: #f5a623;
            color: #0b0c1a;
            border: none;
            padding: 12px 30px;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            width: 100%;
        }
        .feedback-form button:hover {
            background: #e09110;
            color: #fff;
            transform: scale(1.01);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            margin-bottom: 14px;
            font-size: 1.6rem;
            color: #d0d6e0;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f5a623;
        }
        .rating-stars i:hover {
            color: #f5a623;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0b0c1a;
            color: #bcc4d6;
            padding: 40px 0 20px;
            border-top: 4px solid #f5a623;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .site-footer h4 {
            color: #f5a623;
            font-size: 1.1rem;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .site-footer a {
            color: #bcc4d6;
            text-decoration: none;
            transition: 0.2s;
        }
        .site-footer a:hover {
            color: #f5a623;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 6px;
        }
        .footer-links li a {
            font-size: 0.9rem;
        }
        .friend-link {
            display: block;
            padding: 10px 0;
            border-top: 1px solid #1e2b3a;
            margin-top: 20px;
            font-size: 0.95rem;
        }
        .friend-link a {
            color: #f5a623;
            margin: 0 6px;
        }
        .friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e2b3a;
            font-size: 0.85rem;
            color: #6b7a8f;
            margin-top: 10px;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar-area {
                order: 2;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #12132a;
                padding: 20px 16px;
                border-radius: 16px;
                margin-top: 12px;
                gap: 4px;
                border: 1px solid #1e2b3a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 8px;
                border-bottom: 1px solid #1e2b3a;
                width: 100%;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .container {
                padding: 0 14px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .content-area h2 {
                font-size: 1.6rem;
            }
            .content-area h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                padding: 10px 14px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 16px;
                font-size: 0.9rem;
            }
            .content-area p {
                font-size: 0.98rem;
            }
        }
        .toc-box {
            background: #f0f3fa;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 20px 0 30px;
            border: 1px solid #dce2ec;
        }
        .toc-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .toc-box ol {
            margin: 10px 0 0 20px;
            columns: 2;
            column-gap: 30px;
        }
        .toc-box ol li {
            margin-bottom: 4px;
            break-inside: avoid;
        }
        .toc-box ol li a {
            color: #1a1c3b;
            text-decoration: none;
        }
        .toc-box ol li a:hover {
            color: #f5a623;
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .toc-box ol {
                columns: 1;
            }
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .accent-badge {
            display: inline-block;
            background: #f5a623;
            color: #0b0c1a;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5a623;
            color: #0b0c1a;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
            transition: 0.25s;
            z-index: 999;
        }
        .back-to-top:hover {
            background: #e09110;
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
        }
        @media (max-width: 480px) {
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
