        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a2c;
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6ab3f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2b4a 0%, #0a1428 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a3f6d;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #6ab3f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(106, 179, 247, 0.15);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e0e7ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a2b4a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a3f6d;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a0b3d6;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 5px;
            color: #6ab3f7;
        }
        main {
            padding: 2rem 0;
            background-color: #111d33;
            min-height: 80vh;
        }
        article {
            background-color: rgba(15, 26, 44, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            text-align: center;
            line-height: 1.2;
        }
        .article-meta {
            text-align: center;
            color: #a0b3d6;
            margin-bottom: 2rem;
            font-style: italic;
            border-bottom: 1px dashed #2a3f6d;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: #6ab3f7;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #b8d4ff;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tier-list-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .tier-category {
            background: linear-gradient(145deg, #1c2e50, #15203b);
            border-radius: 12px;
            padding: 1.5rem;
            border: 2px solid;
            box-shadow: 0 8px 16px rgba(0,0,0,0.4);
        }
        .tier-ss { border-color: #ff7eb3; }
        .tier-s { border-color: #ffcc00; }
        .tier-a { border-color: #6ab3f7; }
        .tier-b { border-color: #7afc7a; }
        .tier-c { border-color: #a0b3d6; }
        .tier-category h3 {
            text-align: center;
            font-size: 1.8rem;
            margin-top: 0;
        }
        .character-card {
            display: flex;
            align-items: center;
            background-color: rgba(255,255,255,0.05);
            padding: 0.8rem;
            margin: 0.8rem 0;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .character-card:hover {
            transform: translateY(-5px);
            background-color: rgba(106, 179, 247, 0.2);
        }
        .char-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 1rem;
            border: 2px solid currentColor;
        }
        .char-info h4 {
            font-size: 1.2rem;
            margin-bottom: 0.2rem;
        }
        .interactive-section {
            background-color: rgba(26, 43, 74, 0.6);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .search-box form, .comment-form form, .rating-form form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .search-box input, .comment-form textarea, .comment-form input, .rating-form select {
            flex-grow: 1;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            border: 1px solid #2a3f6d;
            background-color: #0f1a2c;
            color: #e0e7ff;
            font-size: 1rem;
            min-width: 200px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            resize: vertical;
        }
        button {
            background: linear-gradient(90deg, #6ab3f7, #2a5fa3);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #2a5fa3, #6ab3f7);
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            margin: 1rem 0;
        }
        .stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars .star.active,
        .stars .star:hover,
        .stars .star:hover ~ .star {
            color: #ffcc00;
        }
        .article-image {
            margin: 2.5rem auto;
            max-width: 800px;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid #2a3f6d;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #a0b3d6;
            padding: 0.8rem;
            background-color: rgba(26, 43, 74, 0.6);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 2rem;
            background-color: #1a2b4a;
            border-top: 2px solid #2a3f6d;
            border-bottom: 2px solid #2a3f6d;
        }
        .web-link {
            background-color: rgba(15, 26, 44, 0.8);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(106, 179, 247, 0.2);
        }
        footer {
            padding: 2rem 0;
            text-align: center;
            color: #a0b3d6;
            font-size: 0.9rem;
            background-color: #0a1428;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 1024px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .tier-list-container {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-box form, .comment-form form, .rating-form form {
                flex-direction: column;
                align-items: stretch;
            }
            button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.5rem;
            }
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
