        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --batman-dark: #0d0d1a;
            --gotham-blue: #1a237e;
            --bat-yellow: #ffd700;
            --joker-purple: #9c27b0;
            --catwoman-green: #2e7d32;
            --gray-bg: #f5f5f5;
            --text-primary: #333;
            --text-secondary: #666;
            --accent-red: #c62828;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            max-width: 1600px;
            margin: 0 auto;
            overflow-x: hidden;
        }
        header {
            background: var(--batman-dark);
            padding: 1.2rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 6px 20px rgba(0, 0, 20, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--bat-yellow);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .my-logo:hover {
            color: white;
            text-shadow: 0 0 25px var(--bat-yellow);
            transform: scale(1.05);
        }
        .my-logo i {
            color: var(--accent-red);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            transition: var(--transition);
            position: relative;
        }
        nav a:hover {
            background: rgba(255, 215, 0, 0.15);
            color: var(--bat-yellow);
            transform: translateY(-3px);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--bat-yellow);
            transition: width 0.3s ease, left 0.3s ease;
        }
        nav a:hover::after {
            width: 80%;
            left: 10%;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1.2rem 5%;
            background: rgba(26, 35, 126, 0.05);
            font-size: 0.95rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--gotham-blue);
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-secondary);
            margin: 0 8px;
        }
        main {
            padding: 3rem 5%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 3.5rem;
            color: var(--batman-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 4px solid var(--bat-yellow);
            padding-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.5rem;
            color: var(--gotham-blue);
            margin: 3rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 6px solid var(--bat-yellow);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--joker-purple);
            margin: 2.5rem 0 1.2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--catwoman-green);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            color: var(--text-primary);
            text-align: justify;
            hyphens: auto;
            line-height: 1.85;
        }
        .lead {
            font-size: 1.4rem;
            color: var(--batman-dark);
            font-weight: 600;
            background: linear-gradient(90deg, rgba(255,215,0,0.1) 0%, transparent 100%);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2.5rem;
            border-left: 5px solid var(--bat-yellow);
        }
        .content-area a {
            color: var(--gotham-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--bat-yellow);
            padding-bottom: 2px;
            transition: var(--transition);
        }
        .content-area a:hover {
            color: var(--accent-red);
            border-bottom: 2px solid var(--accent-red);
            background: rgba(198, 40, 40, 0.05);
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 15px;
            margin: 2.5rem auto;
            display: block;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
            border: 8px solid white;
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.015);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.8rem;
            font-size: 1rem;
        }
        ul, ol {
            margin-left: 2.5rem;
            margin-bottom: 2rem;
        }
        li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0.05) 100%);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid var(--bat-yellow);
            margin: 2.5rem 0;
            box-shadow: 0 8px 20px rgba(255,215,0,0.15);
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--batman-dark);
            text-align: center;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: var(--batman-dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--bat-yellow);
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--gotham-blue);
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: var(--gotham-blue);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--bat-yellow);
            color: var(--batman-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2.2rem;
            color: #ddd;
            margin: 1.5rem 0;
            cursor: pointer;
        }
        .stars i {
            padding: 0 5px;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--bat-yellow);
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            resize: vertical;
            min-height: 150px;
            font-family: inherit;
        }
        .comment-form button {
            width: 100%;
            padding: 1.2rem;
            background: var(--gotham-blue);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--accent-red);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(198, 40, 40, 0.3);
        }
        footer {
            background: var(--batman-dark);
            color: white;
            padding: 4rem 5% 2rem;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-links h4 {
            color: var(--bat-yellow);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--bat-yellow);
            padding-left: 8px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--bat-yellow);
        }
        friend-link a {
            color: var(--bat-yellow);
            font-weight: 700;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        .update-time {
            background: var(--gray-bg);
            padding: 1rem;
            text-align: center;
            border-radius: 10px;
            margin: 2rem 0;
            font-weight: 600;
            color: var(--text-secondary);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .content-area { padding: 2rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1.5rem;
                gap: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 5%;
                top: 1.5rem;
            }
            .my-logo { font-size: 2.2rem; }
        }
        .emoji {
            font-size: 1.5rem;
            margin: 0 5px;
            vertical-align: middle;
        }
        .bolder {
            font-weight: 900;
            color: var(--batman-dark);
            font-size: 1.1em;
        }
        .divider {
            height: 3px;
            background: linear-gradient(90deg, var(--bat-yellow), var(--gotham-blue));
            margin: 3rem 0;
            border-radius: 3px;
        }
