* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdf7e;
            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, #141a24, #1a212e);
            border-bottom: 2px solid #2c3a4e;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 200, 66, 0.15);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c842;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8edf2;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2c3a4e;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8d2dc;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #2c3a4e;
            color: #f5c842;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f5c84222;
            color: #f5c842;
            border: 1px solid #f5c84244;
        }
        .breadcrumb {
            padding: 12px 0 4px 0;
            font-size: 0.9rem;
            color: #8899aa;
        }
        .breadcrumb a {
            color: #8899aa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            margin: 0 6px;
        }
        .content-wrapper {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 24px 0 16px;
            background: linear-gradient(135deg, #f5c842, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2c3a4e;
            color: #f0d080;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e0c070;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #d0b060;
        }
        p {
            margin: 0 0 18px 0;
            color: #d0d8e0;
        }
        .highlight {
            background: #f5c84218;
            border-left: 4px solid #f5c842;
            padding: 14px 20px;
            border-radius: 0 8px 8px 0;
            margin: 24px 0;
        }
        .highlight strong {
            color: #f5c842;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #1a212e;
            padding: 20px 16px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2c3a4e;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f5c84266;
        }
        .stat-card .value {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c842;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #8899aa;
            margin-top: 4px;
        }
        .drop-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
        }
        .drop-table th {
            background: #1a212e;
            color: #f5c842;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 2px solid #2c3a4e;
        }
        .drop-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #1a212e;
            color: #c8d2dc;
        }
        .drop-table tr:hover td {
            background: #1a212e66;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            background: #141a24;
            padding: 8px;
            border: 1px solid #2c3a4e;
        }
        .img-wrapper figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #8899aa;
            text-align: center;
            font-style: italic;
        }
        .interview-box {
            background: #141a24;
            border: 1px solid #2c3a4e;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 32px 0;
            position: relative;
        }
        .interview-box::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: -14px;
            left: 20px;
            background: #0b0e14;
            padding: 0 8px;
        }
        .interview-box .speaker {
            color: #f5c842;
            font-weight: 600;
        }
        .interview-box .quote {
            font-style: italic;
            color: #d0d8e0;
            margin: 8px 0;
        }
        .btn {
            display: inline-block;
            background: #f5c842;
            color: #0b0e14;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.2s, transform 0.1s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #ffdf7e;
            transform: scale(1.02);
            text-decoration: none;
            color: #0b0e14;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c842;
            color: #f5c842;
        }
        .btn-outline:hover {
            background: #f5c84222;
        }
        .form-card {
            background: #141a24;
            border: 1px solid #2c3a4e;
            border-radius: 12px;
            padding: 28px 32px;
            margin: 32px 0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: #c8d2dc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #0b0e14;
            border: 1px solid #2c3a4e;
            border-radius: 8px;
            color: #e8edf2;
            font-size: 1rem;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f5c842;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #3a4a5a;
            transition: color 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c842;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 500px;
            margin: 16px 0;
        }
        .search-box input {
            flex: 1;
            padding: 12px 16px;
            background: #0b0e14;
            border: 1px solid #2c3a4e;
            border-radius: 8px;
            color: #e8edf2;
            font-size: 1rem;
        }
        .search-box input:focus {
            border-color: #f5c842;
            outline: none;
        }
        .site-footer {
            background: #0d1119;
            border-top: 2px solid #1a212e;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
        }
        .footer-col h4 {
            color: #f5c842;
            margin-bottom: 16px;
            font-size: 1.1rem;
            border-bottom: 1px solid #2c3a4e;
            padding-bottom: 8px;
        }
        .footer-col a {
            display: block;
            padding: 4px 0;
            color: #8899aa;
            font-size: 0.95rem;
        }
        .footer-col a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #8899aa;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        .copyright {
            text-align: center;
            padding: 24px 0 8px;
            color: #556677;
            font-size: 0.9rem;
            border-top: 1px solid #1a212e;
            margin-top: 24px;
        }
        .last-updated {
            color: #8899aa;
            font-size: 0.9rem;
            margin: 8px 0 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #f5c842;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .header-inner {
                gap: 8px;
            }
            .form-card {
                padding: 20px;
            }
            .interview-box {
                padding: 20px;
            }
            .drop-table {
                font-size: 0.85rem;
            }
            .drop-table th,
            .drop-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
        }
        .tag {
            display: inline-block;
            background: #1a212e;
            color: #8899aa;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin: 2px 4px 2px 0;
        }
        .tag:hover {
            background: #2c3a4e;
            color: #f5c842;
            text-decoration: none;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid #1a212e;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-meta {
            font-size: 0.85rem;
            color: #8899aa;
        }
        .comment-meta strong {
            color: #f5c842;
        }
