* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f3ef;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #b45309;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover {
            color: #7c2d12;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #b45309;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fbbf24;
            text-decoration: none;
            font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
            text-shadow: 0 2px 8px rgba(251,191,36,0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #fcd34d;
        }
        .my-logo span {
            color: #f97316;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #e7e5e4;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.25s;
            display: block;
        }
        .nav-list li a:hover {
            background: #b45309;
            color: #fff;
            border-color: #b45309;
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fbbf24;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 12px;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #f97316;
        }
        .breadcrumb {
            background: #eae7e0;
            padding: 12px 0;
            font-size: 13px;
            border-bottom: 1px solid #d6d0c8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 8px;
            color: #8a7f72;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7c2d12;
        }
        .breadcrumb .current {
            color: #4a3f35;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #b45309;
            margin-right: 12px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e1b2e;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 6px solid #b45309;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d2a24;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d352c;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
        }
        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            color: #6b5f53;
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-bottom: 2px dashed #d6d0c8;
        }
        .post-meta i {
            margin-right: 6px;
            color: #b45309;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        .featured-image figcaption {
            font-size: 13px;
            color: #6b5f53;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        .insight-box {
            background: #fef9ec;
            border-left: 6px solid #b45309;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .insight-box i {
            color: #b45309;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            padding: 20px 16px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            text-align: center;
            border-top: 4px solid #b45309;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a1a2e;
            display: block;
        }
        .stat-card .label {
            font-size: 14px;
            color: #6b5f53;
            font-weight: 500;
        }
        .interview {
            background: #f0ede8;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 28px 0;
            border: 1px solid #ddd6cc;
        }
        .interview .speaker {
            font-weight: 700;
            color: #1a1a2e;
        }
        .interview .speaker i {
            color: #b45309;
            margin-right: 8px;
        }
        .search-section {
            background: #eae7e0;
            padding: 32px 28px;
            border-radius: 16px;
            margin: 48px 0 32px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #d6d0c8;
            border-radius: 40px;
            font-size: 16px;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #b45309;
            outline: none;
        }
        .search-form button {
            padding: 14px 32px;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #7c2d12;
            transform: scale(1.02);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 48px 0;
        }
        @media (max-width:700px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-box, .rating-box {
            background: #fff;
            padding: 28px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #e5ddd4;
        }
        .comment-box h3, .rating-box h3 {
            margin-top: 0;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #d6d0c8;
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #b45309;
            outline: none;
        }
        .comment-box input, .rating-box input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d6d0c8;
            border-radius: 40px;
            font-size: 15px;
            margin-top: 12px;
            transition: border 0.2s;
        }
        .comment-box input:focus, .rating-box input:focus {
            border-color: #b45309;
            outline: none;
        }
        .comment-box button, .rating-box button {
            margin-top: 14px;
            padding: 12px 28px;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-box button:hover, .rating-box button:hover {
            background: #7c2d12;
        }
        .star-select {
            display: flex;
            gap: 8px;
            font-size: 28px;
            color: #d6d0c8;
            margin: 12px 0;
            cursor: pointer;
        }
        .star-select i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-select i:hover,
        .star-select i.active {
            color: #f59e0b;
            transform: scale(1.1);
        }
        footer {
            background: #1a1a2e;
            color: #c4bfb8;
            padding: 40px 0 24px;
            border-top: 4px solid #b45309;
        }
        footer a {
            color: #fbbf24;
        }
        footer a:hover {
            color: #f97316;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: #fbbf24;
            margin-top: 0;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.04);
            padding: 16px 20px;
            border-radius: 12px;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #8a7f72;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                padding: 12px 0 16px;
                border-radius: 0 0 16px 16px;
                margin-top: 12px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                background: transparent;
                border: none;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 22px;
            }
            .search-form input, .search-form button {
                width: 100%;
            }
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 15px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        }
        .data-table th {
            background: #1a1a2e;
            color: #fbbf24;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #ece8e2;
        }
        .data-table tr:hover td {
            background: #fef9ec;
        }
        .data-table .highlight {
            background: #fef9ec;
            font-weight: 600;
        }
