* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #d4a017;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #b8860b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(145deg, #0f0c29, #1a1a2e, #16213e);
            padding: 16px 0;
            border-bottom: 4px solid #d4a017;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 26px;
            font-weight: 800;
            color: #d4a017;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(212, 160, 23, .3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 32px;
            color: #f0c27f;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .my-logo:hover {
            color: #f0c27f;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav a {
            color: #e0e0e0;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            transition: all .25s;
            position: relative;
        }
        .nav a:hover,
        .nav a.active {
            background: #d4a017;
            color: #0f0c29;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4a017;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 12px;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 10px 0;
            font-size: 13px;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: #d4a017;
        }
        .breadcrumb .sep {
            color: #adb5bd;
            margin: 0 4px;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 50px 0 40px;
            text-align: center;
            color: #fff;
            border-bottom: 4px solid #d4a017;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -.5px;
        }
        .hero h1 i {
            color: #d4a017;
            margin-right: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 20px;
            color: #cfd8e6;
            line-height: 1.6;
        }
        .hero .meta {
            font-size: 14px;
            color: #a0b0c0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #d4a017;
        }
        .hero-img-wrap {
            margin: 30px auto 0;
            max-width: 800px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
            border: 2px solid #d4a01733;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }
        .section {
            padding: 50px 0;
            border-bottom: 1px solid #e9ecef;
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #0f0c29;
            border-left: 6px solid #d4a017;
            padding-left: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section h2 i {
            color: #d4a017;
            font-size: 28px;
        }
        .section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 30px 0 14px;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section h3 i {
            color: #b8860b;
            font-size: 22px;
        }
        .section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #2d2d44;
        }
        .section p {
            margin-bottom: 18px;
            color: #2d2d44;
            line-height: 1.8;
        }
        .section ul,
        .section ol {
            margin: 12px 0 20px 24px;
            color: #2d2d44;
        }
        .section li {
            margin-bottom: 8px;
            line-height: 1.7;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 6px solid #d4a017;
            padding: 20px 28px;
            border-radius: 8px;
            margin: 24px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
            border-top: 4px solid #d4a017;
            transition: transform .2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #d4a017;
            display: block;
        }
        .stat-card .label {
            font-size: 14px;
            color: #6c757d;
            margin-top: 4px;
        }
        .interview-card {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 28px;
            margin: 20px 0;
            border: 1px solid #e9ecef;
            position: relative;
        }
        .interview-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 32px;
            color: #d4a01722;
            position: absolute;
            top: 16px;
            right: 20px;
        }
        .interview-card .name {
            font-weight: 700;
            color: #0f0c29;
            font-size: 1.1rem;
        }
        .interview-card .title-text {
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 12px;
        }
        .btn {
            display: inline-block;
            background: #d4a017;
            color: #0f0c29;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 600;
            transition: all .25s;
            border: none;
            cursor: pointer;
            font-size: 15px;
        }
        .btn:hover {
            background: #b8860b;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 160, 23, .3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #d4a017;
            color: #d4a017;
        }
        .btn-outline:hover {
            background: #d4a017;
            color: #0f0c29;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 540px;
            margin: 16px 0 8px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #dee2e6;
            border-radius: 30px;
            font-size: 15px;
            outline: none;
            transition: border .25s;
            background: #fff;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #d4a017;
        }
        .search-box button {
            padding: 14px 28px;
            border: none;
            border-radius: 30px;
            background: #d4a017;
            color: #0f0c29;
            font-weight: 600;
            cursor: pointer;
            transition: all .25s;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #b8860b;
            color: #fff;
        }
        .comment-area {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
            margin: 24px 0;
        }
        .comment-area textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #dee2e6;
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            outline: none;
            transition: border .25s;
        }
        .comment-area textarea:focus {
            border-color: #d4a017;
        }
        .comment-area .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin: 14px 0;
        }
        .comment-area .form-row input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #dee2e6;
            border-radius: 30px;
            font-size: 15px;
            outline: none;
            transition: border .25s;
            min-width: 160px;
        }
        .comment-area .form-row input:focus {
            border-color: #d4a017;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #dee2e6;
            cursor: pointer;
            margin: 10px 0 16px;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color .2s, transform .15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #d4a017;
            transform: scale(1.1);
        }
        .rating-stars i.selected {
            color: #d4a017;
        }
        .comment-list {
            margin-top: 24px;
            border-top: 2px solid #e9ecef;
            padding-top: 20px;
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid #f1f3f5;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 600;
            color: #0f0c29;
        }
        .comment-item .date {
            font-size: 13px;
            color: #adb5bd;
            margin-left: 16px;
        }
        .comment-item .stars {
            color: #d4a017;
            font-size: 14px;
            margin-left: 8px;
        }
        .comment-item .text {
            margin-top: 6px;
            color: #2d2d44;
        }
        .footer {
            background: #0f0c29;
            color: #cfd8e6;
            padding: 40px 0 20px;
            border-top: 4px solid #d4a017;
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer h4 {
            color: #d4a017;
            font-size: 1.1rem;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .footer a {
            color: #a0b0c0;
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
        }
        .footer a:hover {
            color: #d4a017;
        }
        friend-link {
            display: block;
            margin-top: 10px;
            font-size: 14px;
        }
        friend-link a {
            display: inline;
            margin-right: 20px;
            color: #a0b0c0;
        }
        friend-link a:hover {
            color: #d4a017;
        }
        .footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #2d2d44;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #6c757d;
        }
        .footer .copyright strong {
            color: #d4a017;
        }
        @media (max-width: 768px) {
            .header .container {
                flex-wrap: wrap;
            }
            .nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f0c29;
                padding: 16px 0 20px;
                border-top: 2px solid #d4a01733;
                margin-top: 12px;
                gap: 4px;
            }
            .nav.open {
                display: flex;
            }
            .nav a {
                padding: 10px 20px;
                width: 100%;
                border-radius: 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section h2 {
                font-size: 1.5rem;
            }
            .section h3 {
                font-size: 1.2rem;
            }
            .footer .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                min-width: auto;
            }
            .comment-area .form-row {
                flex-direction: column;
            }
            .comment-area .form-row input {
                min-width: auto;
            }
            .hero .meta {
                flex-direction: column;
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 14px;
            }
            .section {
                padding: 32px 0;
            }
            .my-logo {
                font-size: 20px;
            }
            .my-logo i {
                font-size: 24px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .text-gold {
            color: #d4a017;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .gap-20 {
            gap: 20px;
        }
        .img-rounded {
            border-radius: 12px;
            margin: 20px 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
        }
        th {
            background: #0f0c29;
            color: #d4a017;
            padding: 12px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 18px;
            border-bottom: 1px solid #f1f3f5;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fef9e7;
        }
