:root {
            --dark-bg: #0c0c14;
            --batman-black: #1a1a1a;
            --batman-yellow: #f0c75e;
            --superman-blue: #0066cc;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --accent-red: #cc3300;
            --section-padding: 2rem;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--batman-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--superman-blue);
        }
        .header {
            background: linear-gradient(to bottom, var(--batman-black), transparent);
            padding: 1rem var(--section-padding);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            font-family: 'Impact', sans-serif;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--batman-yellow);
            text-shadow: 2px 2px 0 #000;
        }
        .logo span {
            color: var(--superman-blue);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--batman-yellow);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.98);
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 5px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem 0;
            border-bottom: 1px solid #333;
        }
        .breadcrumb {
            padding: 1rem var(--section-padding);
            background-color: rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--batman-yellow);
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: var(--section-padding);
            max-width: 1400px;
            margin: 0 auto;
        }
        .article-content {
            background-color: rgba(26, 26, 26, 0.7);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--batman-yellow);
            line-height: 1.2;
            border-bottom: 3px solid var(--superman-blue);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem 0;
            color: var(--superman-blue);
            padding-left: 0.5rem;
            border-left: 4px solid var(--batman-yellow);
        }
        h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem 0;
            color: var(--text-light);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 300;
            color: var(--text-gray);
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(0, 102, 204, 0.1);
            border-left: 4px solid var(--superman-blue);
        }
        .highlight {
            background-color: rgba(240, 199, 94, 0.1);
            border-left: 4px solid var(--batman-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.1rem;
            padding: 1.5rem;
            margin: 2rem 0;
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid var(--accent-red);
        }
        b, strong {
            color: var(--batman-yellow);
            font-weight: 700;
        }
        .search-box, .comment-form, .rating-form {
            background-color: rgba(26, 26, 26, 0.9);
            border-radius: 10px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid #333;
        }
        .module-title {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--batman-yellow);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            margin-bottom: 1rem;
            background-color: #111;
            border: 1px solid #444;
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, var(--batman-yellow), #e6b800);
            color: var(--batman-black);
            border: none;
            padding: 0.9rem 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #e6b800, var(--batman-yellow));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(240, 199, 94, 0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--batman-yellow);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 3px solid var(--superman-blue);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -1rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            padding: 2.5rem var(--section-padding);
            background-color: rgba(12, 12, 20, 0.9);
            border-top: 1px solid #333;
        }
        .web-link {
            background: rgba(26, 26, 26, 0.8);
            padding: 1.2rem;
            border-radius: 8px;
            min-width: 250px;
            flex: 1;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            border-color: var(--batman-yellow);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding: 2rem;
            color: var(--text-gray);
            font-size: 0.9rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: -1;
                flex-direction: row;
                flex-wrap: wrap;
            }
            .search-box, .comment-form, .rating-form {
                flex: 1 1 300px;
            }
        }
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: var(--section-padding);
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .web-link {
                min-width: 100%;
            }
        }
        @media (max-width: 480px) {
            :root {
                --section-padding: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .module-title {
                font-size: 1.1rem;
            }
        }
