* {
            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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #FF6B35;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #FFD166;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }
        .nav-desktop a:hover {
            color: #FF6B35;
            background: rgba(255, 107, 53, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: white;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem 2rem;
            text-decoration: none;
            color: #333;
            border-bottom: 1px solid #eee;
            transition: background 0.3s ease;
        }
        .nav-mobile a:hover {
            background: #f8f9fa;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.9);
            padding: 1rem 0;
            margin-top: 80px;
        }
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #FF6B35;
        }
        main {
            background: white;
            margin: 2rem auto;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .hero {
            background: linear-gradient(135deg, #FF6B35, #FFD166);
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            position: relative;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .content-section {
            padding: 3rem 2rem;
        }
        .content-section h2 {
            color: #FF6B35;
            margin: 2rem 0 1rem 0;
            font-size: 2rem;
            border-left: 5px solid #FFD166;
            padding-left: 1rem;
        }
        .content-section h3 {
            color: #333;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.5rem;
        }
        .content-section p {
            margin-bottom: 1rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .character-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #FFD166;
        }
        .character-image {
            width: 100%;
            height: 200px;
            background: #ddd;
            border-radius: 10px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }
        .search-section, .comments-section, .rating-section {
            background: #f8f9fa;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 15px;
            border-left: 5px solid #FF6B35;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        input, textarea, select {
            padding: 0.75rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            flex: 1;
            min-width: 200px;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #FF6B35;
        }
        button {
            background: linear-gradient(135deg, #FF6B35, #FF8E53);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover, .star.active {
            color: #FFD166;
        }
        .web-links {
            background: #2c3e50;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            display: block;
        }
        footer {
            background: #1a252f;
            color: white;
            text-align: center;
            padding: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #FFD166 0%, #FFD166 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        .stat-box {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            margin: 1rem 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
        }
        @media (max-width: 768px) {
            .character-grid {
                grid-template-columns: 1fr;
            }
            .content-section {
                padding: 2rem 1rem;
            }
            .hero {
                padding: 2rem 1rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            .no-print { display: none; }
            body { background: white; }
            .hero { background: #f8f9fa; color: black; }
        }
