        *,
        *::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: #f8f5f0;
            color: #1e1a17;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #6b2d5b;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #a63c7e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #2c1a28;
            font-weight: 700;
        }
        h1 {
            font-size: 2.25rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.75rem;
            border-bottom: 3px solid #d4a373;
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #3d2436;
        }
        h4 {
            font-size: 1.1rem;
            color: #4e2f45;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a0f1a 0%, #2d1b2b 40%, #1f121f 100%);
            color: #f0e6d6;
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: #f0c97a;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(240, 201, 122, 0.25);
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #f5d89a;
        }
        .my-logo .logo-sub {
            display: block;
            font-size: 0.65rem;
            color: #b8a08e;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a373;
            color: #d4a373;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(212, 163, 115, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 1.25rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e6d5c0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
        }
        .nav-menu a:hover {
            color: #f0c97a;
            border-bottom-color: #f0c97a;
            text-decoration: none;
        }
        .nav-menu .nav-cta {
            background: #d4a373;
            color: #1a0f1a;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-weight: 700;
            border-bottom: none;
        }
        .nav-menu .nav-cta:hover {
            background: #e6b88a;
            color: #1a0f1a;
        }
        .breadcrumb-wrap {
            background: #efe6dc;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd0c0;
        }
        .breadcrumb-wrap .container {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        .breadcrumb-wrap a {
            color: #5a3e4a;
        }
        .breadcrumb-wrap span {
            color: #7a5e6a;
        }
        .breadcrumb-wrap .sep {
            color: #b09585;
            margin: 0 0.2rem;
        }
        .search-section {
            background: #fff9f3;
            padding: 1.5rem 0;
            border-bottom: 1px solid #e8ddd2;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            max-width: 640px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #d4c0b0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #a63c7e;
            outline: none;
        }
        .search-form button {
            background: #6b2d5b;
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #8a3a75;
            transform: scale(1.02);
        }
        .hero {
            background: linear-gradient(145deg, #2d1b28 0%, #1f121f 100%);
            color: #f0e6d6;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "✦";
            font-size: 12rem;
            position: absolute;
            right: -2rem;
            bottom: -3rem;
            color: rgba(212, 163, 115, 0.06);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #f0c97a;
            margin-top: 0;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }
        .hero .hero-tagline {
            font-size: 1.15rem;
            color: #d4c0b0;
            max-width: 700px;
            margin: 0 auto 1.5rem;
        }
        .hero .hero-meta {
            font-size: 0.85rem;
            color: #b09585;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .hero .hero-meta i {
            margin-right: 0.4rem;
        }
        .main-wrap {
            padding: 2.5rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff9f3;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #e8ddd2;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h4 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #d4a373;
            padding-bottom: 0.4rem;
            margin-bottom: 0.8rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0e6dc;
        }
        .sidebar-card li a {
            font-weight: 500;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .article-img {
            border-radius: 16px;
            margin: 1.5rem 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            width: 100%;
            background: #e8ddd2;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #7a5e6a;
            text-align: center;
            margin-top: -0.8rem;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        .highlight-box {
            background: #f0e6dc;
            border-left: 5px solid #d4a373;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #2c1a28;
        }
        .stat-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 0.75rem;
            margin: 1.2rem 0;
        }
        .stat-item {
            background: #fff9f3;
            border: 1px solid #e8ddd2;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            text-align: center;
        }
        .stat-item .num {
            font-size: 1.6rem;
            font-weight: 800;
            color: #6b2d5b;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #5a3e4a;
        }
        .interview-block {
            background: #f5ede4;
            padding: 1.5rem;
            border-radius: 16px;
            margin: 1.5rem 0;
            border: 1px solid #ddd0c0;
        }
        .interview-block .q {
            font-weight: 700;
            color: #2c1a28;
        }
        .interview-block .a {
            margin-left: 1.2rem;
            color: #3d2a22;
        }
        .btn-more {
            display: inline-block;
            background: #6b2d5b;
            color: #fff;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: background 0.3s;
        }
        .btn-more:hover {
            background: #8a3a75;
            text-decoration: none;
            color: #fff;
        }
        .feedback-section {
            background: #fff9f3;
            padding: 2rem 0;
            border-top: 2px solid #e8ddd2;
            margin-top: 2.5rem;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .feedback-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #e8ddd2;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd0c0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #a63c7e;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #6b2d5b;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #8a3a75;
        }
        .rating-stars {
            display: flex;
            gap: 0.25rem;
            font-size: 1.6rem;
            color: #d4a373;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.2s, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #b8864e;
        }
        .site-footer {
            background: #1a0f1a;
            color: #cbb8a8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f0c97a;
            margin-top: 0;
            font-size: 1.05rem;
        }
        .footer-grid a {
            color: #cbb8a8;
            display: block;
            padding: 0.2rem 0;
        }
        .footer-grid a:hover {
            color: #f0c97a;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(212, 163, 115, 0.2);
            margin: 1.5rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            color: #d4a373;
        }
        friend-link a:hover {
            color: #f0c97a;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #8a7a6a;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.75rem;
                border-top: 1px solid rgba(212, 163, 115, 0.2);
                margin-top: 0.75rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 0.4rem 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .stat-list {
                grid-template-columns: 1fr 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.35rem;
            }
            .stat-list {
                grid-template-columns: 1fr;
            }
            .hero .hero-meta {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        .text-small {
            font-size: 0.85rem;
            color: #7a5e6a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .rounded-full {
            border-radius: 999px;
        }
