        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a2a1a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #b8860b;
            padding-bottom: 0.45rem;
            display: inline-block;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid #b8860b;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d4a2d;
        }
        h4 {
            font-size: 1.2rem;
            color: #3e5a3e;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a2a1a 0%, #0f1a0f 100%);
            color: #f5efe6;
            padding: 1rem 0;
            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: 0.8rem;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5efe6;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo span {
            color: #b8860b;
            font-style: italic;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #f5efe6;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #b8860b;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5efe6;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 0.8rem;
        }
        .main-nav a {
            color: #d9d0c0;
            font-weight: 500;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            transition: all 0.25s ease;
            font-size: 0.95rem;
            position: relative;
        }
        .main-nav a:hover {
            color: #fff;
            background: rgba(184, 134, 11, 0.25);
            text-decoration: none;
        }
        .main-nav a.active {
            color: #fff;
            background: #b8860b;
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 0.65rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cec0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a7a6a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5a4a3a;
        }
        .breadcrumb .current {
            color: #1a2a1a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a2a1a 0%, #2d4a2d 100%);
            color: #f5efe6;
            padding: 3.5rem 0 3rem;
            margin-bottom: 2.5rem;
            border-radius: 0 0 40px 40px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♠ ♥ ♦ ♣";
            position: absolute;
            bottom: -10px;
            right: 20px;
            font-size: 7rem;
            opacity: 0.06;
            color: #b8860b;
            letter-spacing: 20px;
            pointer-events: none;
        }
        .hero h1 {
            color: #f5efe6;
            border-bottom-color: #b8860b;
            font-size: 2.8rem;
            display: block;
            border-bottom-width: 5px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            opacity: 0.92;
            margin-top: 0.8rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.5rem;
            font-size: 0.95rem;
            color: #cbc0b0;
        }
        .hero-meta i {
            color: #b8860b;
            margin-right: 0.4rem;
        }
        .section-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            margin-bottom: 2.2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eae5dc;
            transition: box-shadow 0.3s ease;
        }
        .section-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
        }
        .highlight-box {
            background: #fcf9f2;
            border-left: 6px solid #b8860b;
            padding: 1.6rem 2rem;
            border-radius: 12px;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #f5f1ea;
            border-radius: 16px;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: transform 0.2s ease;
        }
        .stat-item:hover {
            transform: translateY(-4px);
        }
        .stat-item .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #b8860b;
            display: block;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #3e4a3e;
            font-weight: 500;
        }
        .interview-block {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            background: #f5f1ea;
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            align-items: center;
        }
        .interview-block .avatar {
            flex: 0 0 100px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #b8860b;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #fff;
            font-weight: 700;
        }
        .interview-block .content {
            flex: 1;
            min-width: 220px;
        }
        .interview-block .content h4 {
            margin-top: 0;
            color: #1a2a1a;
        }
        .interview-block .content p {
            margin-bottom: 0.4rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.98rem;
        }
        .data-table th {
            background: #1a2a1a;
            color: #f5efe6;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #e0d8cc;
        }
        .data-table tr:nth-child(even) {
            background: #faf7f2;
        }
        .data-table tr:hover {
            background: #f0ebe2;
        }
        .form-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eae5dc;
            margin-bottom: 2rem;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            color: #1a2a1a;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd6ca;
            border-radius: 10px;
            font-size: 1rem;
            background: #fdfcfa;
            transition: border 0.25s ease;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-card .btn:hover {
            background: #9a7209;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
        }
        .form-card .btn-secondary {
            background: #3e4a3e;
        }
        .form-card .btn-secondary:hover {
            background: #2a3a2a;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.3rem;
            justify-content: flex-end;
            font-size: 1.8rem;
            margin: 0.5rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd6ca;
            cursor: pointer;
            transition: color 0.2s ease;
            font-size: 1.8rem;
            padding: 0 0.1rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #b8860b;
        }
        .site-footer {
            background: #1a2a1a;
            color: #cbc0b0;
            padding: 3rem 0 1.8rem;
            margin-top: 4rem;
            border-top: 6px solid #b8860b;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f5efe6;
            margin-top: 0;
            border-bottom: 2px solid #b8860b;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .site-footer a {
            color: #cbc0b0;
        }
        .site-footer a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        .friend-link {
            display: block;
            padding: 0.4rem 0;
            font-size: 0.95rem;
        }
        .friend-link a {
            margin-right: 1rem;
        }
        .copyright {
            border-top: 1px solid #3e4a3e;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #8a9a8a;
        }
        .copyright strong {
            color: #cbc0b0;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0f1a0f;
                padding: 0.8rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.5rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .section-card {
                padding: 1.4rem 1.2rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .hero::after {
                font-size: 4rem;
                bottom: 0;
                right: 10px;
                opacity: 0.04;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interview-block {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }
            .interview-block .avatar {
                flex: 0 0 80px;
                width: 80px;
                height: 80px;
                font-size: 2.2rem;
                margin: 0 auto;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .rounded-full {
            border-radius: 999px;
        }
        .op-8 {
            opacity: 0.8;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b8860b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
            z-index: 99;
            opacity: 0;
            pointer-events: none;
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            background: #9a7209;
            transform: translateY(-3px);
        }
        .schema-hidden {
            display: none;
        }
