* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e1a;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        header {
            padding: 20px 0 10px;
            border-bottom: 2px solid #2a2f42;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c842, #e8a317);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: #f5c842;
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #8892b0;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #f5c842;
            background: none;
            border: none;
            padding: 4px 10px;
            transition: 0.2s;
        }
        .hamburger:hover {
            color: #ffdd77;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 20px;
        }
        nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            color: #c8d0e0;
        }
        nav a:hover {
            border-bottom-color: #f5c842;
            color: #f5c842;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.9rem;
            color: #8892b0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            width: 100%;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #4a5068;
        }
        .breadcrumb a {
            color: #a8b0cc;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 600;
        }
        main {
            padding: 28px 0 40px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 10px 0 18px;
            background: linear-gradient(135deg, #f5c842, #e8a317);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #f5c842;
            border-left: 5px solid #f5c842;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e8edf5;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #c8d0e0;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d0d6e8;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            font-size: 0.95rem;
            color: #8892b0;
            padding: 10px 0 20px;
            border-bottom: 1px solid #1e2336;
            margin-bottom: 28px;
        }
        .meta-info i {
            margin-right: 6px;
            color: #f5c842;
        }
        .banner-img {
            margin: 24px 0 32px;
            border-radius: 14px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            width: 100%;
            background: #1a1f32;
        }
        .content-section {
            margin-bottom: 30px;
        }
        .highlight-box {
            background: linear-gradient(145deg, #171d30, #1a1f34);
            border-left: 6px solid #f5c842;
            padding: 20px 24px;
            border-radius: 10px;
            margin: 24px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .tip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0 28px;
        }
        .tip-card {
            background: #181d2e;
            padding: 22px 20px;
            border-radius: 14px;
            border: 1px solid #2a2f48;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .tip-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(245, 200, 66, 0.08);
            border-color: #3d4460;
        }
        .tip-card i {
            font-size: 2rem;
            color: #f5c842;
            margin-bottom: 12px;
        }
        .tip-card h4 {
            margin-top: 0;
            color: #f5c842;
        }
        .tip-card p {
            font-size: 0.98rem;
            color: #b8c0d8;
        }
        .hero-table-wrap {
            overflow-x: auto;
            margin: 24px 0 30px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #14192b;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.98rem;
        }
        th {
            background: #1e243c;
            color: #f5c842;
            font-weight: 700;
            padding: 14px 18px;
            text-align: left;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #1e2336;
            color: #c8d0e0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1a1f36;
        }
        .interview-block {
            background: #101424;
            padding: 24px 28px;
            border-radius: 14px;
            border: 1px solid #2a2f48;
            margin: 28px 0;
            font-style: italic;
        }
        .interview-block .author {
            font-style: normal;
            font-weight: 600;
            color: #f5c842;
            margin-top: 12px;
            display: block;
        }
        .faq-item {
            border-bottom: 1px solid #1e2336;
            padding: 16px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item h4 {
            margin: 0 0 6px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item h4 i {
            font-size: 1.2rem;
            color: #f5c842;
            transition: 0.2s;
        }
        .faq-item p {
            margin: 6px 0 0;
            color: #b0b8d0;
        }
        .form-card {
            background: #14192b;
            padding: 24px 28px;
            border-radius: 14px;
            border: 1px solid #2a2f48;
            margin: 30px 0 20px;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #c8d0e0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            background: #0b0e1a;
            border: 1px solid #2a2f48;
            border-radius: 8px;
            color: #e8edf5;
            font-size: 1rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #f5c842;
            color: #0b0e1a;
            font-weight: 700;
            padding: 14px 36px;
            border: none;
            border-radius: 8px;
            font-size: 1.05rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
        }
        .btn:hover {
            background: #ffdd77;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 200, 66, 0.25);
        }
        .btn-secondary {
            background: #2a2f48;
            color: #e8edf5;
        }
        .btn-secondary:hover {
            background: #3d4460;
            box-shadow: 0 8px 20px rgba(42, 47, 72, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 8px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a3f5a;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        footer {
            border-top: 2px solid #2a2f42;
            padding: 32px 0 28px;
            margin-top: 40px;
        }
        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            margin-bottom: 18px;
            font-size: 0.95rem;
        }
        footer .footer-links a {
            color: #8892b0;
        }
        footer .footer-links a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            margin: 12px 0;
            border-top: 1px solid #1e2336;
            border-bottom: 1px solid #1e2336;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #a8b0cc;
            margin: 0 16px 0 4px;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        .copyright {
            font-size: 0.88rem;
            color: #5a6078;
            margin-top: 12px;
            text-align: center;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 14px 0 8px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                font-size: 1.1rem;
                padding: 10px 0;
                width: 100%;
                border-bottom: 1px solid #1e2336;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 6px;
            }
            .tip-grid {
                grid-template-columns: 1fr;
            }
            .form-card {
                padding: 18px 16px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.82rem;
                gap: 4px 8px;
            }
            table {
                font-size: 0.88rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 0 4px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .text-gold {
            color: #f5c842;
        }
        .text-muted {
            color: #8892b0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
