* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #ff9c00;
            --secondary-color: #1a237e;
            --accent-color: #f50057;
            --text-color: #333;
            --light-bg: #f5f5f5;
            --dark-bg: #1a1a1a;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        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(--secondary-color), var(--dark-bg));
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        .logo:hover {
            color: var(--white);
            transition: var(--transition);
        }
        .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: var(--transition);
        }
        .nav-link:hover {
            background-color: var(--primary-color);
            color: var(--dark-bg);
        }
        .hamburger {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--dark-bg);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-menu.active {
            display: block;
        }
        .breadcrumb {
            background-color: var(--white);
            padding: 1rem 0;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .breadcrumb-content {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .breadcrumb-item {
            color: var(--text-color);
            text-decoration: none;
        }
        .breadcrumb-item:hover {
            color: var(--primary-color);
        }
        .breadcrumb-separator {
            color: #666;
        }
        .search-section {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--secondary-color);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .hero {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: var(--white);
            border-radius: 10px;
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .hero-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: var(--shadow);
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .character-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        .character-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .character-info {
            padding: 1.5rem;
        }
        .character-name {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        .character-role {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .character-description {
            color: #666;
            margin-bottom: 1rem;
        }
        .rating-section {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ddd;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--primary-color);
        }
        .rating-input {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            resize: vertical;
            min-height: 100px;
        }
        .submit-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: var(--secondary-color);
        }
        .comments-section {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .comment-input {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            resize: vertical;
            min-height: 100px;
        }
        .comment {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--secondary-color);
        }
        .comment-date {
            color: #666;
            font-size: 0.9rem;
        }
        .footer-links {
            background: var(--white);
            padding: 3rem 2rem;
            margin-bottom: 2rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background: var(--dark-bg);
            color: var(--white);
            padding: 3rem 0 1rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .footer-links-list {
            list-style: none;
        }
        .footer-links-list li {
            margin-bottom: 0.5rem;
        }
        .footer-links-list a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links-list a:hover {
            color: var(--primary-color);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #999;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.2em;
            background-position: 0 88%;
            transition: background-size 0.25s ease-in;
        }
        .highlight:hover {
            background-size: 100% 88%;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
