* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e63946;
            text-decoration: none;
        }
        .logo:hover {
            color: #f1faee;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .nav-desktop a:hover {
            background-color: #e63946;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #16213e;
            padding: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid #2a3a5c;
        }
        .nav-mobile a:hover {
            background-color: #e63946;
        }
        .breadcrumb {
            background: #2a3a5c;
            padding: 0.5rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a8dadc;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: white;
        }
        .search-section {
            background: white;
            padding: 2rem 0;
            text-align: center;
            margin: 2rem 0;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 12px;
            border: 2px solid #e63946;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-btn {
            background: #e63946;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background: #d62828;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #1a1a2e;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #e63946;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #16213e;
            font-size: 2rem;
            margin: 2rem 0 1rem 0;
            padding: 0.5rem 0;
            border-left: 4px solid #e63946;
            padding-left: 1rem;
        }
        h3 {
            color: #2a3a5c;
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem 0;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .character-card {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .character-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .highlight {
            background: linear-gradient(135deg, #e63946, #a8dadc);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .fact-box {
            background: #a8dadc;
            border-left: 4px solid #457b9d;
            padding: 1rem;
            margin: 1rem 0;
        }
        .interactive-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .rating-system {
            display: flex;
            gap: 1rem;
            margin: 1rem 0;
            flex-wrap: wrap;
        }
        .rating-btn {
            background: #e9ecef;
            border: 2px solid #adb5bd;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-btn:hover {
            background: #e63946;
            color: white;
            border-color: #e63946;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-input {
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 5px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .submit-btn {
            background: #457b9d;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background: #1d3557;
        }
        .web-links {
            background: #2a3a5c;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: #1a1a2e;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: #a8dadc;
            text-decoration: none;
            font-weight: bold;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background: #1a1a2e;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }
        @media print {
            .nav-desktop, .search-section, .sidebar, .interactive-section, .web-links {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
        }
