        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #0b0e17;
            color: #e8edf5;
            line-height: 1.8;
            min-height: 100vh;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #ffffff;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #f5c84233;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            margin-bottom: 0.5rem;
            color: #f5c842;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1420 0%, #1a1f2f 100%);
            padding: 0.8rem 0;
            border-bottom: 2px solid #f5c84222;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c842, #f7d97a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px #f5c84222;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: #f5c842;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c84255;
            color: #f5c842;
            font-size: 1.6rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c84222;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            color: #c8d0e0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            color: #f5c842;
            border-bottom-color: #f5c842;
            text-decoration: none;
        }
        .search-box-nav {
            display: flex;
            gap: 0.3rem;
            background: #1e2438;
            border-radius: 30px;
            padding: 0.2rem 0.2rem 0.2rem 1rem;
            border: 1px solid #2a3150;
        }
        .search-box-nav input {
            background: transparent;
            border: none;
            color: #e8edf5;
            padding: 0.4rem 0;
            font-size: 0.9rem;
            outline: none;
            min-width: 140px;
        }
        .search-box-nav input::placeholder {
            color: #6a7290;
        }
        .search-box-nav button {
            background: #f5c842;
            border: none;
            color: #0b0e17;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box-nav button:hover {
            background: #ffdd77;
        }
        .breadcrumb {
            padding: 1rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #8a92a8;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #f5c842aa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .sep {
            color: #4a5268;
        }
        .main-content {
            padding: 2rem 0 4rem;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            font-size: 0.9rem;
            color: #9aa2b8;
            margin-bottom: 2rem;
            padding: 0.8rem 1.2rem;
            background: #121926;
            border-radius: 12px;
            border: 1px solid #1e2a3a;
        }
        .article-meta i {
            margin-right: 0.4rem;
            color: #f5c842;
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.7);
        }
        .featured-image img {
            width: 100%;
            aspect-ratio: 1200/630;
            object-fit: cover;
            background: #1a2035;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #8a92a8;
            padding: 0.6rem 1rem;
            background: #0f1420;
            border-radius: 0 0 12px 12px;
            text-align: center;
        }
        .content-section {
            background: #0f1420;
            border-radius: 20px;
            padding: 2.5rem 2.8rem;
            border: 1px solid #1e2a3a;
            margin-bottom: 2.5rem;
        }
        @media(max-width:768px) {
            .content-section {
                padding: 1.5rem 1.2rem;
            }
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a2035, #0f1420);
            border-left: 4px solid #f5c842;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.5rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #121926;
            padding: 1.4rem 1rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #1e2a3a;
            transition: 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f5c84255;
            box-shadow: 0 12px 30px -8px #00000066;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5c842;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #9aa2b8;
            margin-top: 0.3rem;
        }
        .interview-box {
            background: #121926;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a3150;
            position: relative;
        }
        .interview-box::before {
            content: '\201C';
            font-size: 5rem;
            position: absolute;
            top: -0.5rem;
            left: 1rem;
            color: #f5c84222;
            font-family: Georgia, serif;
        }
        .interview-box .interviewee {
            font-weight: 600;
            color: #f5c842;
            margin-top: 0.8rem;
        }
        .btn-primary {
            display: inline-block;
            background: #f5c842;
            color: #0b0e17;
            font-weight: 700;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            border: none;
            cursor: pointer;
            transition: 0.25s;
            font-size: 1rem;
        }
        .btn-primary:hover {
            background: #ffdd77;
            transform: scale(1.02);
            text-decoration: none;
            color: #0b0e17;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 1rem;
        }
        @media(max-width:700px) {
            .interaction-area {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .card-form {
            background: #121926;
            padding: 1.8rem 2rem;
            border-radius: 16px;
            border: 1px solid #1e2a3a;
        }
        .card-form h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 1px solid #1e2a3a;
            padding-bottom: 0.6rem;
        }
        .card-form label {
            display: block;
            font-size: 0.9rem;
            color: #b8c0d8;
            margin: 1rem 0 0.3rem;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            background: #0b0e17;
            border: 1px solid #2a3150;
            border-radius: 10px;
            padding: 0.7rem 1rem;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: 0.2s;
            font-family: inherit;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            border-color: #f5c842;
            outline: none;
            box-shadow: 0 0 0 3px #f5c84222;
        }
        .card-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card-form .btn-primary {
            margin-top: 1.2rem;
            width: 100%;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.5rem 0 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a4058;
            cursor: pointer;
            transition: 0.2s;
            margin: 0;
            line-height: 1;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.5rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
        }
        friend-link li {
            margin: 0;
        }
        friend-link a {
            color: #f5c842aa;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        .site-footer {
            background: #0a0d16;
            border-top: 2px solid #1e2a3a;
            padding: 2.5rem 0 1.8rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.2rem;
        }
        .copyright {
            color: #6a7290;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #f5c842aa;
        }
        .copyright a:hover {
            color: #f5c842;
        }
        @media(max-width:768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.5rem;
                gap: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                border-bottom: 1px solid #1e2a3a;
            }
            .search-box-nav {
                width: 100%;
                margin-top: 0.4rem;
            }
            .search-box-nav input {
                flex: 1;
                min-width: 0;
            }
            .content-section {
                padding: 1.2rem 1rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interview-box {
                padding: 1.2rem 1.2rem;
            }
            .header-inner {
                gap: 0.5rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media(max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3150;
            border-radius: 12px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4568;
        }
        .text-gold {
            color: #f5c842;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
