* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #00A6A6;
            --text-color: #333333;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-mobile {
            display: none;
        }
        @media (max-width: 768px) {
            .nav-mobile {
                display: block;
            }
        }
        .nav-link {
            color: var(--white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--secondary-color);
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-menu.active {
            display: flex;
        }
        .breadcrumb {
            background-color: var(--white);
            padding: 1rem 0;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .breadcrumb-links {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb-links a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb-links a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            margin-bottom: 1rem;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .content-section {
            background: var(--white);
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--secondary-color);
            margin: 2rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        h3 {
            color: var(--primary-color);
            margin: 1.5rem 0 1rem 0;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #FFF9C4;
            padding: 1rem;
            border-left: 4px solid var(--accent-color);
            margin: 1.5rem 0;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .character-card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .character-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .interactive-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
            padding: 3rem 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            text-align: center;
        }
        .search-box, .comment-form, .rating-form {
            max-width: 500px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }
        button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #E55A2B;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #FFD700;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: var(--white);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: bold;
        }
        .web-link a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        footer {
            background: var(--secondary-color);
            color: var(--white);
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1rem 0;
        }
        .social-links a {
            color: var(--white);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .social-links a:hover {
            transform: scale(1.2);
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .bold {
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
