        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f4f7fb;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #0a6e4f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #064e3b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 1.2rem 1.8rem 2rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.4rem;
            }
            .container {
                padding: 0.8rem 0.8rem 1.5rem;
                border-radius: 16px;
            }
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.6rem;
            border-bottom: 2px solid #e9edf2;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #0f6b4a, #1a9e6f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #0f6b4a;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #475569;
            letter-spacing: 0.2px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 1.4rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-list a {
            font-weight: 500;
            color: #1e293b;
            padding: 0.2rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-list a:hover {
            border-bottom-color: #0a6e4f;
            color: #0a6e4f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #1e293b;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e9edf2;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.6rem;
                padding: 1rem 0 0.6rem;
                border-top: 1px solid #e9edf2;
                margin-top: 0.6rem;
            }
            .nav-list.open {
                display: flex;
            }
            .header {
                flex-wrap: wrap;
            }
            .nav-wrap {
                width: auto;
            }
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #0a6e4f;
        }
        .breadcrumb span {
            color: #94a3b8;
        }
        .search-section {
            margin: 1.2rem 0 1.8rem;
            display: flex;
            justify-content: center;
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 560px;
            background: #f1f5f9;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #dce2ea;
            transition: box-shadow 0.2s;
        }
        .search-form:focus-within {
            box-shadow: 0 0 0 3px rgba(10, 110, 79, 0.2);
            border-color: #0a6e4f;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            background: transparent;
            font-size: 0.95rem;
            outline: none;
            color: #1e293b;
        }
        .search-form button {
            background: #0a6e4f;
            color: white;
            border: none;
            padding: 0 1.6rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #064e3b;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 0.6rem;
            color: #0c2d25;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.4rem 0 0.8rem;
            color: #0f3b2e;
            padding-bottom: 0.3rem;
            border-bottom: 3px solid #d4e2dc;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 1.8rem 0 0.6rem;
            color: #1a4a3a;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.4rem 0 0.4rem;
            color: #2d5a48;
        }
        p {
            margin: 0.8rem 0;
            color: #1e293b;
        }
        .content-area {
            margin: 1.2rem 0 2rem;
        }
        .content-area ul,
        .content-area ol {
            margin: 0.8rem 0 0.8rem 1.8rem;
        }
        .content-area li {
            margin: 0.4rem 0;
        }
        .highlight-box {
            background: #eaf6f1;
            border-left: 5px solid #0a6e4f;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.4rem 0;
        }
        .stat-badge {
            display: inline-block;
            background: #0a6e4f;
            color: white;
            padding: 0.1rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .insight-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.4rem 1.6rem;
            margin: 1.2rem 0;
            border: 1px solid #e2e8f0;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .insight-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .hero-image-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            background: #e2e8f0;
            text-align: center;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-image-wrap figcaption {
            padding: 0.7rem 1rem;
            font-size: 0.85rem;
            color: #475569;
            background: #f1f5f9;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.8rem 0 1.8rem;
        }
        @media (max-width: 700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .comment-box,
        .score-box {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #e2e8f0;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #dce2ea;
            padding-bottom: 0.5rem;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .comment-box input,
        .comment-box textarea,
        .score-box select,
        .score-box button {
            padding: 0.7rem 1rem;
            border: 1px solid #d1d9e4;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: white;
            transition: border-color 0.2s;
        }
        .comment-box input:focus,
        .comment-box textarea:focus,
        .score-box select:focus {
            border-color: #0a6e4f;
            outline: none;
            box-shadow: 0 0 0 3px rgba(10, 110, 79, 0.12);
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            background: #0a6e4f;
            color: white;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
        }
        .btn-primary:hover {
            background: #064e3b;
            transform: scale(1.01);
        }
        .score-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #f59e0b;
            margin: 0.2rem 0;
        }
        .score-stars i {
            cursor: pointer;
            transition: transform 0.1s;
        }
        .score-stars i:hover {
            transform: scale(1.15);
        }
        friend-link {
            display: block;
            padding: 1.6rem 0 0.8rem;
            border-top: 2px solid #e9edf2;
            margin-top: 2rem;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.6rem;
            color: #0c2d25;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            list-style: none;
            padding: 0;
        }
        .friend-list a {
            color: #0a6e4f;
            font-weight: 500;
        }
        .footer {
            padding: 1.6rem 0 0.8rem;
            border-top: 1px solid #e2e8f0;
            margin-top: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.9rem;
            color: #475569;
        }
        .footer .copyright {
            font-weight: 400;
        }
        .footer .copyright strong {
            color: #0c2d25;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .container {
                padding: 0.5rem 0.6rem 1rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #0a6e4f;
            color: white;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            border: none;
            z-index: 99;
        }
        .scroll-top:hover {
            background: #064e3b;
            transform: translateY(-4px);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        .skill-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
        }
        .skill-table th {
            background: #0a6e4f;
            color: white;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .skill-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e2e8f0;
            background: #fafcfe;
        }
        .skill-table tr:last-child td {
            border-bottom: none;
        }
        .skill-table tr:hover td {
            background: #edf7f3;
        }
        @media (max-width: 600px) {
            .skill-table {
                font-size: 0.8rem;
            }
            .skill-table th,
            .skill-table td {
                padding: 0.4rem 0.5rem;
            }
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin: 0.4rem 0 0.2rem;
        }
        .rating-display .stars-outer {
            position: relative;
            display: inline-block;
            font-size: 1.2rem;
            color: #d1d9e4;
        }
        .rating-display .stars-inner {
            position: absolute;
            top: 0;
            left: 0;
            white-space: nowrap;
            overflow: hidden;
            color: #f59e0b;
        }
        .rating-value {
            font-weight: 700;
            color: #0c2d25;
        }
