*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8e6e3;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c75e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffdf8a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #141a24;
            border-bottom: 2px solid #2a3545;
            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.6rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: #f0c75e;
            text-transform: uppercase;
            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);
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c75e;
            margin-right: 8px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links li a {
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d0dc;
            transition: background 0.2s, color 0.2s;
        }
        .nav-links li a:hover {
            background: #2a3545;
            color: #f0c75e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a3545;
        }
        .breadcrumb {
            background: #10161f;
            padding: 10px 0;
            border-bottom: 1px solid #1e2835;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6a7a8e;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #a0b0c4;
        }
        .breadcrumb a:hover {
            color: #f0c75e;
        }
        .breadcrumb .current {
            color: #f0c75e;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f0c75e;
            line-height: 1.2;
            margin-bottom: 0.6rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            color: #f0c75e;
            border-left: 5px solid #f0c75e;
            padding-left: 18px;
            margin: 48px 0 20px 0;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8d5a3;
            margin: 32px 0 14px 0;
            line-height: 1.35;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c29a;
            margin: 24px 0 10px 0;
            line-height: 1.4;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #d5d9e0;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #e8e6e3;
            margin-bottom: 2rem;
            border-left: 3px solid #f0c75e;
            padding-left: 20px;
        }
        strong,
        b {
            color: #f0e6c0;
            font-weight: 600;
        }
        em {
            color: #c8d0dc;
            font-style: italic;
        }
        .hero-img-wrap {
            margin: 28px 0 32px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a2330;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-img-wrap figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #9aabbe;
            background: #10161f;
            border-top: 1px solid #2a3545;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .info-card {
            background: #141c28;
            border-radius: 12px;
            padding: 24px 20px;
            border: 1px solid #253040;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
            border-color: #3d4d62;
        }
        .info-card i {
            font-size: 2rem;
            color: #f0c75e;
            margin-bottom: 14px;
        }
        .info-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .info-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .stat-block {
            background: #101721;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #253040;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-around;
        }
        .stat-item {
            text-align: center;
            flex: 1 1 120px;
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c75e;
            display: block;
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #9aabbe;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .interview-box {
            background: #141c28;
            border-radius: 12px;
            padding: 28px;
            margin: 32px 0;
            border-left: 5px solid #f0c75e;
        }
        .interview-box h4 {
            margin-top: 0;
            color: #f0c75e;
        }
        .interview-box .speaker {
            font-weight: 700;
            color: #e8d5a3;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }
        .link-list-inline li a {
            background: #1a2330;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #2a3545;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-list-inline li a:hover {
            background: #2a3545;
            border-color: #f0c75e;
            text-decoration: none;
        }
        .form-section {
            background: #141c28;
            border-radius: 12px;
            padding: 28px 30px;
            margin: 40px 0;
            border: 1px solid #253040;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #d4c29a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #2a3545;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f0c75e;
            box-shadow: 0 0 0 3px rgba(240, 199, 94, 0.15);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            background: #f0c75e;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .btn:hover {
            background: #ffdf8a;
            transform: translateY(-2px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #3d4d62;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f0c75e;
            transform: scale(1.1);
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #3d4d62;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f0c75e;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #101721;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th {
            background: #1a2330;
            color: #f0c75e;
            font-weight: 600;
            padding: 14px 18px;
            text-align: left;
            border-bottom: 2px solid #2a3545;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #1e2835;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1a2330;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a9aaa;
            margin-top: 16px;
            padding: 12px 0;
            border-top: 1px solid #1e2835;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #f0c75e;
        }
        footer {
            background: #0d121c;
            border-top: 2px solid #1e2835;
            padding: 40px 0 20px;
            margin-top: 20px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 28px;
            margin-bottom: 28px;
        }
        footer h4 {
            color: #f0c75e;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 6px;
        }
        footer ul li a {
            color: #a0b0c4;
            font-size: 0.9rem;
        }
        footer ul li a:hover {
            color: #f0c75e;
        }
        friend-link {
            display: block;
            margin: 16px 0;
            padding: 16px 20px;
            background: #101721;
            border-radius: 8px;
            border: 1px solid #253040;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #c8d0dc;
        }
        friend-link a:hover {
            color: #f0c75e;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 8px;
            border-top: 1px solid #1e2835;
            font-size: 0.85rem;
            color: #6a7a8e;
        }
        .copyright a {
            color: #a0b0c4;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a24;
                padding: 16px 0 12px;
                border-top: 1px solid #2a3545;
                gap: 4px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li a {
                padding: 10px 16px;
                font-size: 1rem;
                display: block;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .stat-block {
                flex-direction: column;
                gap: 16px;
                padding: 18px;
            }
            .stat-item .number {
                font-size: 1.7rem;
            }
            .info-grid {
                grid-template-columns: 1fr;
            }
            .form-section {
                padding: 20px;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
            }
            .interview-box {
                padding: 18px;
            }
            .hero-img-wrap img {
                max-height: 240px;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.95rem;
            }
            .lead {
                font-size: 1.05rem;
                padding-left: 14px;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        .mt-1 {
            margin-top: 16px;
        }
        .mt-2 {
            margin-top: 32px;
        }
        .mb-1 {
            margin-bottom: 16px;
        }
        .text-center {
            text-align: center;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .gap-1 {
            gap: 8px;
        }
        .text-muted {
            color: #8a9aaa;
        }
        .highlight {
            color: #f0c75e;
        }
        .bg-dark {
            background: #101721;
            border-radius: 8px;
            padding: 20px 24px;
            margin: 20px 0;
        }
        .border-left-accent {
            border-left: 4px solid #f0c75e;
            padding-left: 18px;
        }
