        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e17;
            color: #e8edf5;
            line-height: 1.75;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            transform: translateY(-1px);
        }
        a:focus-visible {
            outline: 2px solid #f0c94b;
            outline-offset: 4px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        img:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 48px rgba(240, 201, 75, 0.15);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f7fc;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f0c94b;
            padding-bottom: 0.3em;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f0c94b;
            padding-left: 0.7em;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0c94b;
        }
        h4 {
            font-size: 1.15rem;
            color: #cfd8e8;
        }
        p {
            margin-bottom: 1.2em;
            color: #d5dce8;
        }
        strong,
        b {
            color: #f5f7fc;
            font-weight: 700;
        }
        em,
        i {
            color: #f0c94b;
        }
        ul,
        ol {
            margin-bottom: 1.4em;
            padding-left: 1.8em;
        }
        li {
            margin-bottom: 0.5em;
        }
        header {
            padding: 16px 0 8px 0;
            border-bottom: 1px solid #1f2640;
            margin-bottom: 20px;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f0c94b;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c94b, #ff9f1c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 201, 75, 0.15);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.5rem;
            display: block;
            -webkit-text-fill-color: #8892b0;
            color: #8892b0;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c94b;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2640;
        }
        .nav-toggle:focus-visible {
            outline: 2px solid #f0c94b;
            outline-offset: 4px;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 18px;
        }
        nav a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            color: #bcc4d6;
            transition: background 0.25s, color 0.25s;
        }
        nav a:hover,
        nav a.active {
            background: #1f2640;
            color: #f0c94b;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            font-size: 0.85rem;
            color: #8892b0;
            padding: 10px 0 6px 0;
            margin-top: 8px;
            border-top: 1px solid #1a1f33;
        }
        .breadcrumb a {
            color: #8892b0;
        }
        .breadcrumb a:hover {
            color: #f0c94b;
        }
        .breadcrumb .sep {
            color: #3a405a;
        }
        .breadcrumb .current {
            color: #f0c94b;
            font-weight: 500;
        }
        main {
            flex: 1;
            padding: 12px 0 40px 0;
        }
        .hero-img-wrap {
            margin: 28px 0 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #0d1220;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 16px;
        }
        .hero-img-wrap figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #8892b0;
            background: rgba(11, 14, 23, 0.85);
            backdrop-filter: blur(4px);
            border-radius: 0 0 16px 16px;
        }
        section {
            margin-bottom: 40px;
            padding: 24px 20px;
            background: #101624;
            border-radius: 16px;
            border: 1px solid #1a1f33;
            transition: box-shadow 0.3s ease;
        }
        section:hover {
            box-shadow: 0 4px 32px rgba(240, 201, 75, 0.04);
        }
        .section-light {
            background: #141b2d;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .card {
            background: #0d1220;
            padding: 20px 18px;
            border-radius: 14px;
            border: 1px solid #1f2640;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #f0c94b44;
        }
        .card h4 {
            margin-top: 0.2em;
        }
        .card p {
            font-size: 0.95rem;
        }
        .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            background: #0a0e1a;
            padding: 16px 22px;
            border-radius: 12px;
            border: 1px solid #1f2640;
            margin: 20px 0;
        }
        .stat-item {
            flex: 1 1 120px;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f0c94b;
            display: block;
            line-height: 1.1;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #8892b0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .interview-block {
            background: #0d1220;
            padding: 20px 24px;
            border-radius: 14px;
            border-left: 4px solid #f0c94b;
            margin: 20px 0;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #f0c94b;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 18px 0 10px 0;
            max-width: 580px;
        }
        .search-form input[type="text"] {
            flex: 1 1 200px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid #2a3350;
            background: #0d1220;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c94b;
            box-shadow: 0 0 0 3px rgba(240, 201, 75, 0.15);
        }
        .search-form button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #f0c94b;
            color: #0b0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0;
        }
        @media (max-width: 640px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #0d1220;
            padding: 20px 22px;
            border-radius: 14px;
            border: 1px solid #1f2640;
        }
        .feedback-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"],
        .feedback-card select {
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid #2a3350;
            background: #0a0e1a;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #f0c94b;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            align-self: flex-start;
            padding: 10px 28px;
            border-radius: 40px;
            border: none;
            background: #f0c94b;
            color: #0b0e17;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 0.95rem;
        }
        .feedback-card button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .feedback-card button:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #3a405a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c94b;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #1f2640;
            margin-top: 12px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding-left: 0;
        }
        friend-link li {
            margin-bottom: 0;
        }
        friend-link a {
            color: #8892b0;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f0c94b;
        }
        footer {
            border-top: 1px solid #1f2640;
            padding: 24px 0 32px 0;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #6a728e;
        }
        footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        footer .copyright p {
            margin-bottom: 0;
            color: #6a728e;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0d1220;
                padding: 12px 16px;
                border-radius: 12px;
                border: 1px solid #1f2640;
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 12px;
                border-radius: 8px;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            section {
                padding: 18px 14px;
            }
            .stat-row {
                padding: 12px 16px;
                gap: 12px;
            }
            .stat-item .num {
                font-size: 1.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .hero-img-wrap figcaption {
                font-size: 0.8rem;
                padding: 8px 14px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form button {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
            .search-form input[type="text"] {
                padding: 10px 14px;
                font-size: 0.9rem;
            }
        }
        ::selection {
            background: #f0c94b44;
            color: #fff;
        }
        .badge {
            display: inline-block;
            background: #f0c94b18;
            color: #f0c94b;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #f0c94b22;
        }
        .last-update {
            font-size: 0.85rem;
            color: #6a728e;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 16px;
        }
        .last-update i {
            color: #f0c94b;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            background: #0a0e1a;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #1a1f33;
        }
        th {
            background: #1f2640;
            color: #f0c94b;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #101624;
        }
