* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, Helvetica, sans-serif;
            background: #f4f7fb;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #0a6e9b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0b1a2b, #122b44);
            color: #fff;
            padding: 16px 0;
            border-bottom: 4px solid #d4a017;
            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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(135deg, #d4a017, #f5d77b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aac9e0;
            display: block;
            font-weight: 300;
            letter-spacing: 1px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        nav a {
            color: #e0edf7;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 40px;
            transition: all 0.25s;
            font-size: 0.92rem;
        }
        nav a:hover {
            background: rgba(212, 160, 23, 0.2);
            color: #f5d77b;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a017;
            color: #d4a017;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #d4a017;
            color: #0b1a2b;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
                width: 100%;
                background: rgba(255, 255, 255, 0.05);
            }
            .header-inner {
                align-items: center;
            }
        }
        .breadcrumb {
            background: #e8eef4;
            padding: 10px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #dce3eb;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #6b7c93;
            margin-right: 10px;
        }
        .breadcrumb a {
            color: #0a6e9b;
        }
        .breadcrumb .current {
            color: #3d4f60;
            font-weight: 600;
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0b1a2b;
            line-height: 1.2;
            margin-bottom: 10px;
        }
        h1 i {
            color: #d4a017;
        }
        .last-updated {
            display: inline-block;
            background: #eef3f9;
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #3d5a73;
            margin-bottom: 20px;
            border: 1px solid #d4e0e8;
        }
        .last-updated i {
            margin-right: 6px;
            color: #d4a017;
        }
        .intro-image {
            margin: 24px 0 32px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        section {
            margin-bottom: 48px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #0b1a2b;
            border-left: 6px solid #d4a017;
            padding-left: 18px;
            margin: 36px 0 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a2e42;
            margin: 28px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2a4058;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #2c3e50;
        }
        .highlight {
            background: #fef9e7;
            border-left: 4px solid #d4a017;
            padding: 14px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 8px;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .data-card {
            background: #fff;
            padding: 24px 20px;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e6edf4;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .data-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }
        .data-card i {
            font-size: 2rem;
            color: #d4a017;
            margin-bottom: 12px;
        }
        .data-card h4 {
            margin-top: 0;
        }
        .interview-box {
            background: #f0f6fe;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 30px 0;
            border: 1px solid #cbddee;
            position: relative;
        }
        .interview-box::before {
            content: "💬";
            font-size: 2.4rem;
            position: absolute;
            top: -18px;
            left: 24px;
            background: #f0f6fe;
            padding: 0 10px;
        }
        .interview-box strong {
            color: #0b1a2b;
        }
        .search-section {
            background: linear-gradient(135deg, #e8f0fa, #d4e4f5);
            border-radius: 20px;
            padding: 30px 28px;
            margin: 40px 0;
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 600px;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #bcccdb;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #d4a017;
            box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
        }
        .search-section button {
            background: #0b1a2b;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #d4a017;
            color: #0b1a2b;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 26px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e6edf4;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #dce3eb;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #d4a017;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            background: #0b1a2b;
            color: #fff;
            border: none;
            padding: 14px 24px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .feedback-card button:hover {
            background: #d4a017;
            color: #0b1a2b;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5b342;
        }
        footer {
            background: #0b1a2b;
            color: #cbddee;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        footer a {
            color: #aac9e0;
        }
        footer a:hover {
            color: #f5d77b;
        }
        .footer-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #f5d77b;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 18px 20px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin: 16px 0 10px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: #8aa3ba;
        }
        @media (max-width: 600px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 14px;
            }
            .data-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-gold {
            color: #d4a017;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hotel-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .hotel-table th {
            background: #0b1a2b;
            color: #f5d77b;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .hotel-table td {
            padding: 14px 16px;
            border-bottom: 1px solid #eef3f8;
        }
        .hotel-table tr:hover td {
            background: #f8fafc;
        }
        @media (max-width: 600px) {
            .hotel-table {
                font-size: 0.85rem;
            }
            .hotel-table th,
            .hotel-table td {
                padding: 10px 8px;
            }
        }
        .btn-small {
            display: inline-block;
            background: #0a6e9b;
            color: #fff !important;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .btn-small:hover {
            background: #d4a017;
            text-decoration: none !important;
        }
