*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d1a;
            color: #e8e0d0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0d060;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1f 100%);
            border-bottom: 3px solid #d4af37;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, #d4af37, #f5d77b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .my-logo i {
            -webkit-text-fill-color: #d4af37;
            color: #d4af37;
            font-size: 1.8rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #a89070;
            color: #a89070;
            font-weight: 400;
            display: block;
            letter-spacing: 0.08em;
        }
        .my-logo a {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-nav {
            display: flex;
            list-style: none;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 6px 10px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #d4cfc8;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(212, 175, 55, 0.15);
            color: #f0d060;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #d4af37;
            color: #d4af37;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(212, 175, 55, 0.15);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 10px 0 6px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #a89070;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #d4af37;
        }
        .breadcrumb a {
            color: #c0b090;
        }
        .breadcrumb a:hover {
            color: #f0d060;
        }
        .breadcrumb .current {
            color: #f0d060;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
            padding: 50px 0 40px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d77b, #d4af37, #f5d77b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b8a898;
            max-width: 800px;
            margin: 0 auto 18px;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #8a7a6a;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero .meta-info i {
            color: #d4af37;
            margin-right: 6px;
        }
        .hero-feature-img {
            margin: 30px auto 0;
            max-width: 900px;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .content-area {
            padding: 40px 0 60px;
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content h2 {
            font-size: 2rem;
            color: #f0d060;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.25);
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #e0c850;
            margin: 32px 0 12px;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #d4b870;
            margin: 24px 0 8px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #d8d0c8;
            text-align: justify;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 28px;
            color: #d0c8b8;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content strong {
            color: #f5e0a0;
            font-weight: 700;
        }
        .main-content .highlight-box {
            background: rgba(212, 175, 55, 0.06);
            border-left: 4px solid #d4af37;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .main-content .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .main-content .stat-item {
            background: rgba(255, 255, 255, 0.04);
            padding: 20px 16px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .main-content .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f0d060;
            display: block;
        }
        .main-content .stat-item .label {
            font-size: 0.9rem;
            color: #a89070;
        }
        .main-content .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .main-content table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            overflow: hidden;
        }
        .main-content th,
        .main-content td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        .main-content th {
            background: rgba(212, 175, 55, 0.12);
            color: #f0d060;
            font-weight: 700;
        }
        .main-content td {
            color: #d0c8b8;
        }
        .main-content .interview-block {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 24px;
            margin: 24px 0;
            border: 1px solid rgba(212, 175, 55, 0.08);
        }
        .main-content .interview-block .speaker {
            color: #f0d060;
            font-weight: 700;
        }
        .main-content .emoji-lg {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar .card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
            border: 1px solid rgba(212, 175, 55, 0.08);
        }
        .sidebar .card h3 {
            font-size: 1.2rem;
            color: #f0d060;
            margin-bottom: 12px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            padding-bottom: 8px;
        }
        .sidebar .link-list {
            list-style: none;
        }
        .sidebar .link-list li {
            margin-bottom: 8px;
        }
        .sidebar .link-list a {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar .link-list a i {
            color: #d4af37;
            font-size: 0.75rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.25);
            background: rgba(0, 0, 0, 0.4);
            color: #e8e0d0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #d4af37;
        }
        .search-form button {
            padding: 10px 18px;
            background: #d4af37;
            color: #0d0d1a;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #f0c850;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.6rem;
            color: #f0d060;
            margin-bottom: 16px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: rgba(0, 0, 0, 0.3);
            color: #e8e0d0;
            font-size: 0.95rem;
            margin-bottom: 12px;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #d4af37;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .comment-form .row input {
            flex: 1;
        }
        .comment-form .btn {
            padding: 12px 28px;
            background: #d4af37;
            color: #0d0d1a;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form .btn:hover {
            background: #f0c850;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d4af37;
            cursor: pointer;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .rating-stars .star {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            transform: scale(1.2);
            color: #ffd700;
        }
        .rating-result {
            font-size: 1.1rem;
            color: #b8a898;
        }
        .site-footer {
            background: linear-gradient(145deg, #0f0f1f, #1a1a2e);
            border-top: 3px solid #d4af37;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .site-footer h4 {
            color: #f0d060;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .site-footer p {
            color: #a89070;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .site-footer .link-list {
            list-style: none;
        }
        .site-footer .link-list li {
            margin-bottom: 6px;
        }
        .site-footer .link-list a {
            font-size: 0.9rem;
            color: #c0b090;
        }
        .site-footer .link-list a:hover {
            color: #f0d060;
        }
        .friend-link {
            display: block;
            margin: 20px 0 12px;
            padding: 16px 0;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        .friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin-top: 8px;
        }
        .friend-link ul a {
            font-size: 0.9rem;
            color: #a89070;
        }
        .friend-link ul a:hover {
            color: #f0d060;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #7a6a5a;
            border-top: 1px solid rgba(212, 175, 55, 0.08);
            margin-top: 16px;
        }
        .copyright strong {
            color: #a89070;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .sidebar .card {
                margin-bottom: 0;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding: 12px 0 4px;
                border-top: 1px solid rgba(212, 175, 55, 0.1);
                margin-top: 8px;
            }
            #nav-toggle:checked+.hamburger+.main-nav {
                display: flex;
            }
            .main-nav a {
                padding: 10px 12px;
                font-size: 1rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-area {
                padding: 24px 0 40px;
            }
            .main-content h2 {
                font-size: 1.6rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .main-content .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .main-content .stats-grid {
                grid-template-columns: 1fr;
            }
            .main-content table {
                font-size: 0.8rem;
            }
            .main-content th,
            .main-content td {
                padding: 8px 10px;
            }
            .comment-form .row {
                flex-direction: column;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .text-gold {
            color: #d4af37;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 16px;
        }
