* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0d0f14;
            color: #e8e6e3;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a1e26;
            border-bottom: 3px solid #f0c040;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
            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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c040, #d4a030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.15);
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .my-logo a {
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c040;
            color: #f0c040;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0c04022;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #ddd;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #f0c04018;
            color: #f0c040;
            text-decoration: none;
        }
        nav a.active {
            background: #f0c040;
            color: #0d0f14;
        }
        .breadcrumb {
            background: #13171f;
            padding: 10px 0;
            border-bottom: 1px solid #2a2e38;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #f0c040;
            margin-right: 10px;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 600;
        }
        .hero-wrap {
            margin: 30px 0 20px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1e26;
        }
        .hero-wrap img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-bottom: 4px solid #f0c040;
        }
        .hero-caption {
            padding: 14px 20px;
            font-style: italic;
            color: #b0b0b0;
            font-size: 0.9rem;
            background: #13171f;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin: 0.5em 0 0.3em;
            color: #f0c040;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2em 0 0.6em;
            color: #f0c040;
            border-left: 6px solid #f0c040;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8em 0 0.4em;
            color: #f5d870;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.4em 0 0.3em;
            color: #e8d090;
        }
        p {
            margin-bottom: 1.2em;
        }
        .lead {
            font-size: 1.2rem;
            color: #ccc;
            font-weight: 300;
            border-left: 4px solid #f0c04040;
            padding-left: 20px;
            margin: 1.5em 0;
        }
        strong,
        b {
            color: #fff;
            font-weight: 700;
        }
        em {
            color: #f0c040cc;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, #f0c04040, transparent);
            margin: 3em 0;
        }
        .highlight-box {
            background: #1a1e26;
            border-left: 6px solid #f0c040;
            padding: 20px 28px;
            border-radius: 0 12px 12px 0;
            margin: 2em 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 2em 0;
        }
        .stat-card {
            background: #1a1e26;
            padding: 24px 18px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a2e38;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            border-color: #f0c040;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c040;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 6px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 2em 0;
            border-radius: 12px;
            border: 1px solid #2a2e38;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #13171f;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2a2e38;
        }
        th {
            background: #1a1e26;
            color: #f0c040;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1a1e2633;
        }
        .search-section {
            background: #13171f;
            padding: 30px 24px;
            border-radius: 16px;
            margin: 3em 0;
            border: 1px solid #2a2e38;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2a2e38;
            background: #0d0f14;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f0c040;
        }
        .search-section button {
            padding: 14px 36px;
            border-radius: 40px;
            border: none;
            background: #f0c040;
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 3em 0;
        }
        @media (max-width: 700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .card-interact {
            background: #1a1e26;
            padding: 28px 24px;
            border-radius: 16px;
            border: 1px solid #2a2e38;
        }
        .card-interact h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-interact form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .card-interact input,
        .card-interact textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #2a2e38;
            background: #0d0f14;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .card-interact input:focus,
        .card-interact textarea:focus {
            border-color: #f0c040;
        }
        .card-interact textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-interact button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #f0c040;
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .card-interact button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a3e48;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c040;
        }
        footer {
            background: #0d0f14;
            border-top: 3px solid #1a1e26;
            padding: 40px 0 30px;
            margin-top: 50px;
        }
        footer .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        friend-link {
            display: block;
            padding: 18px 20px;
            background: #1a1e26;
            border-radius: 12px;
            border: 1px solid #2a2e38;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #0d0f14;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2a2e38;
            transition: border-color 0.2s, color 0.2s;
        }
        friend-link a:hover {
            border-color: #f0c040;
            color: #f0c040;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            border-top: 1px solid #1a1e26;
            padding-top: 20px;
        }
        .copyright strong {
            color: #999;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .hero-wrap img {
                max-height: 250px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        .last-updated {
            color: #888;
            font-size: 0.85rem;
            margin-top: 8px;
            display: block;
            text-align: right;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f0c040;
            color: #0d0f14;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.2s, background 0.2s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            transform: translateY(-4px);
            background: #ffdd77;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 1.2em 0;
        }
        .inline-link-list a {
            background: #1a1e26;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2a2e38;
        }
        .inline-link-list a:hover {
            border-color: #f0c040;
        }
        blockquote {
            border-left: 4px solid #f0c040;
            padding: 12px 24px;
            margin: 1.5em 0;
            background: #1a1e2633;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #bbb;
        }
        .toc {
            background: #13171f;
            padding: 20px 24px;
            border-radius: 12px;
            border: 1px solid #2a2e38;
            margin: 2em 0;
        }
        .toc ol {
            list-style: none;
            counter-reset: toc-counter;
        }
        .toc ol li {
            counter-increment: toc-counter;
            margin: 6px 0;
            padding-left: 28px;
            position: relative;
        }
        .toc ol li::before {
            content: counter(toc-counter) ".";
            position: absolute;
            left: 0;
            color: #f0c040;
            font-weight: 700;
        }
        .toc a {
            color: #ccc;
        }
        .toc a:hover {
            color: #f0c040;
        }
