        *,
        *::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, sans-serif;
            background: #0d0b0f;
            color: #e8e0d8;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5d742;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4em;
            border-bottom: 3px solid #f5c542;
            padding-bottom: 0.3em;
        }
        h2 {
            font-size: 2.0rem;
            border-left: 5px solid #f5c542;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            margin-left: 0.5rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-left: 1.2rem;
            color: #e8d5a3;
        }
        p {
            margin-bottom: 1.2rem;
            color: #ddd6ce;
        }
        .text-glow {
            text-shadow: 0 0 8px rgba(245, 197, 66, 0.25);
        }
        .site-header {
            background: linear-gradient(145deg, #1a141c 0%, #2a1f2e 100%);
            padding: 18px 0 12px;
            border-bottom: 3px solid #f5c542;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c542, #f0a832);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(245, 197, 66, 0.3);
            display: inline-block;
            padding: 4px 0;
        }
        .my-logo small {
            font-size: 0.8rem;
            display: block;
            -webkit-text-fill-color: #b8a89a;
            color: #b8a89a;
            letter-spacing: 2px;
            font-weight: 300;
        }
        .my-logo a {
            text-decoration: none;
            color: inherit;
            background: inherit;
            -webkit-background-clip: inherit;
            -webkit-text-fill-color: inherit;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.8rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c54222;
        }
        .main-nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0d4c8;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            background: #f5c54222;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f5c542;
            color: #1a141c;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.9rem;
            color: #a89888;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #c9b89a;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .sep {
            color: #665;
            margin: 0 4px;
        }
        .search-block {
            background: #1e1822;
            border-radius: 40px;
            padding: 6px 6px 6px 22px;
            display: flex;
            align-items: center;
            border: 1px solid #3f2e3f;
            max-width: 460px;
            margin: 24px 0 20px;
            transition: 0.3s;
        }
        .search-block:focus-within {
            border-color: #f5c542;
            box-shadow: 0 0 20px #f5c54222;
        }
        .search-block input {
            background: transparent;
            border: none;
            color: #f0e8e0;
            font-size: 1rem;
            flex: 1;
            padding: 12px 0;
            outline: none;
            min-width: 0;
        }
        .search-block input::placeholder {
            color: #7a6a6a;
        }
        .search-block button {
            background: #f5c542;
            border: none;
            color: #1a141c;
            font-weight: 600;
            padding: 10px 26px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
        }
        .search-block button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .content-card {
            background: #171116;
            border-radius: 28px;
            padding: 30px 28px;
            margin-bottom: 36px;
            border: 1px solid #2f222f;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .feature-item {
            background: #1f1823;
            border-radius: 20px;
            padding: 22px 20px;
            border-left: 4px solid #f5c542;
            transition: 0.25s;
        }
        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(245, 197, 66, 0.08);
        }
        .feature-item i {
            color: #f5c542;
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .feature-item h3 {
            margin-top: 0.2em;
            margin-bottom: 0.4em;
            font-size: 1.3rem;
        }
        .featured-image {
            border-radius: 20px;
            overflow: hidden;
            margin: 28px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1e1822;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            min-height: 200px;
            background: #2a1f2e;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #b8a89a;
            border-top: 1px solid #2f222f;
            background: #130f15;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 28px 0;
        }
        @media (max-width:700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: #1f1823;
            border-radius: 20px;
            padding: 22px 24px;
            border: 1px solid #2f222f;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-box textarea,
        .score-box input,
        .score-box select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid #3f2e3f;
            background: #0d0b0f;
            color: #e8e0d8;
            font-size: 1rem;
            margin: 8px 0 12px;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
        }
        .comment-box textarea:focus,
        .score-box input:focus,
        .score-box select:focus {
            border-color: #f5c542;
            box-shadow: 0 0 12px #f5c54233;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f5c542;
            border: none;
            color: #1a141c;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
            display: inline-block;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c542;
            color: #f5c542;
        }
        .btn-outline:hover {
            background: #f5c54222;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #4a3a3a;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f5c542;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            background: #1f1823;
            padding: 6px 18px;
            border-radius: 30px;
            border: 1px solid #2f222f;
            font-size: 0.9rem;
            display: inline-block;
            transition: 0.2s;
        }
        .link-list li a:hover {
            border-color: #f5c542;
            background: #2a1f2e;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a141c;
            border-radius: 16px;
            overflow: hidden;
        }
        th {
            background: #2a1f2e;
            color: #f5c542;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #2f222f;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #221a26;
        }
        friend-link {
            display: block;
            padding: 28px 0 10px;
            border-top: 2px solid #2f222f;
            margin-top: 40px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            padding: 12px 0 0;
        }
        friend-link ul li a {
            color: #c9b89a;
            font-size: 0.95rem;
        }
        friend-link ul li a:hover {
            color: #f5c542;
        }
        .site-footer {
            background: #0f0c12;
            padding: 30px 0 24px;
            border-top: 2px solid #2f222f;
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: #8a7a6a;
        }
        .site-footer .copyright {
            margin-top: 12px;
            letter-spacing: 0.3px;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                border-radius: 12px;
                background: #1a141c;
                border: 1px solid #2f222f;
            }
            h1 {
                font-size: 2.0rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .content-card {
                padding: 20px 16px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-block {
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 6px 6px 6px 16px;
            }
            .search-block input {
                font-size: 0.95rem;
                padding: 10px 0;
            }
            .search-block button {
                padding: 8px 18px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
                padding-left: 12px;
            }
            .content-card {
                padding: 16px 12px;
                border-radius: 18px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .gap-sm {
            gap: 8px;
        }
        .text-muted {
            color: #a89888;
        }
        .text-gold {
            color: #f5c542;
        }
        .last-updated {
            display: inline-block;
            background: #1f1823;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #b8a89a;
            border: 1px solid #2f222f;
        }
        .emoji-lg {
            font-size: 1.6rem;
        }
        .schema-hidden {
            display: none;
        }
