        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0f14;
            color: #e8edf5;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6bc5f7;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #a8e0ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #141824 0%, #1e2538 100%);
            border-bottom: 2px solid #2d3a5e;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7a8d8, #6bc5f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(107, 197, 247, 0.25);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7a8d8;
            margin-right: 6px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8d4e6;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.25s;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(107, 197, 247, 0.12);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 5px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .hamburger:focus-visible {
            outline: 2px solid #6bc5f7;
            outline-offset: 2px;
        }
        .nav-checkbox {
            display: none;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8899b4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #4a5a7a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6bc5f7;
        }
        .breadcrumb .current {
            color: #bcc8dd;
            font-weight: 500;
        }
        .main-content {
            flex: 1;
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 12px 0;
            background: linear-gradient(135deg, #f7a8d8, #6bc5f7, #7de0b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px 0;
            color: #d6e4ff;
            border-bottom: 2px solid #2d3a5e;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 32px 0 12px 0;
            color: #b7ccf0;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px 0;
            color: #9bb4dd;
        }
        p {
            margin: 0 0 18px 0;
            color: #dce3ef;
        }
        .lead {
            font-size: 1.2rem;
            color: #bccbe5;
            font-weight: 400;
            max-width: 800px;
        }
        strong,
        b {
            color: #f0f4ff;
            font-weight: 700;
        }
        .section-card {
            background: #161c2b;
            border-radius: 18px;
            padding: 28px 32px;
            margin-bottom: 32px;
            border: 1px solid #253048;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transition: border-color 0.3s;
        }
        .section-card:hover {
            border-color: #3a4d74;
        }
        .featured-image-wrapper {
            margin: 32px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a2133;
            padding: 8px;
        }
        .featured-image-wrapper img {
            width: 100%;
            border-radius: 10px;
        }
        .image-caption {
            font-size: 0.85rem;
            color: #7a8aa8;
            margin-top: 10px;
            text-align: center;
            font-style: italic;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .highlight-box {
            background: #1e263b;
            border-left: 4px solid #6bc5f7;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-item {
            background: #1a2235;
            border-radius: 14px;
            padding: 20px 18px;
            text-align: center;
            border: 1px solid #2a3750;
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #6bc5f7;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #98aac8;
            margin-top: 4px;
        }
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin: 20px 0 10px;
            padding: 0;
            list-style: none;
        }
        .link-group li a {
            font-weight: 500;
            background: rgba(107, 197, 247, 0.07);
            padding: 4px 14px;
            border-radius: 30px;
            border: 1px solid rgba(107, 197, 247, 0.15);
            transition: all 0.25s;
            font-size: 0.92rem;
        }
        .link-group li a:hover {
            background: rgba(107, 197, 247, 0.18);
            border-color: #6bc5f7;
            text-decoration: none;
        }
        .search-section {
            background: #101624;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0;
            border: 1px solid #253048;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #2d3a5e;
            background: #0d111c;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #6bc5f7;
            box-shadow: 0 0 0 3px rgba(107, 197, 247, 0.2);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #6bc5f7, #4a9ed6);
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(107, 197, 247, 0.35);
        }
        .comment-section {
            background: #101624;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0;
            border: 1px solid #253048;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 20px;
            border-radius: 16px;
            border: 1px solid #2d3a5e;
            background: #0d111c;
            color: #e8edf5;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #6bc5f7;
            box-shadow: 0 0 0 3px rgba(107, 197, 247, 0.15);
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 14px;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid #2d3a5e;
            background: #0d111c;
            color: #e8edf5;
            outline: none;
        }
        .comment-form .form-row input:focus {
            border-color: #6bc5f7;
        }
        .comment-form button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #7de0b0, #4fc08a);
            color: #0d0f14;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(125, 224, 176, 0.3);
        }
        .rating-section {
            background: #101624;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0;
            border: 1px solid #253048;
            text-align: center;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 18px 0 14px;
            font-size: 2.2rem;
            color: #3a4a6a;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f7c948;
            transform: scale(1.12);
        }
        .rating-form button {
            padding: 12px 36px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f7c948, #e0a830);
            color: #0d0f14;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 6px;
            font-size: 1rem;
        }
        .rating-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 20px rgba(247, 201, 72, 0.3);
        }
        .rating-value {
            font-size: 1.1rem;
            color: #bcc8dd;
            margin-top: 8px;
        }
        .site-footer {
            background: #0a0d16;
            border-top: 2px solid #1e2a44;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            justify-content: center;
        }
        .footer-links a {
            color: #8899b4;
            font-size: 0.92rem;
        }
        .footer-links a:hover {
            color: #6bc5f7;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
            font-style: normal;
            padding: 16px 0 8px;
            border-top: 1px solid #1a2340;
            border-bottom: 1px solid #1a2340;
            margin: 12px 0;
        }
        friend-link a {
            color: #7a8aa8;
            font-weight: 400;
            font-size: 0.92rem;
            padding: 4px 10px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.25s;
        }
        friend-link a:hover {
            color: #6bc5f7;
            background: rgba(107, 197, 247, 0.08);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #5a6a88;
            font-size: 0.85rem;
            padding-top: 12px;
        }
        .copyright strong {
            color: #8899b4;
        }
        .last-updated {
            text-align: center;
            color: #6a7a98;
            font-size: 0.85rem;
            margin-top: 4px;
        }
        .last-updated i {
            margin-right: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 4px;
                border-top: 1px solid #253048;
                margin-top: 10px;
            }
            .main-nav a {
                padding: 10px 16px;
                font-size: 1rem;
                border-radius: 12px;
                width: 100%;
            }
            .nav-checkbox:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .section-card {
                padding: 20px 16px;
            }
            .search-section,
            .comment-section,
            .rating-section {
                padding: 20px 16px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .star-rating {
                font-size: 1.8rem;
            }
        }
        :focus-visible {
            outline: 2px solid #6bc5f7;
            outline-offset: 2px;
        }
        .section-card,
        .search-section,
        .comment-section,
        .rating-section {
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }
        @media (hover: hover) {
            .section-card:hover,
            .search-section:hover,
            .comment-section:hover,
            .rating-section:hover {
                transform: translateY(-2px);
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            }
        }
        .schema-hidden {
            display: none;
        }
