*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --batman-dark: #0b0d11;
            --batman-darker: #07080a;
            --batman-gray: #1c1f26;
            --batman-light: #f0f2f5;
            --batman-gold: #ffca28;
            --batman-silver: #aab2bd;
            --batman-red: #ef5350;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: var(--batman-dark);
            color: var(--batman-light);
            line-height: 1.7;
            font-size: 16px;
        }
        img { max-width: 100%; height: auto; }
        a { color: var(--batman-gold); text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ffe082; }
        h1, h2, h3, h4, h5 { font-family: Georgia, 'Times New Roman', serif; line-height: 1.25; margin-bottom: 1rem; font-weight: 700; }
        h1 {
            font-size: 2.6rem;
            background: linear-gradient(180deg, #ffca28 0%, #b8860b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        h2 { font-size: 2rem; color: var(--batman-gold); border-left: 4px solid var(--batman-gold); padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: 1.5rem; color: #e8d5b0; margin-top: 2rem; }
        h4 { font-size: 1.15rem; color: var(--batman-silver); margin-top: 1.5rem; }
        p { margin-bottom: 1.2rem; text-align: justify; }
        ul, ol { margin: 0 0 1.2rem 1.8rem; }
        li { margin-bottom: 0.5rem; }
        blockquote {
            background: var(--batman-gray);
            border-left: 4px solid var(--batman-gold);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        code {
            background: #2a2d35;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.9em;
            color: #ffca28;
        }
        pre {
            background: var(--batman-gray);
            padding: 1.5rem;
            overflow-x: auto;
            border-radius: 8px;
            border: 1px solid #333;
            margin-bottom: 1.5rem;
        }
        pre code { background: none; padding: 0; }
        .site-header {
            background: linear-gradient(180deg, var(--batman-darker), var(--batman-dark));
            border-bottom: 2px solid var(--batman-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 1.5rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ffca28 20%, #f5a623 50%, #8d6e1f 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: Impact, 'Arial Black', sans-serif;
            text-shadow: 0 0 30px rgba(255, 202, 40, 0.2);
            cursor: pointer;
        }
        .my-logo a { background: none; -webkit-text-fill-color: transparent; }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.2rem;
            align-items: center;
        }
        .nav-menu a {
            color: var(--batman-light);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem;
            border-radius: 20px;
            transition: background 0.3s, color 0.3s;
        }
        .nav-menu a:hover {
            background: var(--batman-gold);
            color: var(--batman-darker);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--batman-gold);
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
            color: var(--batman-silver);
            border-bottom: 1px solid #222;
        }
        .breadcrumb a { color: var(--batman-gold); }
        .breadcrumb span { margin: 0 0.4rem; }
        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2rem;
            padding: 2rem 1.5rem;
        }
        .article-content { min-width: 0; }
        .hero-image {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 2rem;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .hero-image img { width: 100%; display: block; }
        .hero-caption { background: var(--batman-gray); padding: 0.7rem 1rem; font-size: 0.85rem; color: var(--batman-silver); }
        .info-box {
            background: var(--batman-gray);
            border: 1px solid #333;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .info-box h4 { margin-bottom: 0.5rem; color: var(--batman-gold); }
        .info-box-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.8rem;
        }
        .info-box-grid .item { font-size: 0.9rem; }
        .info-box-grid .label { color: var(--batman-silver); display: block; font-size: 0.8rem; text-transform: uppercase; }
        .info-box-grid .value { font-weight: 700; color: var(--batman-light); }
        .tab-card {
            background: var(--batman-gray);
            border-radius: 10px;
            padding: 0;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        .tab-header {
            display: flex;
            background: #0d0f14;
            border-bottom: 1px solid #222;
        }
        .tab-header button {
            flex: 1;
            padding: 1rem;
            background: none;
            border: none;
            color: var(--batman-silver);
            font-weight: 600;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s, color 0.3s;
        }
        .tab-header button.active { background: var(--batman-gold); color: #000; }
        .tab-body { padding: 1.5rem; }
        .tab-panel { display: none; }
        .tab-panel.active { display: block; }
        .sidebar {
            background: var(--batman-gray);
            border-radius: 12px;
            padding: 1.5rem;
            height: fit-content;
            position: sticky;
            top: 80px;
            border: 1px solid #2a2d35;
        }
        .sidebar h3 {
            color: var(--batman-gold);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #333;
            padding-bottom: 0.5rem;
        }
        .sidebar ul { list-style: none; margin-left: 0; }
        .sidebar li { margin-bottom: 0.6rem; font-size: 0.9rem; }
        .sidebar li::before { content: "🦇 "; color: var(--batman-gold); }
        .search-section, .comment-section, .score-section {
            background: var(--batman-gray);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #2a2d35;
        }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; margin-bottom: 0.3rem; font-weight: 600; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #444;
            border-radius: 8px;
            background: #111318;
            color: var(--batman-light);
            font-size: 0.95rem;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--batman-gold); }
        .submit-btn {
            background: var(--batman-gold);
            color: #000;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,202,40,0.3); }
        .search-box {
            display: flex;
            gap: 0.6rem;
        }
        .search-box input { flex: 1; }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating i { color: #555; transition: color 0.2s, transform 0.2s; }
        .star-rating i:hover, .star-rating i.active { color: var(--batman-gold); transform: scale(1.2); }
        .site-footer {
            background: var(--batman-darker);
            border-top: 2px solid var(--batman-gold);
            padding: 2rem 1.5rem 1rem;
            text-align: center;
        }
        .footer-inner { max-width: 1400px; margin: 0 auto; }
        friend-link {
            display: block;
            background: var(--batman-gray);
            border-radius: 8px;
            padding: 1.2rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            border: 1px solid #333;
        }
        friend-link a { color: var(--batman-gold); margin: 0 0.5rem; }
        .copyright { color: #666; font-size: 0.8rem; }
        @media (max-width: 900px) {
            .content-wrapper { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--batman-darker);
                padding: 1rem;
                border-top: 1px solid #222;
            }
            .nav-menu.show { display: flex; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            .search-box { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .header-inner { padding: 0.8rem 1rem; }
            .content-wrapper { padding: 1rem; }
            .search-section, .comment-section, .score-section { padding: 1.2rem; }
        }
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #111318; }
        ::-webkit-scrollbar-thumb { background: #444; border-radius: 5px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--batman-gold); }
