        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-red: #d32f2f;
            --primary-blue: #0d47a1;
            --accent-yellow: #ffeb3b;
            --dark-bg: #121212;
            --light-bg: #f5f5f5;
            --text-light: #ffffff;
            --text-dark: #333333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a237e 100%);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--accent-yellow), var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #666;
        }
        .hero {
            background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1635805737707-575885ab0820?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: var(--text-light);
            text-align: center;
            padding: 4rem 2rem;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
        }
        .search-box button:hover {
            background-color: #b71c1c;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            color: var(--primary-blue);
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        .content-section h3 {
            color: var(--dark-bg);
            margin: 1.8rem 0 1rem;
            font-size: 1.6rem;
        }
        .content-section h4 {
            color: var(--primary-red);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.3rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffde7;
            border-left: 5px solid var(--accent-yellow);
            padding: 1.2rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .villain-card {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: #f8f9fa;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card-content {
            padding: 1.2rem;
        }
        .card h4 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            border-bottom: 2px solid #eee;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget li {
            padding: 0.7rem 0;
            border-bottom: 1px dashed #eee;
        }
        .sidebar-widget li:last-child {
            border-bottom: none;
        }
        .comment-rating-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 3rem;
            box-shadow: var(--shadow);
        }
        .rating-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .stars {
            color: #ffc107;
            font-size: 1.5rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        form input, form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }
        form textarea {
            min-height: 120px;
            resize: vertical;
        }
        form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        form button:hover {
            background-color: #1565c0;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: var(--accent-yellow);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article {
                padding: 1.5rem;
            }
        }
