        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f9f7f4;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7c3aed;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a5c 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            font-family: 'Trebuchet MS', sans-serif;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: #94a3b8;
            color: #94a3b8;
            letter-spacing: 0.5px;
            display: block;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e2e8f0;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fbbf24;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #fbbf24;
            color: #0b1a33;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #64748b;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #3b82f6;
        }
        .breadcrumb .current {
            color: #1e293b;
            font-weight: 500;
        }
        .content-area {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0b1a33;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0b1a33;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #fbbf24;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e293b;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #334155;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 16px;
        }
        .lead {
            font-size: 1.2rem;
            color: #475569;
            line-height: 1.8;
            margin-bottom: 28px;
        }
        .highlight-box {
            background: #eef2ff;
            border-left: 6px solid #6366f1;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
            font-style: italic;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            background: #e2e8f0;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #64748b;
            background: #f8fafc;
        }
        .search-section {
            background: #f1f5f9;
            padding: 30px 24px;
            border-radius: 16px;
            margin: 40px 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #cbd5e1;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #6366f1;
        }
        .search-form button {
            padding: 14px 32px;
            background: #0b1a33;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #1e3a5f;
            transform: scale(1.02);
        }
        .comments-section {
            margin: 48px 0;
            padding: 32px 24px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #6366f1;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form .form-row input:focus {
            border-color: #6366f1;
        }
        .comment-form button {
            padding: 12px 28px;
            background: #0b1a33;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 12px;
        }
        .comment-form button:hover {
            background: #1e3a5f;
        }
        .rating-section {
            background: #fff;
            padding: 28px 24px;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin: 32px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f59e0b;
            transform: scale(1.1);
        }
        .rating-stars .star.selected {
            color: #f59e0b;
        }
        .rating-display {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
        }
        .rating-form button {
            padding: 10px 24px;
            background: #fbbf24;
            color: #0b1a33;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #f59e0b;
        }
        .related-links {
            background: #f8fafc;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 40px 0;
            border: 1px solid #e2e8f0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 10px 20px;
        }
        .related-links li::before {
            content: "🎮 ";
            font-size: 0.9rem;
        }
        .related-links a {
            font-weight: 500;
        }
        .site-footer {
            background: #0b1a33;
            color: #cbd5e1;
            padding: 40px 0 24px;
            font-size: 0.9rem;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .site-footer h4 {
            color: #fbbf24;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .site-footer a {
            color: #94a3b8;
        }
        .site-footer a:hover {
            color: #fbbf24;
        }
        friend-link {
            display: block;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
        }
        friend-link li {
            margin-bottom: 6px;
        }
        friend-link a {
            color: #94a3b8;
        }
        friend-link a:hover {
            color: #fbbf24;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1e3a5f;
            margin-top: 16px;
            color: #64748b;
            font-size: 0.8rem;
        }
        .last-updated {
            display: inline-block;
            background: #f1f5f9;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 12px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f2340;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-form input {
                min-width: 140px;
            }
            .rating-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #94a3b8;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #64748b;
        }
        .schema-hidden {
            display: none;
        }
