        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.8;
            color: #1a1a2e;
            background: #f8f9fc;
            padding: 0 16px;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #c23152;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0f3460;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #e94560;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2d3436;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            padding: 14px 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 8px 32px rgba(15, 52, 96, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5c518;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(245, 197, 24, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ffd700;
        }
        .my-logo small {
            font-size: 0.7rem;
            color: #aab;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c518;
            color: #f5c518;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c518;
            color: #0f3460;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        .main-nav a {
            color: #eef;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #f5c518;
            color: #f5c518;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 5px;
        }
        .breadcrumb {
            background: #fff;
            padding: 10px 18px;
            border-radius: 30px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            margin: 18px 0 10px;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #0f3460;
        }
        .breadcrumb span {
            color: #636e72;
        }
        .breadcrumb .current {
            color: #e94560;
            font-weight: 600;
        }
        .section-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 24px;
            margin: 28px 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s;
        }
        .section-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
        }
        .featured-figure {
            margin: 24px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            background: #eef2f7;
            text-align: center;
        }
        .featured-figure img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #555;
            background: #f0f3f8;
            font-style: italic;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 16px 0 4px;
        }
        .search-box input {
            flex: 1 1 240px;
            padding: 14px 18px;
            border: 2px solid #dfe6e9;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-box input:focus {
            border-color: #e94560;
            box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.15);
        }
        .search-box button {
            padding: 14px 32px;
            background: #e94560;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #c23152;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #dfe6e9;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-stars .star {
            transition: 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #f5c518;
            transform: scale(1.12);
        }
        .rating-stars .star:hover~.star {
            color: #dfe6e9;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid #dfe6e9;
            border-radius: 16px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            transition: 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #e94560;
            box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
        }
        .comment-form .form-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 14px;
        }
        .comment-form .form-actions button {
            padding: 12px 32px;
            background: #0f3460;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .comment-form .form-actions button:hover {
            background: #1a4a7a;
            transform: translateY(-2px);
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px 18px;
            margin: 18px 0;
        }
        .link-grid a {
            padding: 10px 16px;
            background: #f0f3f8;
            border-radius: 40px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }
        .link-grid a:hover {
            background: #e94560;
            color: #fff;
            text-decoration: none;
            transform: translateX(4px);
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            color: #ccc;
            padding: 18px 22px;
            border-radius: 16px;
            margin: 20px 0 10px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #f5c518;
            margin: 0 10px 0 4px;
        }
        friend-link a:hover {
            color: #ffd700;
        }
        .site-footer {
            background: #0f3460;
            color: #b0bec5;
            padding: 32px 24px 20px;
            border-radius: 24px 24px 0 0;
            margin-top: 40px;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 16px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 18px 14px;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding-top: 14px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 8px;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 8px 14px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .search-box button {
                flex: 1 1 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 14px 10px;
                border-radius: 14px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        .badge {
            display: inline-block;
            background: #e94560;
            color: #fff;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.85rem;
            color: #888;
            margin-top: 8px;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(to right, #f5c51822, #f5c51811);
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, #e94560, transparent);
            margin: 32px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 18px 0;
        }
        .stats-grid .stat {
            background: #f0f3f8;
            padding: 18px 12px;
            border-radius: 16px;
            text-align: center;
            font-weight: 700;
            color: #0f3460;
        }
        .stats-grid .stat span {
            display: block;
            font-size: 1.8rem;
            color: #e94560;
        }
        blockquote {
            border-left: 5px solid #e94560;
            background: #f5f7fb;
            padding: 16px 22px;
            margin: 20px 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #2d3436;
        }
        blockquote cite {
            display: block;
            margin-top: 8px;
            font-size: 0.9rem;
            color: #636e72;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 18px 0;
            font-size: 0.95rem;
        }
        table th {
            background: #0f3460;
            color: #fff;
            padding: 12px 14px;
            text-align: left;
        }
        table td {
            padding: 10px 14px;
            border-bottom: 1px solid #dfe6e9;
        }
        table tr:hover td {
            background: #f0f3f8;
        }
