        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f7f3ee;
            color: #1e1a17;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7b3a00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2a1f 0%, #2d3f2a 100%);
            padding: 16px 0;
            border-bottom: 4px solid #d4a373;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(to right, #f5d6a8, #d4a373);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        .my-logo i {
            background: #d4a373;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1.7rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #b8b0a0;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #efe6d7;
            font-size: 0.91rem;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #d4a373;
            color: #1a2a1f;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #efe6d7;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #e8e0d6;
            padding: 10px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #d6ccc0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            color: #5a4d40;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7b5d4a;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #2d1f14;
            font-weight: 600;
        }
        .main-content {
            padding: 40px 0 50px;
            min-height: 70vh;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a2a1f;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            border-left: 6px solid #d4a373;
            padding-left: 22px;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            color: #2d3f2a;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #d4a373;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3d4f3a;
            margin-top: 34px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4d5f4a;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #3d342c;
            background: #f0ebe3;
            padding: 18px 24px;
            border-radius: 14px;
            border-left: 6px solid #b45309;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 6px;
            font-size: 1.02rem;
        }
        .progression-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 36px;
            font-size: 0.96rem;
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .progression-table th {
            background: #2d3f2a;
            color: #f5eedd;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .progression-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e4dbd0;
        }
        .progression-table tr:last-child td {
            border-bottom: none;
        }
        .progression-table tr:hover td {
            background: #f6f0e8;
        }
        .progression-table .boss-icon {
            font-size: 1.4rem;
            margin-right: 8px;
        }
        .tip-card {
            background: #fffbf5;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #e4dbd0;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            border-left: 6px solid #d4a373;
        }
        .tip-card h4 {
            margin-top: 0;
            color: #7b3a00;
        }
        .tip-card i {
            color: #b45309;
            margin-right: 8px;
        }
        .interview-box {
            background: #eef4ea;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 32px 0;
            border-left: 6px solid #2d3f2a;
            font-style: italic;
        }
        .interview-box strong {
            font-style: normal;
            color: #2d3f2a;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.88rem;
            color: #6a5d50;
            margin-top: 10px;
            font-style: italic;
        }
        .form-section {
            background: #fffcf7;
            border-radius: 18px;
            padding: 30px 32px;
            margin: 48px 0 28px;
            border: 1px solid #e0d6ca;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 0.95rem;
            color: #2d1f14;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d6ccc0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fefcf9;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #2d3f2a;
            color: #f5eedd;
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            font-family: inherit;
        }
        .btn:hover {
            background: #1a2a1f;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn i {
            margin-right: 8px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d4a373;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #b45309;
        }
        .site-footer {
            background: #1a2a1f;
            color: #d6ccc0;
            padding: 40px 0 28px;
            border-top: 4px solid #d4a373;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-inner h4 {
            color: #f5d6a8;
            margin-top: 0;
            font-size: 1.2rem;
        }
        .footer-inner a {
            color: #cbb9a6;
        }
        .footer-inner a:hover {
            color: #f5d6a8;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 6px;
        }
        .footer-bottom {
            border-top: 1px solid #3d4f3a;
            margin-top: 28px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #a0907e;
        }
        friend-link {
            display: block;
            margin-top: 12px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 2px 8px 2px 0;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-direction: row;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1e2e23;
                padding: 16px 12px;
                border-radius: 14px;
                margin-top: 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                font-size: 1rem;
            }
            .nav-toggle {
                display: block;
            }
            h1 {
                font-size: 2.0rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .container {
                padding: 0 14px;
            }
            .form-section {
                padding: 20px 18px;
            }
            .progression-table {
                font-size: 0.82rem;
            }
            .progression-table th,
            .progression-table td {
                padding: 8px 10px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .lead {
                font-size: 1.05rem;
                padding: 14px 16px;
            }
            .tip-card {
                padding: 16px 18px;
            }
            .interview-box {
                padding: 18px 20px;
            }
        }
        .text-muted {
            color: #6a5d50;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-stars {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .last-updated {
            font-size: 0.92rem;
            color: #6a5d50;
            background: #f0ebe3;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 30px;
            margin-bottom: 18px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
