        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff6f00;
            --accent: #4a148c;
            --light: #f5f5f5;
            --dark: #121212;
            --text: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: var(--text);
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        .header-container {
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            letter-spacing: -1px;
            background: linear-gradient(90deg, #ffd700, #ff6f00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2.5rem;
            background: none;
            -webkit-text-fill-color: #ff6f00;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .main-content {
            background: white;
            padding: 3rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-header {
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 2rem;
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 2rem 0;
            border: 3px solid var(--secondary);
        }
        h2 {
            font-size: 2rem;
            color: var(--accent);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e0e0e0;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 111, 0, 0.1), transparent);
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .character-card {
            background: var(--light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .character-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .tier-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: gold;
            color: black;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .search-box {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius);
            resize: vertical;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .btn {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(26, 35, 126, 0.2);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            border-left: 3px solid var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1100px) {
            .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                right: 2rem;
                top: 1.5rem;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.5rem;
                padding-top: 1rem;
            }
            .nav-menu.active {
                display: flex;
            }
            .container, .breadcrumb {
                padding: 1rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
            .featured-image {
                height: 250px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .sidebar .widget {
            animation: fadeIn 0.6s ease-out;
        }
        .text-bold { font-weight: 800; }
        .text-secondary { color: var(--secondary); }
        .text-primary { color: var(--primary); }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
