* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0f12;
            color: #e4e4e7;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #c9a84c;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e6c76a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: #15181e;
            border-bottom: 2px solid #c9a84c33;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background: rgba(21, 24, 30, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #c9a84c, #f0d68a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #c9a84c22;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #c9a84c;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e4e4e7;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #c9a84c22;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            color: #c0c0c5;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        nav a:hover {
            background: #c9a84c18;
            color: #f0d68a;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
            font-size: 14px;
        }
        .breadcrumb {
            background: #1a1e26;
            padding: 12px 0;
            border-bottom: 1px solid #2a2e38;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            font-size: 14px;
            color: #888;
        }
        .breadcrumb ol li+li:before {
            content: "›";
            margin-right: 16px;
            color: #555;
        }
        .breadcrumb ol li a {
            color: #c9a84c;
        }
        .breadcrumb ol li a:hover {
            color: #f0d68a;
        }
        .breadcrumb ol li:last-child {
            color: #aaa;
        }
        .hero {
            padding: 48px 0 36px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1f2532 0%, #0d0f12 70%);
        }
        .hero h1 {
            font-size: clamp(28px, 5vw, 52px);
            font-weight: 800;
            background: linear-gradient(135deg, #f0d68a, #c9a84c, #a8852e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: clamp(16px, 2vw, 22px);
            color: #b0b0b8;
            max-width: 800px;
            margin: 0 auto 24px;
        }
        .hero .meta {
            font-size: 14px;
            color: #777;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #c9a84c;
        }
        .content {
            padding: 40px 0 60px;
        }
        .content h2 {
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 700;
            color: #f0d68a;
            border-left: 5px solid #c9a84c;
            padding-left: 20px;
            margin: 48px 0 20px;
        }
        .content h2:first-of-type {
            margin-top: 0;
        }
        .content h3 {
            font-size: clamp(20px, 2.2vw, 26px);
            font-weight: 600;
            color: #e0c87a;
            margin: 32px 0 14px;
        }
        .content h4 {
            font-size: clamp(17px, 1.6vw, 20px);
            font-weight: 600;
            color: #d4bc6a;
            margin: 24px 0 10px;
        }
        .content p {
            margin-bottom: 18px;
            color: #d0d0d6;
            font-size: 16px;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
            color: #c8c8ce;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .highlight {
            background: #1f2532;
            border-left: 4px solid #c9a84c;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content .highlight strong {
            color: #f0d68a;
        }
        .content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .content .stat-card {
            background: #1a1e26;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid #2a2e38;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(201, 168, 76, 0.12);
        }
        .content .stat-card .num {
            font-size: 32px;
            font-weight: 800;
            color: #c9a84c;
            display: block;
        }
        .content .stat-card .label {
            font-size: 14px;
            color: #999;
            margin-top: 4px;
        }
        .content .img-wrapper {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1a1e26;
            padding: 8px;
            border: 1px solid #2a2e38;
        }
        .content .img-wrapper img {
            border-radius: 8px;
        }
        .content .img-wrapper .caption {
            padding: 12px 16px;
            font-size: 14px;
            color: #888;
            text-align: center;
            font-style: italic;
        }
        .content .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 12px;
            margin: 20px 0 28px;
        }
        .content .link-list a {
            background: #1a1e26;
            padding: 14px 20px;
            border-radius: 10px;
            border: 1px solid #2a2e38;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.25s ease;
            font-weight: 500;
        }
        .content .link-list a:hover {
            background: #c9a84c12;
            border-color: #c9a84c44;
            transform: translateX(4px);
            text-decoration: none;
        }
        .content .link-list a i {
            color: #c9a84c;
            font-size: 18px;
            width: 24px;
            text-align: center;
        }
        .content .interview-box {
            background: #15181e;
            border-radius: 16px;
            padding: 28px;
            margin: 28px 0;
            border: 1px solid #2a2e38;
            position: relative;
        }
        .content .interview-box::before {
            content: "💬";
            position: absolute;
            top: -14px;
            left: 24px;
            font-size: 28px;
        }
        .content .interview-box .speaker {
            font-weight: 700;
            color: #f0d68a;
            margin-top: 12px;
        }
        .search-section {
            background: #15181e;
            border-radius: 16px;
            padding: 32px;
            margin: 40px 0;
            border: 1px solid #2a2e38;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 10px;
            border: 1px solid #2a2e38;
            background: #0d0f12;
            color: #e4e4e7;
            font-size: 16px;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #c9a84c;
        }
        .search-form button {
            padding: 14px 32px;
            background: #c9a84c;
            border: none;
            border-radius: 10px;
            color: #0d0f12;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #f0d68a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: #15181e;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #2a2e38;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 16px;
        }
        .comment-section form input,
        .comment-section form textarea,
        .rating-section form select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a2e38;
            background: #0d0f12;
            color: #e4e4e7;
            font-size: 15px;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-section form input:focus,
        .comment-section form textarea:focus,
        .rating-section form select:focus {
            outline: none;
            border-color: #c9a84c;
        }
        .comment-section form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section form button,
        .rating-section form button {
            padding: 12px 28px;
            background: #c9a84c;
            border: none;
            border-radius: 10px;
            color: #0d0f12;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-section form button:hover,
        .rating-section form button:hover {
            background: #f0d68a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #555;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f0d68a;
        }
        footer {
            background: #15181e;
            border-top: 2px solid #c9a84c22;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media (max-width:768px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer h4 {
            color: #f0d68a;
            font-size: 18px;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            font-size: 14px;
            color: #999;
        }
        footer a:hover {
            color: #f0d68a;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            padding: 6px 0;
            font-size: 14px;
        }
        friend-link a i {
            margin-right: 6px;
            font-size: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #2a2e38;
            font-size: 13px;
            color: #666;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                gap: 2px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 16px;
                border-bottom: 1px solid #2a2e3822;
            }
            .header-inner {
                align-items: center;
            }
            .hero {
                padding: 28px 0 20px;
            }
            .content .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .content .link-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 16px;
            }
            .content .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .feedback-grid {
                gap: 20px;
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f12;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2e38;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #c9a84c44;
        }
