        *,
        *::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, sans-serif;
            background: #0c0e12;
            color: #e4e6ea;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f7fa;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid #2a2e38;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.75rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem;
            color: #d4d8e0;
        }
        p {
            margin: 0 0 1.25rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #141820;
            border-bottom: 2px solid #2a2e38;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            transition: background 0.3s;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0c040;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f0c040, #d9a020);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 12px rgba(240, 192, 64, 0.15);
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3a3f4a;
            color: #e4e6ea;
            font-size: 1.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #22262e;
        }
        .main-nav {
            display: flex;
            gap: 0.25rem 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #c8ccd4;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a1e26;
            padding: 0.6rem 1.25rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #262b35;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #9aa2b0;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb span {
            color: #6a7280;
            margin: 0 0.2rem;
        }
        .hero {
            background: linear-gradient(145deg, #1a1e2a, #0f121a);
            padding: 2.5rem 1.25rem;
            border-radius: 14px;
            margin: 2rem 0 1.5rem;
            text-align: center;
            border: 1px solid #2a2f3c;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🐉";
            font-size: 8rem;
            position: absolute;
            right: -1rem;
            bottom: -1.5rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            margin-bottom: 0.5rem;
        }
        .hero .tagline {
            font-size: 1.1rem;
            color: #b0b8c8;
            max-width: 680px;
            margin: 0 auto 1rem;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #7a8290;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }
        .hero .meta i {
            margin-right: 0.35rem;
            color: #f0c040;
        }
        .content-area {
            padding: 0.5rem 0 2rem;
        }
        .content-area .container {
            max-width: 800px;
        }
        .featured-image {
            border-radius: 12px;
            margin: 1.8rem 0 2.2rem;
            border: 1px solid #2a2f3c;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .highlight-box {
            background: #1a1f2b;
            border-left: 4px solid #f0c040;
            padding: 1.2rem 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #f0c040;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #181c26;
            padding: 1.2rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a2e38;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f0c040;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #9aa2b0;
            margin-top: 0.2rem;
        }
        .interview-block {
            background: #1a1f2b;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.8rem 0;
            border: 1px solid #2a2f3c;
        }
        .interview-block .speaker {
            color: #f0c040;
            font-weight: 600;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            padding: 0.6rem 0 0.2rem;
            list-style: none;
        }
        .link-list-inline li a {
            background: #1a1f2b;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #2a2f3c;
            transition: background 0.2s;
        }
        .link-list-inline li a:hover {
            background: #2a2f3c;
            text-decoration: none;
        }
        .search-section {
            background: #1a1e26;
            padding: 2rem 1.5rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 1px solid #2a2f3c;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            max-width: 560px;
            margin: 0.5rem 0 0;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3f4a;
            background: #0f121a;
            color: #e4e6ea;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input:focus {
            border-color: #f0c040;
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #f0c040;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            color: #0c0e12;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        @media(max-width:680px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #1a1e26;
            padding: 1.5rem 1.5rem 1.8rem;
            border-radius: 12px;
            border: 1px solid #2a2f3c;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }
        .feedback-card textarea,
        .feedback-card input {
            padding: 0.65rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3f4a;
            background: #0f121a;
            color: #e4e6ea;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f0c040;
        }
        .feedback-card textarea {
            min-height: 80px;
        }
        .feedback-card button {
            padding: 0.65rem 1.4rem;
            background: #f0c040;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            color: #0c0e12;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffd966;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.25rem;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #3a3f4a;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c040;
        }
        .site-footer {
            background: #141820;
            border-top: 2px solid #2a2e38;
            padding: 2rem 1.25rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem 2rem;
        }
        @media(max-width:560px) {
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
        }
        .copyright {
            grid-column: 1 / -1;
            font-size: 0.85rem;
            color: #6a7280;
            border-top: 1px solid #22262e;
            padding-top: 1.2rem;
            margin-top: 0.5rem;
            text-align: center;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.2rem 0;
                padding: 0.75rem 0 0.25rem;
                border-top: 1px solid #2a2e38;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                border-bottom: 1px solid #1e222a;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero::after {
                font-size: 4rem;
                right: 0.5rem;
                bottom: -0.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media(max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero .meta {
                flex-direction: column;
                gap: 0.2rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #8a92a0;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            align-items: center;
        }
        .fa-fw {
            width: 1.15em;
        }
        .updated-badge {
            display: inline-block;
            background: #2a2e38;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #c8ccd4;
        }
