        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #8BC34A;
            --primary-dark: #689F38;
            --secondary: #FF9800;
            --accent: #03A9F4;
            --text: #333333;
            --text-light: #666666;
            --background: #F9F9F9;
            --card-bg: #FFFFFF;
            --border: #E0E0E0;
            --shadow: 0 4px 12px rgba(0,0,0,0.05);
            --radius: 12px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--background);
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-dark);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            box-shadow: var(--shadow);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
            color: white;
        }
        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        header {
            background-color: var(--card-bg);
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo a {
            color: inherit;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--primary-dark);
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--card-bg);
            padding: 20px;
            border-top: 1px solid var(--border);
            animation: slideDown 0.4s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 0;
            border-bottom: 1px solid var(--border);
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 20px 0 10px;
            font-size: 0.95rem;
            color: var(--text-light);
            background-color: var(--background);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.95)), url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=40');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            color: var(--primary-dark);
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        .article-body h3 {
            font-size: 1.6rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--text);
        }
        .article-body blockquote {
            border-left: 4px solid var(--secondary);
            padding-left: 25px;
            margin: 2.5rem 0;
            font-style: italic;
            color: var(--text-light);
            font-size: 1.2rem;
        }
        .article-body ul, .article-body ol {
            margin-left: 25px;
            margin-bottom: 1.8rem;
        }
        .article-body li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: rgba(139, 195, 74, 0.1);
            padding: 25px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            margin: 2.5rem 0;
        }
        .feature-image {
            margin: 3rem 0;
            position: relative;
        }
        .feature-image figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            color: var(--primary-dark);
        }
        .popular-characters {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .character-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background-color: var(--background);
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .character-item:hover {
            background-color: rgba(139, 195, 74, 0.1);
        }
        .character-item img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        .character-name {
            font-weight: 600;
            color: var(--text);
        }
        .interactive-section {
            background-color: var(--card-bg);
            border-radius: var(--radius);
            padding: 40px;
            margin: 60px 0;
            box-shadow: var(--shadow);
        }
        .interactive-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--primary-dark);
            text-align: center;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        .rating-star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-star:hover,
        .rating-star.active {
            color: var(--secondary);
        }
        .form-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background-color: var(--card-bg);
            padding: 20px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
            color: var(--text);
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: #2C3E50;
            color: #ecf0f1;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bdc3c7;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .article-body h2 {
                font-size: 1.7rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
            .interactive-section {
                padding: 30px 20px;
            }
            .form-actions {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
        }
