* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f5f7fa;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 16px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            overflow: hidden;
            padding: 20px 24px 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #eef2f7;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #6c7a8d;
            background: none;
            color: #6c7a8d;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #2c3e50;
            background: none;
            border: none;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0f2f5;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: center;
        }
        .nav-menu a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #f5576c;
            color: #fff;
            box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
        }
        .breadcrumb {
            width: 100%;
            padding: 10px 0 4px;
            font-size: 0.85rem;
            color: #6c7a8d;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #4facfe;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8a9bb5;
        }
        .search-wrap {
            display: flex;
            max-width: 320px;
            width: 100%;
            border: 1px solid #e0e6ed;
            border-radius: 40px;
            overflow: hidden;
            background: #f9fafc;
            transition: box-shadow 0.2s;
        }
        .search-wrap:focus-within {
            box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
            border-color: #4facfe;
        }
        .search-wrap input {
            flex: 1;
            border: none;
            padding: 10px 18px;
            font-size: 0.9rem;
            background: transparent;
            outline: none;
            min-width: 0;
        }
        .search-wrap button {
            background: #4facfe;
            border: none;
            color: #fff;
            padding: 0 18px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .search-wrap button:hover {
            background: #3d8bcd;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 28px 0 16px;
            background: linear-gradient(135deg, #1e2a3a, #f5576c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 14px;
            color: #1e2a3a;
            border-left: 6px solid #f5576c;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 28px 0 10px;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #3d4e62;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.02rem;
            color: #2d3e4f;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-size: 0.9rem;
            color: #6c7a8d;
            padding: 8px 0 16px;
            border-bottom: 1px solid #eef2f7;
            margin-bottom: 20px;
        }
        .meta-info i {
            margin-right: 6px;
            color: #f5576c;
        }
        .featured-img {
            width: 100%;
            border-radius: 20px;
            margin: 20px 0 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        .featured-img:hover {
            transform: scale(1.01);
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: linear-gradient(135deg, #f5576c, #ff6f91);
            color: #fff;
            box-shadow: 0 4px 16px rgba(245, 87, 108, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 87, 108, 0.4);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #4facfe;
            color: #4facfe;
        }
        .btn-outline:hover {
            background: #4facfe;
            color: #fff;
        }
        .link-list {
            background: #f8fafd;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0;
            border-left: 4px solid #f5576c;
        }
        .link-list a {
            display: inline-block;
            margin: 4px 8px 4px 0;
            color: #4facfe;
            text-decoration: none;
            font-weight: 500;
            padding: 2px 6px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .link-list a:hover {
            background: #eef5ff;
            text-decoration: underline;
        }
        .interview-box {
            background: #f0f4fe;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 6px solid #4facfe;
            position: relative;
        }
        .interview-box::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: -12px;
            left: 20px;
            background: #fff;
            padding: 0 8px;
            border-radius: 12px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f2f5f9);
            padding: 20px 16px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f7;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5576c;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #6c7a8d;
            margin-top: 4px;
        }
        .comment-box,
        .score-box {
            background: #f9fafc;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #eef2f7;
        }
        .comment-box textarea,
        .comment-box input,
        .score-box select,
        .score-box input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #dce3ec;
            border-radius: 12px;
            font-size: 0.95rem;
            margin-bottom: 12px;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-box textarea:focus,
        .comment-box input:focus,
        .score-box select:focus {
            border-color: #4facfe;
            box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .score-box .star-wrap {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #dce3ec;
            cursor: pointer;
            margin-bottom: 12px;
        }
        .score-box .star-wrap .fas.fa-star {
            color: #f7b731;
        }
        .score-box .star-wrap .far.fa-star {
            color: #dce3ec;
        }
        footer {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #eef2f7;
            font-size: 0.9rem;
            color: #6c7a8d;
        }
        footer .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 16px 0 20px;
            border-bottom: 1px solid #eef2f7;
            margin-bottom: 16px;
        }
        footer .friend-links a {
            color: #4facfe;
            text-decoration: none;
            font-weight: 500;
        }
        footer .friend-links a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 16px 0 8px;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #4facfe;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 30px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 8px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 8px 16px;
                border-radius: 12px;
            }
            .search-wrap {
                max-width: 100%;
                margin-top: 8px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
                gap: 10px;
            }
            .stat-card .num {
                font-size: 1.6rem;
            }
            .interview-box {
                padding: 18px 16px;
            }
            .comment-box,
            .score-box {
                padding: 16px 14px;
            }
            .link-list {
                padding: 14px 16px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 8px 10px 24px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .meta-info {
                font-size: 0.78rem;
                gap: 6px 12px;
            }
        }
        :target {
            scroll-margin-top: 80px;
        }
        .text-accent {
            color: #f5576c;
        }
        .text-blue {
            color: #4facfe;
        }
        .fw-bold {
            font-weight: 700;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .emoji-lg {
            font-size: 1.6rem;
        }
