        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8e6e3;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c75e;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f0e8;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            border-left: 6px solid #f0c75e;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2f3a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #d4c9b0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1e28, #0f121b);
            border-bottom: 3px solid #2e3b4e;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c75e, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 199, 94, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #f0c75e;
            -webkit-text-fill-color: #f0c75e;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c75e;
            color: #f0c75e;
            font-size: 1.6rem;
            padding: 0.3rem 0.9rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0c75e22;
        }
        .primary-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8c4bc;
            transition: background 0.25s, color 0.25s;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: #2a2f3a;
            color: #f0c75e;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #141822;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2f3a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #f0c75e;
            margin-right: 0.6rem;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #a8a4a0;
        }
        .breadcrumb a:hover {
            color: #f0c75e;
        }
        .breadcrumb .current {
            color: #f0c75e;
            font-weight: 600;
        }
        .site-main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .hero-image {
            margin: 1.5rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        .hero-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .hero-image figcaption {
            background: linear-gradient(transparent, #0b0e14cc);
            padding: 1.2rem 1.5rem 0.8rem;
            font-size: 0.9rem;
            color: #c0b8a8;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: right;
        }
        .content-section {
            background: #151a24;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin-bottom: 2.5rem;
            border: 1px solid #2a2f3a;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
        }
        .content-section.highlight {
            border-left: 5px solid #f0c75e;
            background: #1a202d;
        }
        .insight-box {
            background: #1e2533;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0;
            border-left: 4px solid #f0c75e;
        }
        .insight-box i {
            color: #f0c75e;
            margin-right: 0.6rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #1a202d;
            border-radius: 12px;
            padding: 1.4rem 1rem;
            text-align: center;
            border: 1px solid #2a2f3a;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c75e;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #a8a4a0;
            margin-top: 0.3rem;
        }
        .interview-block {
            background: #1e2533;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #3a3f4a;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #f0c75e;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            padding-left: 1.2rem;
            border-left: 3px solid #f0c75e55;
            margin: 0.6rem 0 1rem;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0 1.5rem;
        }
        .link-list-inline li a {
            background: #1e2533;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            border: 1px solid #2a2f3a;
            font-size: 0.9rem;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .link-list-inline li a:hover {
            background: #2a2f3a;
            border-color: #f0c75e44;
            text-decoration: none;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.2rem 0 1.8rem;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border-radius: 30px;
            border: 2px solid #2a2f3a;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #f0c75e;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: #f0c75e;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        @media(max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #1a202d;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            border: 1px solid #2a2f3a;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card h3 i {
            color: #f0c75e;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .feedback-card form input,
        .feedback-card form textarea,
        .feedback-card form select {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 2px solid #2a2f3a;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .feedback-card form input:focus,
        .feedback-card form textarea:focus,
        .feedback-card form select:focus {
            border-color: #f0c75e;
        }
        .feedback-card form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card form button {
            padding: 0.7rem 1.6rem;
            border-radius: 30px;
            border: none;
            background: #f0c75e;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form button:hover {
            background: #ffd966;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a3f4a;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f0c75e;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .data-table th,
        .data-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2f3a;
        }
        .data-table th {
            background: #1e2533;
            color: #f0c75e;
            font-weight: 700;
        }
        .data-table tr:hover td {
            background: #1a202d44;
        }
        .site-footer {
            background: #0f121b;
            border-top: 3px solid #2e3b4e;
            padding: 2.5rem 0 1.8rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-inner h4 {
            color: #f0c75e;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.4rem;
        }
        .footer-inner ul li a {
            color: #a8a4a0;
            font-size: 0.95rem;
        }
        .footer-inner ul li a:hover {
            color: #f0c75e;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
            color: #a8a4a0;
        }
        friend-link a:hover {
            color: #f0c75e;
        }
        .copyright {
            border-top: 1px solid #2a2f3a;
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #6a6a6a;
        }
        .copyright a {
            color: #8a8a8a;
        }
        @media(max-width:768px) {
            h1 {
                font-size: 2rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-section {
                padding: 1.4rem 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: inline-block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1e28;
                border-radius: 12px;
                padding: 0.8rem 0;
                margin-top: 0.4rem;
                border: 1px solid #2a2f3a;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 1.2rem;
                border-radius: 0;
            }
            .hero-image figcaption {
                font-size: 0.75rem;
                padding: 0.6rem 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
        }
        @media(max-width:480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                min-width: 140px;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        .tag {
            display: inline-block;
            background: #2a2f3a;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #c8c4bc;
            margin-right: 0.4rem;
            margin-bottom: 0.4rem;
        }
        .tag i {
            color: #f0c75e;
            margin-right: 0.2rem;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #1e2533;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #c8c4bc;
            border: 1px solid #2a2f3a;
        }
        .updated-badge i {
            color: #f0c75e;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f0c75e;
            color: #0b0e14;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
            transition: transform 0.2s, background 0.2s;
            z-index: 999;
        }
        .back-to-top:hover {
            background: #ffd966;
            transform: translateY(-3px);
            text-decoration: none;
            color: #0b0e14;
        }
        @media(max-width:480px) {
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
