        *,
        *::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, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f5f7fb;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #c23152;
            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: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #e94560;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f5a623, #e94560);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(233, 69, 96, 0.2);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
            color: rgba(255, 255, 255, 0.6);
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f0f0f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(233, 69, 96, 0.2);
            border-color: #e94560;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e6e9f0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: #555;
        }
        .breadcrumb a {
            color: #0f3460;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #e94560;
        }
        .breadcrumb span.sep {
            color: #999;
        }
        .hero {
            background: linear-gradient(145deg, #0f3460, #1a1a2e);
            padding: 48px 0 40px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(233, 69, 96, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(to right, #f5a623, #e94560, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto 20px;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 1;
        }
        .hero .meta-badge {
            display: inline-block;
            background: rgba(233, 69, 96, 0.2);
            border: 1px solid rgba(233, 69, 96, 0.3);
            border-radius: 30px;
            padding: 6px 20px;
            font-size: 0.85rem;
            color: #f5a623;
            position: relative;
            z-index: 1;
        }
        .hero .meta-badge i {
            margin-right: 6px;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 48px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
        }
        .sidebar-widget h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #0f3460;
            border-left: 4px solid #e94560;
            padding-left: 12px;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-widget ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0f2f6;
            font-size: 0.9rem;
        }
        .sidebar-widget ul li:last-child {
            border-bottom: none;
        }
        .sidebar-widget ul li a {
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }
        .sidebar-widget ul li a:hover {
            color: #e94560;
            transform: translateX(4px);
            text-decoration: none;
        }
        .sidebar-widget ul li a i {
            color: #e94560;
            font-size: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
            color: #0f3460;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #0f3460;
            border-bottom: 3px solid #e94560;
            padding-bottom: 8px;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin: 28px 0 12px;
            color: #16213e;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #1a1a2e;
        }
        p {
            margin-bottom: 16px;
            color: #2d2d44;
        }
        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px;
            margin-bottom: 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
        }
        .content-card .featured-img {
            margin: 20px 0 24px;
            border-radius: 14px;
            overflow: hidden;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef6f3, #fff4e8);
            border-left: 6px solid #f5a623;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .highlight-box i {
            color: #f5a623;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #f8faff;
            border-radius: 14px;
            padding: 18px 14px;
            text-align: center;
            border: 1px solid #e6e9f0;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #e94560;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #666;
            margin-top: 4px;
        }
        .interview-box {
            background: #f0f4fe;
            border-radius: 16px;
            padding: 22px 24px;
            margin: 20px 0;
            border: 1px solid #d6e0f5;
        }
        .interview-box .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #1a2a4a;
        }
        .interview-box .author {
            font-weight: 600;
            margin-top: 12px;
            color: #0f3460;
        }
        .btn-like {
            display: inline-block;
            background: #e94560;
            color: #fff;
            padding: 8px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
        }
        .btn-like:hover {
            background: #c23152;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
        }
        .form-widget {
            background: #fff;
            border-radius: 20px;
            padding: 28px 26px;
            margin-bottom: 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
        }
        .form-widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 4px;
            color: #16213e;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e6e9f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #fafbfc;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #e94560;
            background: #fff;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
            color: #ddd;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .submit-btn {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .submit-btn:hover {
            background: #c23152;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
        }
        .submit-btn i {
            font-size: 1rem;
        }
        .site-footer {
            background: #0f3460;
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 24px;
            margin-top: 40px;
            border-top: 4px solid #e94560;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 28px;
        }
        .footer-grid h4 {
            color: #f5a623;
            font-weight: 700;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-grid p,
        .footer-grid a {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #f5a623;
            text-decoration: none;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            padding: 4px 0;
        }
        .friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 14px 18px;
            margin-top: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .friend-link a {
            color: #f5a623;
            font-weight: 500;
        }
        .friend-link a:hover {
            color: #fff;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
        }
        .copyright strong {
            color: rgba(255, 255, 255, 0.8);
        }
        @media (max-width: 992px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 14px;
                background: rgba(255, 255, 255, 0.04);
                border-radius: 16px;
                padding: 16px 12px;
                gap: 6px;
                border: 1px solid rgba(255, 255, 255, 0.06);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                font-size: 0.95rem;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-card {
                padding: 20px 16px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .form-row {
                flex-direction: column;
                align-items: stretch;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        .text-muted {
            color: #888;
            font-size: 0.85rem;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated {
            display: inline-block;
            background: #eef0f5;
            border-radius: 20px;
            padding: 4px 16px;
            font-size: 0.8rem;
            color: #555;
        }
        .last-updated i {
            margin-right: 6px;
            color: #e94560;
        }
