        *,
        *::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: #f7f4f0;
            color: #1e1a17;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 28px;
            padding: 1.5rem 2rem 2rem;
            min-height: 100vh;
        }
        @media (max-width: 640px) {
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px;
            }
            body {
                padding: 0 0.5rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0 1rem;
            border-bottom: 2px solid #f0e6de;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #2d1f16;
            background: linear-gradient(145deg, #b45309, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(180, 83, 9, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45309;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list li a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #3d2e24;
            transition: background 0.2s, color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-list li a:hover {
            background: #b45309;
            color: #fff;
            text-decoration: none;
        }
        .nav-list li a i {
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2d1f16;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e6de;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 860px) {
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fffcf9;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid #f0e6de;
                margin-top: 0.75rem;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            .nav-list li a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 12px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.75rem 0 0.25rem;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #6b5a4e;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b45309;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #6b5a4e;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .hero {
            margin: 1.5rem 0 2rem;
            padding: 2.5rem 2rem;
            background: linear-gradient(135deg, #fdf6f0, #f5ebe3);
            border-radius: 24px;
            border-left: 6px solid #b45309;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            color: #2d1f16;
            margin-bottom: 0.75rem;
        }
        .hero h1 i {
            color: #b45309;
            margin-right: 0.3rem;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            color: #4a3d33;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 1.2rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #6b5a4e;
            flex-wrap: wrap;
        }
        .hero .meta-badge span i {
            margin-right: 0.3rem;
            color: #b45309;
        }
        @media (max-width: 640px) {
            .hero {
                padding: 1.5rem 1.2rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        section {
            margin: 2.5rem 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2d1f16;
            border-bottom: 3px solid #f0e6de;
            padding-bottom: 0.4rem;
            margin: 2.2rem 0 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        h2 i {
            color: #b45309;
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3d2e24;
            margin: 1.8rem 0 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        h3 i {
            color: #b45309;
            font-size: 1.3rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a3d33;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1rem;
            color: #2d241f;
        }
        .highlight {
            background: #fef3e7;
            padding: 0.15rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
            color: #7a2e0e;
        }
        .insight-box {
            background: #faf3ed;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0;
            border-left: 4px solid #b45309;
        }
        .insight-box i {
            color: #b45309;
            margin-right: 0.5rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fffcf9;
            border: 1px solid #f0e6de;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b45309;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #6b5a4e;
            margin-top: 0.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            background: #f5ebe3;
            font-size: 0.85rem;
            color: #4a3d33;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 520px;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #e0d6ce;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf9;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #b45309;
            outline: none;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            border: none;
            border-radius: 40px;
            background: #b45309;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #7a2e0e;
            transform: scale(1.02);
        }
        .comment-form,
        .score-form {
            background: #faf3ed;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 1.5rem 0;
            border: 1px solid #f0e6de;
        }
        .comment-form h3,
        .score-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #3d2e24;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0d6ce;
            border-radius: 12px;
            font-size: 1rem;
            background: #fffcf9;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #b45309;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 40px;
            background: #b45309;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover {
            background: #7a2e0e;
            transform: scale(1.02);
        }
        .score-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #d4c8be;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .score-stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .score-stars i:hover,
        .score-stars i:hover~i {
            color: #f59e0b;
            transform: scale(1.1);
        }
        .score-stars i.selected {
            color: #f59e0b;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.5rem;
            border-top: 2px solid #f0e6de;
            margin-top: 2rem;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d1f16;
            margin-bottom: 0.8rem;
        }
        .friend-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            list-style: none;
            padding: 0;
        }
        .friend-links-list li a {
            color: #6b5a4e;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        .friend-links-list li a:hover {
            background: #f0e6de;
            color: #b45309;
            text-decoration: none;
        }
        .site-footer {
            padding: 1.8rem 0 0.8rem;
            margin-top: 2rem;
            border-top: 2px solid #f0e6de;
            text-align: center;
            font-size: 0.9rem;
            color: #6b5a4e;
        }
        .site-footer .copyright {
            margin-top: 0.5rem;
            font-weight: 400;
        }
        .tag {
            display: inline-block;
            background: #f0e6de;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #4a3d33;
            margin: 0.15rem 0.2rem;
        }
        .link-list-inline {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .link-list-inline li a {
            font-weight: 500;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b45309;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s, background 0.2s;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            transform: scale(1.08);
            background: #7a2e0e;
        }
        @media (max-width: 640px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
        }
        .interview {
            background: #fcf8f5;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #ede4dc;
        }
        .interview .speaker {
            font-weight: 700;
            color: #b45309;
        }
        .interview .speaker::before {
            content: "🗣️ ";
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #f0e6de;
            padding: 0.6rem 1rem;
            text-align: left;
            font-weight: 600;
            color: #2d1f16;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #f0e6de;
        }
        .data-table tr:hover td {
            background: #faf3ed;
        }
        @media (max-width: 600px) {
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
        }
        .last-update {
            display: inline-block;
            background: #f0e6de;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #4a3d33;
            margin: 0.5rem 0 1rem;
        }
        .last-update i {
            margin-right: 0.3rem;
            color: #b45309;
        }
