* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #2d3748;
            background: #f7fafc;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a202c, #2d3748);
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #ecc94b;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: #63b3ed;
            font-style: italic;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 15px;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            background: #4a5568;
            color: #ecc94b;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
            background: none;
            border: none;
            color: #fff;
            transition: transform 0.3s;
        }
        .hamburger.active {
            transform: rotate(90deg);
        }
        .breadcrumb {
            background: #edf2f7;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 14px;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb a {
            color: #3182ce;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            color: #a0aec0;
            font-size: 10px;
        }
        .toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0;
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
        }
        .toolbar form {
            display: flex;
            gap: 8px;
            flex: 1;
            min-width: 250px;
        }
        .toolbar input[type="text"] {
            flex: 1;
            padding: 10px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s;
        }
        .toolbar input[type="text"]:focus {
            border-color: #3182ce;
        }
        .toolbar button {
            background: #3182ce;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 15px;
            transition: background 0.3s;
        }
        .toolbar button:hover {
            background: #2b6cb0;
        }
        .rating-widget {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .stars {
            display: inline-flex;
            gap: 5px;
            font-size: 22px;
            color: #cbd5e0;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i.active {
            color: #ecc94b;
            text-shadow: 0 0 10px rgba(236, 201, 75, 0.5);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-score {
            font-weight: 700;
            color: #2d3748;
            background: #edf2f7;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
        }
        .hero-image {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 25px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .last-updated {
            display: inline-block;
            background: #ebf8ff;
            color: #2b6cb0;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin: 15px 0;
            border: 1px solid #bee3f8;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
        }
        @media (max-width: 768px) {
            article {
                padding: 20px;
            }
        }
        h1 {
            font-size: 2.4em;
            color: #1a202c;
            margin-bottom: 10px;
            line-height: 1.3;
            border-bottom: 3px solid #ecc94b;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 1.8em;
            color: #2d3748;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #3182ce;
        }
        h3 {
            font-size: 1.3em;
            color: #2d3748;
            margin: 25px 0 15px;
            color: #4a5568;
        }
        h4 {
            font-size: 1.15em;
            color: #2d3748;
            margin: 20px 0 10px;
            color: #718096;
        }
        p {
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.8;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 25px 0;
            border-radius: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #f7fafc;
            min-width: 600px;
        }
        table th, table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        table th {
            background: #2d3748;
            color: #fff;
            font-weight: 700;
            font-size: 15px;
        }
        table tr:nth-child(even) {
            background: #edf2f7;
        }
        table tr:hover {
            background: #bee3f8;
            transition: background 0.3s;
        }
        .code-box {
            background: #1a202c;
            color: #68d391;
            padding: 20px;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 16px;
            margin: 20px 0;
            border-left: 4px solid #68d391;
            overflow-x: auto;
            white-space: nowrap;
        }
        .code-box span {
            color: #ecc94b;
        }
        .insight-card {
            background: #ebf8ff;
            border-left: 4px solid #3182ce;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .tip-card {
            background: #fefcbf;
            border-left: 4px solid #d69e2e;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .warning-card {
            background: #fed7d7;
            border-left: 4px solid #e53e3e;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .interview-card {
            background: #f0fff4;
            border: 2px solid #68d391;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .interview-card .avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #3182ce;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #fff;
            margin-bottom: 15px;
        }
        blockquote {
            border-left: 5px solid #ecc94b;
            padding: 20px;
            margin: 25px 0;
            background: #fffaf0;
            font-style: italic;
            font-size: 17px;
            border-radius: 0 10px 10px 0;
        }
        .faq-item {
            margin: 15px 0;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-item summary {
            background: #f7fafc;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: background 0.3s;
        }
        .faq-item summary:hover {
            background: #edf2f7;
        }
        .faq-item p {
            padding: 15px 20px;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin: 25px 0;
            padding: 25px;
            background: #2d3748;
            border-radius: 12px;
        }
        .friend-link a {
            color: #ecc94b;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border: 2px solid #ecc94b;
            border-radius: 25px;
            transition: all 0.3s;
            font-size: 14px;
        }
        .friend-link a:hover {
            background: #ecc94b;
            color: #1a202c;
            transform: scale(1.03);
        }
        .comment-form {
            background: #f7fafc;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid #e2e8f0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }
        .comment-form input[type="text"], .comment-form input[type="email"] {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 15px;
        }
        .comment-form button {
            background: #3182ce;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #2b6cb0;
        }
        .sidebar {
            background: #fff;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        @media (max-width: 992px) {
            .sidebar {
                position: static;
            }
        }
        .sidebar h3 {
            font-size: 1.2em;
            padding-bottom: 10px;
            border-bottom: 2px solid #ecc94b;
            margin-bottom: 20px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin: 12px 0;
        }
        .sidebar ul li a {
            color: #3182ce;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        .sidebar ul li a:hover {
            color: #2b6cb0;
            transform: translateX(5px);
        }
        .sidebar ul li a i {
            color: #a0aec0;
            width: 20px;
            font-size: 14px;
        }
        footer {
            background: #1a202c;
            color: #a0aec0;
            padding: 40px 0 20px;
            margin-top: 60px;
            text-align: center;
        }
        footer .copyright {
            border-top: 1px solid #2d3748;
            padding-top: 20px;
            margin-top: 20px;
            font-size: 14px;
        }
        footer a {
            color: #63b3ed;
            text-decoration: none;
        }
        footer a:hover {
            color: #ecc94b;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a202c;
                padding: 20px;
                border-radius: 0 0 12px 12px;
            }
            .nav-links.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .toolbar {
                flex-direction: column;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.4em;
            }
            h3 {
                font-size: 1.1em;
            }
        }
        .progress-updated {
            display: inline-block;
            background: #c6f6d5;
            color: #22543d;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        .emoji-bullet {
            list-style: none;
            padding-left: 0;
        }
        .emoji-bullet li {
            padding: 6px 0;
            padding-left: 30px;
            position: relative;
        }
        .emoji-bullet li::before {
            content: "🎮";
            position: absolute;
            left: 0;
        }
        .emoji-bullet li:nth-child(2)::before {
            content: "💎";
        }
        .emoji-bullet li:nth-child(3)::before {
            content: "⚔️";
        }
        .emoji-bullet li:nth-child(4)::before {
            content: "🏆";
        }
        .emoji-bullet li:nth-child(5)::before {
            content: "🛡️";
        }
        .emoji-bullet li:nth-child(6)::before {
            content: "🔥";
        }
