* { margin:0; padding:0; box-sizing:border-box; }
        :root {
            --bat-black:#0a0a0f;
            --bat-dark:#14141c;
            --bat-grey:#1e1e2a;
            --bat-blue:#2d2d5e;
            --bat-gold:#c9a84c;
            --bat-silver:#b8b8c8;
            --bat-light:#e0e0f0;
            --bat-accent:#6f6ff0;
            --bat-bg:#f3f3f8;
            --bat-card:#ffffff;
            --bat-shadow:0 8px 24px rgba(0,0,0,0.2);
        }
        body {
            font-family:'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background:var(--bat-bg);
            color:#1c1c2a;
            line-height:1.6;
        }
        a { color: var(--bat-blue); text-decoration:none; transition: all 0.2s; }
        a:hover { color: var(--bat-gold); text-decoration: underline; }
        .container { max-width: 1300px; margin:0 auto; padding:0 20px; }
        .site-header {
            background: linear-gradient(145deg, #0b0b11 0%,#0f0f1f 100%);
            border-bottom: 4px solid var(--bat-gold);
            padding: 0 18px;
            position: sticky; top:0; z-index: 500;
            box-shadow: 0 4px 18px rgba(0,0,0,.5);
        }
        .header-inner {
            display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap; padding: 15px 0; max-width: 1300px; margin:0 auto;
        }
        .my-logo {
            display: flex; align-items: center; gap: 10px; font-size:2.2rem;
            font-weight: 900; letter-spacing: -1px;
            color: var(--bat-gold); text-shadow: 0 2px 8px rgba(0,0,0,.7);
            font-family:'Impact', 'Arial Black', sans-serif;
        }
        .my-logo i { color: var(--bat-silver); font-size: 2rem; }
        .my-logo span { background: linear-gradient(to right, #d1b56a, #efd587); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .site-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
        .site-nav a, .nav-dropdown {
            color: #ccc; padding: 8px 14px; border-radius: 30px;
            font-weight: 500; font-size:1rem; border:1px solid transparent;
        }
        .site-nav a:hover { background:#23233a; color:#eed88a; border-color:#c9a84c; text-decoration:none; }
        .burger { display: none; background: none; border:none; color:var(--bat-gold); font-size:2rem; cursor:pointer; }
        .mobile-menu { display: none; width:100%; flex-direction:column; padding-bottom:15px; }
        .mobile-menu.show { display:flex; }
        .mobile-menu a { padding: 12px 8px; border-bottom:1px solid #2f2f45; color:#ddd; }
        .mobile-menu a i { margin-right:10px; }
        .breadcrumb { background:#fff; border-bottom:1px solid #e0dccf; font-size:0.9rem; }
        .breadcrumb .container { display:flex; flex-wrap:wrap; padding: 10px 20px; }
        .breadcrumb a { color:#444; margin-right:6px; }
        .breadcrumb span { margin:0 6px; }
        .hero {
            background: linear-gradient(135deg, #07070c 20%, #1f1f3a 80%, #2a1e1e);
            color: white; padding: 50px 0 60px; border-bottom: 6px solid var(--bat-gold);
        }
        .hero-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items:center; }
        .hero h1 { font-size: 2.9rem; line-height:1.2; margin-bottom: 14px; font-weight:800; }
        .hero h1 i { color: var(--bat-gold); }
        .tagline { font-size:1.3rem; color:#c9c9e0; margin-bottom: 14px; }
        .upd { font-size: 0.95rem; background: rgba(255,215,0,0.15); display:inline-block; padding:6px 16px; border-radius:40px; border-left: 4px solid gold; }
        .hero img { width:100%; max-height:300px; object-fit:cover; border-radius:20px; box-shadow:var(--bat-shadow); border:3px solid #b49a45; }
        .content-section { background:white; padding: 30px 0; }
        .section-card { background:#fff; margin: 35px 0; padding: 30px 25px; border-radius:20px; box-shadow: var(--bat-shadow); transition: all .2s; }
        .section-card h2 { font-size: 2.1rem; border-left: 8px solid var(--bat-gold); padding-left: 18px; margin-bottom: 26px; color:#101020; }
        .section-card h3 { font-size:1.6rem; margin:22px 0 14px; color:#1f1f4a; }
        .section-card h4 { font-size:1.2rem; margin:20px 0 8px; color:#34345a; }
        .flex-feature { display:grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 22px; margin-top:25px; }
        .feature-box { background:#f7f7fe; border-radius:14px; padding:20px; border:1px solid #dcdcee; }
        .feature-box i { font-size:2rem; color: var(--bat-gold); margin-bottom:10px; }
        article p { margin-bottom: 1.2rem; text-align: justify; }
        .stats-grid { display:grid; grid-template-columns: 1fr 1fr; gap:16px; background:#11121e; color:#eee; padding:22px; border-radius:18px; margin:30px 0; }
        .stat-item { border-left: 4px solid var(--bat-gold); padding-left:16px; }
        .stat-item span { font-size:1.8rem; font-weight:800; color:var(--bat-gold); }
        blockquote { background:#ebf0f9; border-left:6px solid var(--bat-gold); padding:18px 25px; border-radius:0 18px 18px 0; margin:25px 0; font-style: italic; }
        .interlink-list { background:#f3f6fd; padding:24px; border-radius:20px; }
        .interlink-list a { display:inline-block; padding:5px 14px; margin:4px; background:white; border-radius:40px; box-shadow:0 2px 6px rgba(0,0,0,.1); }
        .interlink-list a:hover { background:var(--bat-dark); color:gold; }
        .comment-area, .score-area { background:#eeeef8; padding:25px; border-radius:24px; margin-top:35px; }
        .comment-area input, .comment-area textarea, .score-area select, .comment-area button, .score-area button {
            width:100%; padding:12px 16px; margin:8px 0; border-radius:40px; border:1px solid #b9b9c9; font-family:inherit;
        }
        .btn { background:#20203a; color:white; font-weight: bold; padding:14px 30px; border:none; border-radius:60px; cursor:pointer; display:inline-flex; gap:8px; align-items:center; }
        .btn:hover { background: var(--bat-gold); color:#000; }
        .rating-stars i { font-size: 2rem; color: #bbb; cursor:pointer; }
        .rating-stars i.active { color: #e4b400; }
        .footer { background:#0a0a12; color:#aaa; padding:40px 0; margin-top:60px; border-top:6px solid var(--bat-gold); }
        .footer-inner { display: flex; flex-direction: column; gap: 24px; }
        friend-link { display: flex; flex-wrap: wrap; gap: 10px; }
        friend-link a { background:#1d1d2a; padding:8px 20px; border-radius:40px; color:#cdc; font-size:.95rem; border:1px solid #334; }
        .copyright { border-top:1px solid #22222e; padding-top:22px; font-size:.9rem; color:#696982; display:flex; justify-content: space-between; flex-wrap:wrap; }
        .hidden-schema { display:none; }
        @media (max-width: 900px){
            .site-nav { display:none; }
            .burger { display: block; }
            .hero-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.2rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .my-logo { font-size:1.7rem; }
        }
        @media (min-width:901px){
            .mobile-menu { display:none !important; }
        }
        .back-to-top { position: fixed; bottom: 30px; right: 30px; background: var(--bat-gold); width: 50px; height:50px; border-radius:50%; display:grid; place-items:center; color:black; font-size:1.3rem; opacity:0.8; }
        .back-to-top:hover { opacity:1; }
