        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #faf7f2;
            color: #1e2a3a;
            line-height: 1.8;
            padding-top: 70px;
        }
        a {
            color: #b85c2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3e1a;
            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: #1e2a3a;
            color: #fff;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            padding: 0 20px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f9d342;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            cursor: pointer;
        }
        .my-logo i {
            color: #f9d342;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            color: #ffe270;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #ccc;
            display: block;
            line-height: 1;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .main-nav a {
            color: #eee;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(249, 211, 66, 0.2);
            color: #f9d342;
            text-decoration: none;
        }
        .nav-search-btn {
            background: none;
            border: 1px solid #555;
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.2s;
        }
        .nav-search-btn:hover {
            background: #f9d342;
            color: #1e2a3a;
            border-color: #f9d342;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f9d342;
            border-radius: 3px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            background: #fff7ec;
            padding: 12px 20px;
            border-radius: 10px;
            margin: 20px 0 10px;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .breadcrumb a {
            color: #b85c2b;
        }
        .breadcrumb span {
            color: #888;
        }
        .breadcrumb .current {
            color: #1e2a3a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1e2a3a 0%, #2d3f55 100%);
            color: #fff;
            padding: 50px 20px 40px;
            border-radius: 16px;
            margin: 20px 0 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚡";
            font-size: 8rem;
            position: absolute;
            right: -20px;
            bottom: -30px;
            opacity: 0.08;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f9d342;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 20px;
            opacity: 0.9;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: center;
            font-size: 0.9rem;
            color: #ddd;
        }
        .hero .meta-badge i {
            color: #f9d342;
            margin-right: 6px;
        }
        section {
            margin-bottom: 40px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e2a3a;
            border-left: 6px solid #f9d342;
            padding-left: 18px;
            margin: 40px 0 20px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3f55;
            margin: 30px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3e5770;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            color: #2c3e50;
        }
        .highlight-box {
            background: #fff7ec;
            border-left: 5px solid #f9d342;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #b85c2b;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 20px 0;
        }
        .card {
            background: #fff;
            border-radius: 14px;
            padding: 24px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .card i {
            color: #f9d342;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .card h4 {
            margin-top: 0;
        }
        .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 30px 0;
        }
        .stat-item {
            background: #1e2a3a;
            color: #fff;
            padding: 20px 30px;
            border-radius: 12px;
            min-width: 150px;
            text-align: center;
            flex: 1 1 140px;
        }
        .stat-item .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f9d342;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .interview-box {
            background: #f0ebe3;
            border-radius: 16px;
            padding: 28px;
            margin: 24px 0;
            position: relative;
        }
        .interview-box::before {
            content: "💬";
            font-size: 2.4rem;
            position: absolute;
            top: -12px;
            left: 20px;
        }
        .interview-box blockquote {
            font-style: italic;
            font-size: 1.05rem;
            padding: 10px 0 10px 30px;
            border-left: 4px solid #b85c2b;
            margin: 12px 0;
            color: #2c3e50;
        }
        .interview-box .attribution {
            font-weight: 600;
            color: #b85c2b;
            text-align: right;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
            background: #e8e0d6;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #d5cdc0;
        }
        .featured-image figcaption {
            padding: 12px 16px 6px;
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            font-style: italic;
        }
        .search-section {
            background: #fff7ec;
            padding: 30px 24px;
            border-radius: 14px;
            margin: 30px 0;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 600px;
            margin: 12px 0 0;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f9d342;
        }
        .search-section button {
            background: #b85c2b;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-section button:hover {
            background: #7a3e1a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            padding: 28px;
            border-radius: 14px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 14px;
        }
        .comment-section textarea {
            padding: 14px;
            border: 2px solid #e0d8ce;
            border-radius: 10px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .comment-section textarea:focus {
            border-color: #f9d342;
        }
        .comment-section input[type="text"] {
            padding: 12px 16px;
            border: 2px solid #e0d8ce;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .comment-section input[type="text"]:focus {
            border-color: #f9d342;
        }
        .comment-section button,
        .rating-section button {
            background: #1e2a3a;
            color: #fff;
            border: none;
            padding: 14px 24px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #b85c2b;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f9d342;
        }
        .link-collection {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .link-collection a {
            background: #fff;
            padding: 12px 18px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid #eee;
        }
        .link-collection a:hover {
            background: #f9d342;
            color: #1e2a3a;
            text-decoration: none;
            border-color: #f9d342;
            box-shadow: 0 6px 16px rgba(249, 211, 66, 0.25);
        }
        .link-collection a i {
            color: #b85c2b;
            font-size: 1rem;
        }
        .site-footer {
            background: #1e2a3a;
            color: #ddd;
            padding: 40px 20px 20px;
            margin-top: 50px;
            border-radius: 20px 20px 0 0;
        }
        .site-footer .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-flex {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .site-footer h4 {
            color: #f9d342;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #bbb;
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #f9d342;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 18px 20px;
            border-radius: 10px;
            margin: 20px 0 10px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #bbb;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f9d342;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #999;
        }
        .copyright strong {
            color: #f9d342;
        }
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }
            .site-header {
                height: 60px;
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                display: none;
            }
            .main-nav {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: #1e2a3a;
                flex-direction: column;
                padding: 20px 16px 30px;
                gap: 8px;
                transform: translateY(-120%);
                transition: transform 0.35s ease;
                border-bottom: 3px solid #f9d342;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
                z-index: 999;
                align-items: stretch;
            }
            .main-nav.open {
                transform: translateY(0);
            }
            .main-nav a {
                font-size: 1rem;
                padding: 10px 12px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .nav-search-btn {
                margin-top: 8px;
                text-align: center;
                padding: 12px;
            }
            .hamburger {
                display: flex;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .hero .meta-badge {
                font-size: 0.8rem;
                gap: 10px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-flex {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 10px 14px;
            }
            .stat-item .num {
                font-size: 1.8rem;
            }
            .link-collection {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .link-collection {
                grid-template-columns: 1fr;
            }
            .search-section input[type="text"] {
                min-width: 100%;
            }
            .search-section form {
                flex-direction: column;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f9d342;
            color: #1e2a3a;
            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: all 0.2s;
            cursor: pointer;
            border: none;
            z-index: 500;
        }
        .scroll-top:hover {
            background: #ffe270;
            transform: translateY(-4px);
        }
