:root {
            --primary: #2a3b5c;
            --secondary: #c41e3a;
            --accent: #f9a826;
            --light: #f5f7fa;
            --dark: #1a2537;
            --text: #333;
            --text-light: #666;
            --shadow: rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            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.6;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .logo span {
            background: linear-gradient(to right, var(--accent), #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            transition: var(--transition);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: calc(100% - 24px);
        }
        .breadcrumb {
            padding: 12px 0;
            background-color: rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ccc;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 8px;
        }
        .search-container {
            background: linear-gradient(rgba(42, 59, 92, 0.9), rgba(42, 59, 92, 0.95));
            padding: 40px 0;
            text-align: center;
            margin-bottom: 30px;
            border-radius: 0 0 20px 20px;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 18px 25px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .search-box button {
            position: absolute;
            right: 8px;
            top: 8px;
            background: linear-gradient(to right, var(--secondary), #e63946);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: linear-gradient(to right, #e63946, var(--secondary));
            transform: scale(1.05);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px var(--shadow);
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--accent);
        }
        h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 25px 0 15px;
        }
        h4 {
            color: var(--dark);
            font-size: 1.2rem;
            margin: 20px 0 10px;
        }
        .meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 30px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .update-time {
            color: var(--secondary);
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: var(--dark);
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid var(--accent);
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 25px;
            border-radius: 10px;
            border: 2px dashed var(--accent);
            margin: 30px 0;
        }
        .highlight h3 {
            color: var(--secondary);
            margin-top: 0;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .character-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: var(--transition);
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow);
        }
        .character-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .character-card h4 {
            padding: 15px;
            margin: 0;
            background-color: var(--primary);
            color: white;
        }
        .character-card p {
            padding: 0 15px 15px;
            font-size: 0.95rem;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .tier-list {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid var(--secondary);
        }
        .tier-list table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        .tier-list th, .tier-list td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .tier-list th {
            background-color: var(--primary);
            color: white;
        }
        .tier-list tr:hover {
            background-color: #f0f0f0;
        }
        .tip-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid #7e57c2;
        }
        .tip-box i {
            color: #7e57c2;
            margin-right: 10px;
        }
        .link-list {
            list-style: none;
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
        }
        .link-list a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }
        .link-list a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        .link-list i {
            color: var(--accent);
            margin-right: 10px;
        }
        sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .download-box {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            text-align: center;
            padding: 30px;
            border-radius: 15px;
        }
        .download-box h3 {
            color: white;
            border: none;
        }
        .download-btn {
            display: inline-block;
            background: linear-gradient(to right, var(--accent), #ff8a00);
            color: white;
            text-decoration: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 20px;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(249, 168, 38, 0.3);
        }
        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(249, 168, 38, 0.4);
            background: linear-gradient(to right, #ff8a00, var(--accent));
        }
        .popular-posts li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        .popular-posts a {
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        .popular-posts a:hover {
            color: var(--secondary);
        }
        .popular-posts i {
            color: var(--accent);
            margin-right: 10px;
        }
        .comment-section, .rating-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 10px 30px var(--shadow);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 25px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            margin: 10px 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover, .rating-stars i.active {
            color: var(--accent);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--primary);
        }
        .form-group input, .form-group textarea {
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(249, 168, 38, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, var(--secondary), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px var(--shadow);
        }
        .comments-list {
            margin-top: 40px;
        }
        .comment {
            padding: 25px;
            border-bottom: 1px solid #eee;
            background-color: #fafafa;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .comment-author {
            color: var(--primary);
            font-weight: 600;
        }
        footer {
            background: linear-gradient(135deg, var(--dark), #111927);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            padding: 8px 0;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .friend-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 5px;
            transition: var(--transition);
        }
        .friend-link a {
            color: #ddd;
            text-decoration: none;
        }
        .friend-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                right: 20px;
                top: 20px;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
            }
            nav.active {
                max-height: 500px;
                padding-top: 20px;
            }
            .nav-links {
                flex-direction: column;
                gap: 10px;
            }
            .content, .widget {
                padding: 25px;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content, .widget, .comment-section, .rating-section {
            animation: fadeIn 0.8s ease-out;
        }
