        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #8a2be2;
            --secondary-color: #ff6b35;
            --dark-bg: #1a1a2e;
            --content-bg: #0f3460;
            --light-text: #e6e6fa;
            --accent-color: #00d4ff;
            --card-bg: #162447;
            --border-color: #394989;
            --success-color: #4CAF50;
            --header-height: 80px;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Arial', 'Helvetica', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.7;
            color: var(--light-text);
            background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 15, 35, 0.95);
            border-bottom: 2px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            height: var(--header-height);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        .logo {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo a {
            background: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(138, 43, 226, 0.2);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .mobile-nav {
            position: fixed;
            top: var(--header-height);
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            border-top: 1px solid var(--border-color);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.1rem;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(21, 36, 71, 0.7);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--light-text);
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--secondary-color);
        }
        .search-section {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid var(--primary-color);
            border-radius: 50px 0 0 50px;
            background: rgba(255,255,255,0.1);
            color: var(--light-text);
            font-size: 1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-button {
            background: linear-gradient(45deg, var(--primary-color), #9b4dff);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 30px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(45deg, #7a1fd1, #8a2be2);
            transform: scale(1.02);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 30px 0;
        }
        .article-section {
            background: var(--content-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            color: var(--accent-color);
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: #ffcc00;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: #fff;
            background: linear-gradient(90deg, transparent, rgba(255,107,53,0.2), transparent);
            padding: 20px;
            border-left: 5px solid var(--secondary-color);
            border-radius: 5px;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.15);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
            color: #ffcc00;
        }
        .tier-list-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .tier-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            border: 2px solid;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .tier-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
        }
        .tier-S { border-color: #ffcc00; }
        .tier-A { border-color: #00ff88; }
        .tier-B { border-color: #00aaff; }
        .tier-C { border-color: #ff6b35; }
        .tier-D { border-color: #ff3860; }
        .tier-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .tier-title {
            font-size: 1.8rem;
            font-weight: 800;
        }
        .tier-S .tier-title { color: #ffcc00; }
        .tier-A .tier-title { color: #00ff88; }
        .tier-B .tier-title { color: #00aaff; }
        .tier-C .tier-title { color: #ff6b35; }
        .tier-D .tier-title { color: #ff3860; }
        .character-list {
            list-style: none;
        }
        .character-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        .character-list li:hover {
            background: rgba(255,255,255,0.1);
        }
        .character-name {
            font-weight: bold;
            font-size: 1.1rem;
        }
        .character-role {
            font-size: 0.9rem;
            color: #aaa;
            font-style: italic;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 30px 0;
            border: 3px solid var(--primary-color);
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .user-interaction {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            margin: 50px 0;
            border: 1px solid var(--border-color);
        }
        .interaction-title {
            text-align: center;
            margin-bottom: 30px;
            color: var(--accent-color);
        }
        .rating-section, .comment-section {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--light-text);
        }
        .form-input, .form-textarea {
            padding: 15px;
            border-radius: 10px;
            border: 2px solid var(--border-color);
            background: rgba(255,255,255,0.08);
            color: var(--light-text);
            font-size: 1rem;
            font-family: var(--font-body);
            outline: none;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--accent-color);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 50px;
            padding: 18px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: center;
            min-width: 200px;
        }
        .submit-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5);
        }
        .web-links-section {
            margin: 60px 0 40px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(138, 43, 226, 0.15);
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .site-footer {
            background-color: #0a0f1f;
            border-top: 3px solid var(--primary-color);
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            width: 100%;
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .container {
                padding: 0 15px;
            }
            .article-section, .search-section, .user-interaction {
                padding: 25px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.8rem;
            }
            .tier-list-container {
                grid-template-columns: 1fr;
            }
            .form-input, .form-textarea {
                padding: 12px;
            }
            .submit-button {
                padding: 15px 25px;
                font-size: 1.1rem;
            }
        }
