        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e14;
            color: #e2e6ed;
            line-height: 1.8;
            min-height: 100vh;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f7fa;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.6rem;
            border-left: 6px solid #f0c040;
            padding-left: 20px;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 2.0rem;
            color: #f0c040;
            border-bottom: 2px solid #2a2f3a;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            color: #e8d5a3;
        }
        h4 {
            font-size: 1.2rem;
            color: #cfd8e6;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        .text-muted {
            color: #9aa3b5;
        }
        .text-gold {
            color: #f0c040;
        }
        .text-highlight {
            background: linear-gradient(90deg, #f0c04022, #f0c04011);
            padding: 0 6px;
            border-radius: 4px;
        }
        .site-header {
            background: #141a24;
            border-bottom: 2px solid #2a2f3a;
            padding: 12px 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: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0c040;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px #f0c04033;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo span {
            color: #e8e8e8;
            font-weight: 300;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #c8ceda;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: #2a2f3a;
            color: #f0c040;
            border-color: #f0c04044;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f0c04018;
            color: #f0c040;
            border-color: #f0c04066;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2f3a;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f0c040;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: #1a202c;
            padding: 12px 0;
            border-bottom: 1px solid #2a2f3a;
            font-size: 0.92rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #6b7a8f;
        }
        .breadcrumb a {
            color: #b0bed0;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 500;
        }
        .hero {
            padding: 50px 0 40px;
            background: linear-gradient(135deg, #0b0e14 0%, #1a222f 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #f0c04008 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.15rem;
            color: #c8ceda;
            max-width: 600px;
        }
        .hero-image {
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .hero-image:hover {
            transform: scale(1.01);
            box-shadow: 0 25px 60px rgba(240, 192, 64, 0.15);
        }
        .hero-badge {
            display: inline-block;
            background: #f0c04018;
            border: 1px solid #f0c04044;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f0c040;
            margin-bottom: 12px;
        }
        .content-section {
            padding: 40px 0;
        }
        .section-inner {
            max-width: 1100px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #161d29;
            border: 1px solid #2a2f3a;
            border-radius: 16px;
            padding: 28px 24px;
            transition: all 0.3s ease;
        }
        .card:hover {
            border-color: #f0c04044;
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
        }
        .card .icon {
            font-size: 2.2rem;
            color: #f0c040;
            margin-bottom: 12px;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: 12px;
            border: 1px solid #2a2f3a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2a2f3a;
        }
        th {
            background: #1a222f;
            color: #f0c040;
            font-weight: 600;
            white-space: nowrap;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1a222f55;
        }
        .interview-block {
            background: #141a24;
            border-left: 4px solid #f0c040;
            border-radius: 0 12px 12px 0;
            padding: 28px 30px;
            margin: 30px 0;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #f0c040;
        }
        .interview-block .quote {
            font-style: italic;
            color: #d0d8e5;
        }
        .tip-box {
            background: #1a2535;
            border: 1px solid #f0c04033;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 28px 0;
            position: relative;
        }
        .tip-box::before {
            content: "💡";
            font-size: 1.8rem;
            position: absolute;
            top: -14px;
            left: 20px;
            background: #0b0e14;
            padding: 0 8px;
        }
        .tip-box strong {
            color: #f0c040;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #c8ceda;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            background: #1a202c;
            border: 1px solid #2a2f3a;
            border-radius: 10px;
            color: #e2e6ed;
            font-size: 1rem;
            transition: border 0.3s ease;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f0c040;
            outline: none;
            box-shadow: 0 0 0 3px #f0c04022;
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background: #ffd966;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(240, 192, 64, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: #f0c040;
            color: #0b0e14;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #3a3f4a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #f0c040;
            transform: scale(1.1);
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 20px 0;
        }
        .search-form input {
            flex: 1;
            padding: 14px 18px;
            background: #1a202c;
            border: 1px solid #2a2f3a;
            border-radius: 50px;
            color: #e2e6ed;
            font-size: 1rem;
        }
        .search-form input:focus {
            border-color: #f0c040;
            outline: none;
        }
        .search-form button {
            padding: 14px 28px;
            background: #f0c040;
            border: none;
            border-radius: 50px;
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ffd966;
        }
        friend-link {
            display: block;
            padding: 30px 0;
            border-top: 1px solid #2a2f3a;
            margin-top: 40px;
        }
        friend-link .friend-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f0c040;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link .friend-list a {
            color: #b0bed0;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.25s;
        }
        friend-link .friend-list a:hover {
            color: #f0c040;
            border-bottom-color: #f0c04044;
            text-decoration: none;
        }
        .site-footer {
            background: #0d121c;
            border-top: 2px solid #1a222f;
            padding: 40px 0 30px;
            margin-top: 20px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .footer-col h4 {
            color: #f0c040;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul a {
            color: #9aa3b5;
            font-size: 0.95rem;
        }
        .footer-col ul a:hover {
            color: #f0c040;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #1a222f;
            color: #6b7a8f;
            font-size: 0.92rem;
        }
        .copyright strong {
            color: #b0bed0;
        }
        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                max-width: 100%;
            }
            .hero-image {
                max-width: 90%;
                margin: 0 auto;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a24;
                border-radius: 12px;
                padding: 12px 8px;
                margin-top: 8px;
                border: 1px solid #2a2f3a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 18px;
                border-radius: 8px;
            }
            .header-inner {
                position: relative;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            .search-form {
                flex-direction: column;
                max-width: 100%;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .interview-block {
                padding: 20px;
            }
            .tip-box {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 0.92rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .gap-8 {
            gap: 8px;
        }
        .last-updated {
            display: inline-block;
            background: #1a222f;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.88rem;
            color: #9aa3b5;
            border: 1px solid #2a2f3a;
        }
        .last-updated i {
            color: #f0c040;
            margin-right: 6px;
        }
        .divider {
            height: 1px;
            background: #2a2f3a;
            margin: 32px 0;
        }
        .text-small {
            font-size: 0.92rem;
        }
        .list-check {
            list-style: none;
            padding-left: 0;
        }
        .list-check li {
            padding: 6px 0 6px 28px;
            position: relative;
        }
        .list-check li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0c040;
            font-weight: 700;
        }
