* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #ffeb3b;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo a:hover { color: #fff; text-shadow: 0 0 10px #ffeb3b; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e1f5fe;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active { color: #ffeb3b; border-bottom-color: #ffeb3b; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e3f2fd;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #1a237e; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #666; }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-grid { grid-template-columns: 1fr; }
        }
        article { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        h1 { color: #1a237e; font-size: 2.8rem; margin-bottom: 1.5rem; line-height: 1.2; }
        h2 { color: #311b92; font-size: 2rem; margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #ffeb3b; }
        h3 { color: #5c6bc0; font-size: 1.5rem; margin: 1.8rem 0 1rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.2rem; color: #555; font-weight: 500; background: #f3e5f5; padding: 1.2rem; border-left: 5px solid #9c27b0; border-radius: 0 8px 8px 0; }
        .highlight { background-color: #fff9c4; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 600; }
        .character-card {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .card {
            background: #f5f5f5;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #ddd;
        }
        .card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
        .card img { width: 100%; height: 200px; object-fit: cover; }
        .card-content { padding: 1.5rem; }
        .card h3 { margin-top: 0; }
        .stats { display: flex; justify-content: space-between; margin-top: 1rem; font-size: 0.9rem; color: #666; }
        .featured-img { margin: 2.5rem 0; text-align: center; }
        .featured-img img { border-radius: 10px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
        .img-caption { font-style: italic; color: #777; margin-top: 0.5rem; font-size: 0.95rem; }
        blockquote {
            border-left: 5px solid #ff9800;
            background: #fff3e0;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        .content-link {
            color: #1a237e;
            text-decoration: none;
            border-bottom: 1px dotted #1a237e;
            font-weight: 600;
        }
        .content-link:hover { color: #ff5722; border-bottom-style: solid; }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 { font-size: 1.3rem; margin-top: 0; }
        .search-form { display: flex; margin-top: 1rem; }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: #1a237e;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #311b92; }
        .rating-widget .stars { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .rating-widget .star { color: #ddd; font-size: 1.8rem; cursor: pointer; transition: color 0.2s; }
        .rating-widget .star:hover,
        .rating-widget .star.active { color: #ffc107; }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-top: 1rem;
            font-family: inherit;
            min-height: 100px;
        }
        .btn {
            background: linear-gradient(to right, #ff5722, #ff9800);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
            margin-top: 1rem;
            display: inline-block;
        }
        .btn:hover { opacity: 0.9; }
        .footer-links {
            background: #263238;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #37474f;
            padding: 1.2rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .web-link:hover { background: #455a64; }
        .web-link a {
            color: #bbdefb;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover { color: #ffcc80; }
        .site-footer {
            background: #1a237e;
            color: #e3f2fd;
            text-align: center;
            padding: 2rem 0;
        }
        .site-footer a { color: #ffeb3b; text-decoration: none; }
        .site-footer a:hover { text-decoration: underline; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: #1a237e;
                transition: left 0.4s ease;
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active { left: 0; }
            .main-nav ul { flex-direction: column; gap: 1.5rem; }
            .main-nav a { font-size: 1.1rem; }
            h1 { font-size: 2.2rem; }
            .article-grid { gap: 2rem; }
            article, .sidebar-widget { padding: 1.8rem; }
        }
