:root {
            --bat-black: #0a0a0a;
            --bat-dark: #1a1a1a;
            --bat-gray: #2c2c2c;
            --bat-light: #4a4a4a;
            --bat-gold: #f5c518;
            --bat-silver: #c0c0c0;
            --bat-white: #f0f0f0;
            --bat-blue: #1e3a5f;
            --bat-red: #8b0000;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--bat-black);
            color: var(--bat-white);
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
        }
        a {
            color: var(--bat-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffdd44;
            text-shadow: 0 0 8px rgba(245, 197, 24, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
            border-bottom: 2px solid var(--bat-gold);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #f5c518, #ffdd44, #f5c518);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(245, 197, 24, 0.3);
            font-family: 'Georgia', serif;
            position: relative;
            line-height: 1.2;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-shadow: 0 0 20px rgba(245, 197, 24, 0.6);
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 2px solid var(--bat-gold);
            color: var(--bat-gold);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(245, 197, 24, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .main-nav a {
            color: var(--bat-white);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 4px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .main-nav a:hover {
            background: rgba(245, 197, 24, 0.15);
            color: var(--bat-gold);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.85rem;
            background: #111;
            border-bottom: 1px solid #222;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--bat-silver);
        }
        .breadcrumb a:hover {
            color: var(--bat-gold);
        }
        .breadcrumb .separator {
            color: #555;
        }
        .breadcrumb .current {
            color: var(--bat-gold);
        }
        .search-section {
            padding: 30px 0;
            background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
            border-bottom: 1px solid #222;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid var(--bat-gray);
            border-radius: 30px;
            background: #111;
            color: var(--bat-white);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input[type="text"]:focus {
            border-color: var(--bat-gold);
            box-shadow: 0 0 15px rgba(245, 197, 24, 0.2);
        }
        .search-form button {
            padding: 14px 30px;
            background: var(--bat-gold);
            border: none;
            border-radius: 30px;
            color: #000;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffdd44;
            transform: scale(1.03);
            box-shadow: 0 4px 15px rgba(245, 197, 24, 0.4);
        }
        .main-content {
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .article-body {
            background: #131313;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border: 1px solid #222;
        }
        .article-body h1 {
            font-size: 2.4rem;
            color: var(--bat-gold);
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 4px solid var(--bat-gold);
            padding-left: 20px;
        }
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--bat-gold);
            margin: 40px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #333;
        }
        .article-body h3 {
            font-size: 1.35rem;
            color: var(--bat-silver);
            margin: 25px 0 10px;
        }
        .article-body h4 {
            font-size: 1.1rem;
            color: #aaa;
            margin: 18px 0 8px;
            font-style: italic;
        }
        .article-body p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .article-body ul,
        .article-body ol {
            margin: 15px 0 20px 30px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body strong {
            color: var(--bat-gold);
        }
        .article-body .lead {
            font-size: 1.15rem;
            color: #ccc;
            font-weight: 300;
            border-left: 3px solid var(--bat-gold);
            padding-left: 15px;
            margin-bottom: 25px;
        }
        .hero-image {
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        .hero-image img {
            width: 100%;
            min-height: 300px;
            object-fit: cover;
            background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
        }
        .hero-image figcaption {
            padding: 12px 18px;
            background: #0d0d0d;
            color: #aaa;
            font-size: 0.9rem;
            text-align: center;
            border-top: 1px solid #222;
        }
        .info-box {
            background: #1a1a1a;
            border-left: 4px solid var(--bat-gold);
            padding: 18px 22px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box p {
            margin: 0;
        }
        .insight-box {
            background: linear-gradient(135deg, #1a1a2e, #111);
            border: 1px solid var(--bat-blue);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 20px rgba(30, 58, 95, 0.3);
        }
        .insight-box h4 {
            color: var(--bat-gold);
            margin-bottom: 10px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .insight-box p {
            margin: 0;
            color: #bbb;
        }
        .table-wrapper {
            overflow-x: auto;
            margin: 25px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #111;
            border-radius: 8px;
            overflow: hidden;
        }
        table th,
        table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #222;
        }
        table th {
            background: #1a1a1a;
            color: var(--bat-gold);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
        }
        table tr:hover {
            background: #1a1a1a;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: #131313;
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #222;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }
        .sidebar-widget h3 {
            color: var(--bat-gold);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #333;
        }
        .sidebar-widget ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-widget li {
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
        }
        .sidebar-widget li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--bat-gold);
        }
        .sidebar-widget li a {
            color: #bbb;
        }
        .sidebar-widget li a:hover {
            color: var(--bat-gold);
        }
        .rating-section {
            margin: 40px 0 25px;
            background: #111;
            border-radius: 12px;
            padding: 30px;
            border: 1px solid #222;
        }
        .rating-section h3 {
            color: var(--bat-gold);
            margin-bottom: 15px;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            margin: 15px 0;
        }
        .star-rating i {
            transition: var(--transition);
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: var(--bat-gold);
            transform: scale(1.15);
            text-shadow: 0 0 15px rgba(245, 197, 24, 0.6);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 400px;
        }
        .rating-form input {
            padding: 12px 16px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            color: var(--bat-white);
            font-size: 0.95rem;
        }
        .rating-form button {
            padding: 12px 24px;
            background: var(--bat-gold);
            border: none;
            border-radius: 8px;
            color: #000;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: #ffdd44;
            transform: scale(1.02);
        }
        .comments-section {
            margin: 40px 0;
            background: #111;
            border-radius: 12px;
            padding: 30px;
            border: 1px solid #222;
        }
        .comments-section h3 {
            color: var(--bat-gold);
            margin-bottom: 20px;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 16px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            color: var(--bat-white);
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
        }
        .comment-form textarea {
            min-height: 120px;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 12px 30px;
            background: var(--bat-gold);
            border: none;
            border-radius: 8px;
            color: #000;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #ffdd44;
            transform: scale(1.02);
        }
        .site-footer {
            background: #0a0a0a;
            border-top: 2px solid var(--bat-gold);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: var(--bat-gold);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .footer-col p {
            color: #888;
            font-size: 0.9rem;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col li {
            margin-bottom: 8px;
        }
        .footer-col a {
            color: #999;
        }
        .footer-col a:hover {
            color: var(--bat-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #222;
            color: #666;
            font-size: 0.82rem;
            line-height: 1.6;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 15px 0;
            padding: 15px;
            background: #111;
            border-radius: 8px;
            border: 1px solid #222;
            font-size: 0.9rem;
        }
        friend-link a {
            color: var(--bat-silver);
            font-weight: 500;
        }
        friend-link a:hover {
            color: var(--bat-gold);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--bat-gold);
            color: #000;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(245, 197, 24, 0.4);
            transition: var(--transition);
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(245, 197, 24, 0.6);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .sidebar-widget {
                flex: 1;
                min-width: 250px;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                padding: 15px 0;
                background: #111;
                border-radius: 8px;
                margin-top: 10px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                border-bottom: 1px solid #222;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .article-body {
                padding: 20px;
            }
            .article-body h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.4rem;
            }
            .article-body h3 {
                font-size: 1.15rem;
            }
            .hero-image img {
                min-height: 200px;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
            .back-to-top {
                bottom: 15px;
                right: 15px;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .article-body {
                padding: 15px;
            }
            .article-body h1 {
                font-size: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
