        *,
        *::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;
            line-height: 1.7;
            color: #1a1a2e;
            background: #f8f9fc;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #e74c3c;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 0;
            color: #0b0b1a;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #c0392b;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.75rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem;
            color: #34495e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .text-muted {
            color: #5d6d7e;
            font-size: 0.92rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b0b1a 0%, #1a1a2e 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f1c40f;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #f1c40f;
        }
        .my-logo span {
            color: #e74c3c;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ecf0f1;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(255, 255, 255, 0.12);
            color: #f1c40f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: #eef0f5;
            padding: 0.6rem 0;
            font-size: 0.88rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #2c3e50;
        }
        .breadcrumb .current {
            color: #c0392b;
            font-weight: 600;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            border-bottom: 1px solid #e0e4e8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 560px;
            margin: 0 auto;
        }
        .search-form input[type="search"] {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 2px solid #d0d3d9;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.25s;
        }
        .search-form input[type="search"]:focus {
            border-color: #c0392b;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.75rem 1.8rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .feature-image {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #e8ebf0;
        }
        .feature-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 0.7rem 1.2rem;
            font-size: 0.88rem;
            color: #5d6d7e;
            background: #f5f6fa;
            font-style: italic;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .highlight-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s, box-shadow 0.25s;
            border-left: 4px solid #c0392b;
        }
        .highlight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
        }
        .highlight-card i {
            font-size: 2rem;
            color: #c0392b;
            margin-bottom: 0.6rem;
        }
        .highlight-card h4 {
            margin: 0.2rem 0 0.4rem;
            font-size: 1.1rem;
        }
        .link-group {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
        }
        .link-group h3 {
            margin-top: 0;
            border-bottom: 2px solid #eee;
            padding-bottom: 0.5rem;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0.8rem 0 0;
        }
        .link-grid li a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0;
            font-weight: 500;
        }
        .link-grid li a i {
            font-size: 0.8rem;
            color: #c0392b;
        }
        .score-area {
            background: #fff;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
            text-align: center;
        }
        .score-stars {
            display: flex;
            justify-content: center;
            gap: 0.3rem;
            font-size: 2.4rem;
            color: #f1c40f;
            margin: 0.6rem 0;
        }
        .score-stars i {
            cursor: pointer;
            transition: transform 0.15s, color 0.2s;
        }
        .score-stars i:hover,
        .score-stars i.active {
            transform: scale(1.2);
            color: #f39c12;
        }
        .score-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .score-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .score-form button:hover {
            background: #a93226;
        }
        .comments-section {
            background: #fff;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border: 2px solid #d0d3d9;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin: 0.8rem 0;
        }
        .comment-form input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: 2px solid #d0d3d9;
            border-radius: 10px;
            font-size: 0.95rem;
            min-width: 160px;
        }
        .comment-form input:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #a93226;
        }
        .site-footer {
            background: #0b0b1a;
            color: #bdc3c7;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .site-footer .container {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            justify-content: center;
        }
        .footer-links a {
            color: #ecf0f1;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #f1c40f;
        }
        .footer-copy {
            text-align: center;
            font-size: 0.88rem;
            border-top: 1px solid #2c3e50;
            padding-top: 1.5rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            justify-content: center;
            padding: 0.8rem 0;
            font-size: 0.92rem;
        }
        friend-link a {
            color: #f1c40f;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                background: #1a1a2e;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                padding: 1rem 1.5rem;
                border-radius: 0 0 16px 16px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .score-stars {
                font-size: 2rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .highlight-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .badge {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.6rem;
            border-radius: 40px;
            letter-spacing: 0.04em;
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.85rem;
            color: #7f8c8d;
            margin-top: 2rem;
            padding-top: 0.8rem;
            border-top: 1px solid #e0e4e8;
        }
        .schema-hidden {
            display: none;
        }
