        *,
        *::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, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e94560;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            font-weight: 700;
            color: #0f3460;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f5c518, #e94560);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            letter-spacing: 0.5px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.25rem;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #e0e0e0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            color: #f5c518;
            border-bottom-color: #f5c518;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 2px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: 0.3s;
        }
        .breadcrumb-wrap {
            background: #e8ecf4;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d0d6e8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #888;
        }
        .breadcrumb a {
            color: #0f3460;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #e94560;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 400;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .hero-section {
            margin-bottom: 2.8rem;
        }
        .hero-section h1 {
            font-size: 2.6rem;
            margin-bottom: 0.6rem;
            color: #0f3460;
            line-height: 1.2;
        }
        .hero-section h1 i {
            color: #e94560;
            margin-right: 10px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 1.2rem;
            border-bottom: 1px solid #dce2f0;
            padding-bottom: 1rem;
        }
        .hero-meta span i {
            margin-right: 6px;
            color: #e94560;
        }
        .hero-img {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            margin: 1.5rem 0;
        }
        .hero-img img {
            width: 100%;
            object-fit: cover;
        }
        section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #e94560;
            display: inline-block;
        }
        h2 i {
            color: #e94560;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.6rem 0 0.8rem;
            color: #16213e;
        }
        h3 i {
            color: #f5c518;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.5rem;
            color: #1a1a2e;
        }
        p {
            margin-bottom: 1rem;
        }
        .highlight-box {
            background: #f0f4ff;
            border-left: 5px solid #e94560;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #0f3460;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.2rem 1rem;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f9;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .stat-card .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #e94560;
            display: block;
        }
        .stat-card .stat-label {
            font-size: 0.9rem;
            color: #555;
            margin-top: 4px;
        }
        .inline-link {
            color: #e94560;
            font-weight: 600;
            border-bottom: 1px dashed #e94560;
        }
        .inline-link:hover {
            color: #0f3460;
            border-bottom-style: solid;
        }
        .link-list-ref {
            background: #f8faff;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #dfe6f5;
        }
        .link-list-ref ul {
            columns: 2;
            column-gap: 2rem;
            list-style: none;
            padding: 0;
        }
        .link-list-ref ul li {
            margin-bottom: 0.4rem;
            break-inside: avoid;
        }
        .link-list-ref ul li a {
            color: #0f3460;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .link-list-ref ul li a:hover {
            color: #e94560;
        }
        .link-list-ref ul li a i {
            font-size: 0.7rem;
            color: #e94560;
        }
        .interview-block {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eaf0fa;
            margin: 1.8rem 0;
        }
        .interview-block .interviewee {
            font-weight: 700;
            color: #0f3460;
            font-size: 1.1rem;
        }
        .interview-block .interviewee i {
            color: #f5c518;
            margin-right: 8px;
        }
        .interview-block q {
            font-style: italic;
            color: #333;
            display: block;
            padding: 0.6rem 0 0.6rem 1.2rem;
            border-left: 3px solid #e94560;
            margin: 0.5rem 0;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .card-form {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eaf0fa;
        }
        .card-form h3 {
            margin-top: 0;
            border-bottom: 2px solid #f0f4ff;
            padding-bottom: 0.6rem;
        }
        .card-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            padding: 0.7rem 1rem;
            border: 1px solid #d0d6e8;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fafcff;
            transition: 0.2s;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            outline: none;
            border-color: #e94560;
            box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
        }
        .card-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card-form .btn-submit {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 0.8rem 1.6rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .card-form .btn-submit:hover {
            background: #0f3460;
            transform: scale(1.02);
        }
        .card-form .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #ccc;
            cursor: pointer;
            direction: rtl;
        }
        .card-form .rating-stars input {
            display: none;
        }
        .card-form .rating-stars label {
            cursor: pointer;
            transition: 0.15s;
        }
        .card-form .rating-stars label:hover,
        .card-form .rating-stars label:hover~label,
        .card-form .rating-stars input:checked~label {
            color: #f5c518;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 480px;
            margin: 1.2rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 1px solid #d0d6e8;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
        }
        .search-form button {
            background: #0f3460;
            color: #fff;
            border: none;
            padding: 0 1.4rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #e94560;
        }
        .site-footer {
            background: #0f3460;
            color: #ddd;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f5c518;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #bbb;
        }
        .footer-inner a:hover {
            color: #f5c518;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.3rem;
        }
        friend-link {
            display: block;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3f6a;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #f5c518;
            font-weight: 500;
            margin: 0 0.5rem 0 0;
        }
        friend-link a:hover {
            color: #fff;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #2a3f6a;
            font-size: 0.85rem;
            color: #99aac9;
        }
        .copyright strong {
            color: #ddd;
        }
        @media (max-width: 900px) {
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                background: #1a1a2e;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                padding: 1.2rem 1.5rem;
                border-radius: 0 0 16px 16px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
                gap: 0.6rem;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .hero-section h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .link-list-ref ul {
                columns: 1;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .hero-section h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .card-form {
                padding: 1.2rem;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .text-accent {
            color: #e94560;
        }
        .text-gold {
            color: #f5c518;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .mb-1 {
            margin-bottom: 0.75rem;
        }
        .fw-700 {
            font-weight: 700;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-like {
            background: none;
            border: 1px solid #d0d6e8;
            border-radius: 30px;
            padding: 0.4rem 1rem;
            cursor: pointer;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .btn-like:hover {
            background: #e94560;
            color: #fff;
            border-color: #e94560;
        }
