        * { 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: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { text-decoration: none; color: #2c80ff; transition: color 0.3s; }
        a:hover { color: #ff6b2c; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: #1a2b4c; color: white; padding: 1rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2rem; font-weight: 800; color: #ffde59; text-transform: uppercase; letter-spacing: 1px; }
        .logo a:hover { color: #fff; }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 2rem; }
        .nav-links a { color: #e0e0e0; font-weight: 600; padding: 0.5rem 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover, .nav-links a.active { color: #ffde59; border-bottom-color: #ffde59; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ffde59; }
        .breadcrumb { background: #f1f8ff; padding: 0.8rem 0; font-size: 0.9rem; border-bottom: 1px solid #d1e3ff; }
        .breadcrumb a { color: #5a7bb0; }
        .breadcrumb a:hover { color: #2c80ff; }
        .breadcrumb span { color: #888; }
        main { flex: 1; padding: 2rem 0; }
        .article-header { text-align: center; margin-bottom: 3rem; padding: 2rem; background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
        .article-header h1 { font-size: 2.8rem; color: #1a2b4c; margin-bottom: 1rem; }
        .article-meta { color: #666; font-size: 0.95rem; display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; }
        .content-area { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        article { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
        article h2 { color: #2c80ff; margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 3px solid #ffde59; }
        article h3 { color: #1a2b4c; margin: 1.5rem 0 0.8rem; }
        article p { margin-bottom: 1.2rem; text-align: justify; }
        article strong { color: #ff6b2c; }
        .highlight-box { background: #f0f8ff; border-left: 5px solid #2c80ff; padding: 1.5rem; margin: 1.5rem 0; border-radius: 0 10px 10px 0; }
        .character-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
        .character-card { background: #f9f9f9; padding: 1.5rem; border-radius: 10px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; border: 2px solid #eaeaea; }
        .character-card:hover { transform: translateY(-5px); box-shadow: 0 15px 25px rgba(0,0,0,0.1); }
        .character-card i { font-size: 2.5rem; color: #ff6b2c; margin-bottom: 1rem; }
        .image-container { text-align: center; margin: 2.5rem 0; }
        .image-container img { border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); border: 5px solid white; }
        .image-caption { font-style: italic; color: #666; margin-top: 0.8rem; }
        aside { position: sticky; top: 120px; height: fit-content; }
        .sidebar-widget { background: white; padding: 1.8rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); margin-bottom: 2rem; }
        .sidebar-widget h3 { color: #1a2b4c; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #ffde59; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.8rem; border: 2px solid #d1e3ff; border-radius: 8px 0 0 8px; outline: none; }
        .search-form button { background: #2c80ff; color: white; border: none; padding: 0 1.5rem; border-radius: 0 8px 8px 0; cursor: pointer; transition: background 0.3s; }
        .search-form button:hover { background: #1a6ce0; }
        .rating-form { display: flex; flex-direction: column; gap: 1rem; }
        .stars { display: flex; justify-content: center; gap: 0.5rem; font-size: 1.8rem; color: #ddd; cursor: pointer; }
        .stars .active { color: #ffde59; }
        .rating-form button { background: #ff6b2c; color: white; border: none; padding: 0.8rem; border-radius: 8px; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .rating-form button:hover { background: #e55a1f; }
        .comment-form textarea { width: 100%; padding: 1rem; border: 2px solid #d1e3ff; border-radius: 8px; margin-bottom: 1rem; resize: vertical; min-height: 120px; }
        .comment-form button { background: #1a2b4c; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 8px; cursor: pointer; transition: background 0.3s; }
        .comment-form button:hover { background: #2c3e5c; }
        .related-links ul { list-style: none; }
        .related-links li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
        .related-links li:before { content: '⚽'; position: absolute; left: 0; }
        footer { background: #1a2b4c; color: #e0e0e0; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #ffde59; margin-bottom: 1.5rem; font-size: 1.3rem; }
        friend-link { display: block; margin-bottom: 0.8rem; }
        friend-link a { color: #a0c1ff; }
        friend-link a:hover { color: #ffde59; }
        .copyright { text-align: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #2a3b5c; color: #aaa; font-size: 0.9rem; }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background: #1a2b4c;
                text-align: center;
                transition: left 0.5s;
                padding: 2rem 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active { left: 0; }
            .nav-links li { margin: 1rem 0; }
            .article-header h1 { font-size: 2.2rem; }
            .character-list { grid-template-columns: 1fr; }
        }
