*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #f5a623;
            --primary-dark: #d48a1a;
            --bg-dark: #0b0e14;
            --bg-card: #151b24;
            --bg-card-hover: #1c2531;
            --text-main: #e8edf2;
            --text-muted: #9aa8b9;
            --text-accent: #f5a623;
            --border-color: #2a3544;
            --radius: 12px;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            --transition: all 0.25s ease;
            --max-width: 1200px;
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.7;
            padding: 0 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover,
        a:focus-visible {
            color: #ffc857;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            padding: 18px 0 12px;
            border-bottom: 1px solid var(--border-color);
            background: var(--bg-dark);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(11, 14, 20, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: var(--text-muted);
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
        }
        .nav-list a {
            color: var(--text-muted);
            font-size: 0.92rem;
            font-weight: 500;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }
        .nav-list a:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text-main);
            border-radius: 4px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 500;
        }
        main {
            padding: 20px 0 50px;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 10px;
            background: linear-gradient(135deg, #f5a623, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
            color: var(--text-main);
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: var(--primary);
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 22px 0 8px;
            color: var(--text-accent);
        }
        p {
            margin: 0 0 18px;
            color: var(--text-main);
        }
        .lead {
            font-size: 1.15rem;
            color: var(--text-muted);
            border-left: 4px solid var(--primary);
            padding-left: 20px;
            margin: 0 0 28px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(245, 166, 35, 0.15), transparent);
            padding: 0 8px;
            font-weight: 600;
            color: var(--primary);
        }
        .emoji-lg {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .article-img {
            margin: 28px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            background: var(--bg-card);
            padding: 8px;
        }
        .article-img img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .article-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 10px 0 4px;
        }
        .info-box {
            background: var(--bg-card);
            border-left: 4px solid var(--primary);
            padding: 18px 22px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
            box-shadow: var(--shadow);
        }
        .info-box strong {
            color: var(--primary);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        .stat-card {
            background: var(--bg-card);
            padding: 20px 22px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        .stat-card .label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            font-size: 0.92rem;
        }
        th,
        td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        th {
            background: var(--bg-card-hover);
            color: var(--primary);
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: rgba(245, 166, 35, 0.04);
        }
        .search-section {
            background: var(--bg-card);
            padding: 28px 30px;
            border-radius: var(--radius);
            margin: 40px 0 20px;
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 160px;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-dark);
            color: var(--text-main);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            background: var(--primary);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .comment-box,
        .score-box {
            background: var(--bg-card);
            padding: 24px 26px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
        }
        .comment-box textarea,
        .score-box select {
            width: 100%;
            padding: 12px 14px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-dark);
            color: var(--text-main);
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            resize: vertical;
            min-height: 90px;
        }
        .comment-box textarea:focus,
        .score-box select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
        }
        .comment-box .field-group,
        .score-box .field-group {
            margin-bottom: 16px;
        }
        .comment-box label,
        .score-box label {
            display: block;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 4px;
            font-weight: 500;
        }
        .btn-submit {
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            background: var(--primary);
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-submit:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .site-footer {
            border-top: 1px solid var(--border-color);
            padding: 36px 0 30px;
            margin-top: 20px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px 32px;
        }
        .footer-copy {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .footer-copy strong {
            color: var(--text-main);
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        friend-link a {
            color: var(--text-muted);
        }
        friend-link a:hover {
            color: var(--primary);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-card);
                padding: 16px 20px;
                border-radius: var(--radius);
                margin-top: 8px;
                border: 1px solid var(--border-color);
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            .nav-list {
                display: flex !important;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .tag {
            display: inline-block;
            background: rgba(245, 166, 35, 0.12);
            color: var(--primary);
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .last-updated {
            font-size: 0.88rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 12px 0 20px;
            padding: 10px 16px;
            background: var(--bg-card);
            border-radius: 30px;
            width: fit-content;
        }
        .last-updated strong {
            color: var(--text-main);
        }
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #0b0e14;
            border: none;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.8;
            z-index: 99;
        }
        .back-to-top:hover {
            opacity: 1;
            transform: translateY(-4px);
        }
        @media (max-width: 480px) {
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 38px;
                height: 38px;
                font-size: 1.2rem;
            }
        }
