        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0f3460;
            --highlight-color: #e94560;
            --text-color: #f1f1f1;
            --text-secondary: #b8b8b8;
            --card-bg: rgba(30, 30, 46, 0.8);
            --border-color: #2d2d44;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --gradient: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background: var(--primary-color);
            background-image: radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.1) 0%, transparent 20%),
                            radial-gradient(circle at 80% 70%, rgba(15, 52, 96, 0.15) 0%, transparent 20%);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, #e94560, #0f3460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 16px;
            border-radius: 20px;
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--highlight-color);
            background: rgba(233, 69, 96, 0.1);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--highlight-color);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 70%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--secondary-color);
            padding: 20px;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-color);
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--highlight-color);
            padding-left: 25px;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(26, 26, 46, 0.7);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--highlight-color);
        }
        .breadcrumb span {
            margin: 0 8px;
            color: var(--text-secondary);
        }
        .search-container {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            background: rgba(30, 30, 46, 0.9);
            color: var(--text-color);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--highlight-color);
            box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
        }
        .search-btn {
            padding: 15px 30px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
        }
        main {
            padding: 20px 0 40px;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 30px;
            background: var(--gradient);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }
        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/>');
            background-size: cover;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content-section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h2 {
            font-size: 2rem;
            color: var(--highlight-color);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-color);
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--highlight-color);
        }
        h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: #a3b1cc;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(233, 69, 96, 0.1), transparent);
            padding: 20px;
            border-left: 4px solid var(--highlight-color);
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .banner-card {
            background: rgba(15, 52, 96, 0.3);
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .banner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .banner-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        .banner-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }
        .banner-date {
            background: var(--highlight-color);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .character-card {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }
        .character-card:hover {
            transform: scale(1.05);
            border-color: var(--highlight-color);
        }
        .character-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .character-info {
            padding: 15px;
        }
        .character-name {
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }
        .character-element {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 5px;
        }
        .element-pyro { background: linear-gradient(45deg, #ff6b35, #ffa500); }
        .element-hydro { background: linear-gradient(45deg, #00b4d8, #0077b6); }
        .element-anemo { background: linear-gradient(45deg, #06d6a0, #118ab2); }
        .element-electro { background: linear-gradient(45deg, #9d4edd, #560bad); }
        .element-dendro { background: linear-gradient(45deg, #38b000, #70e000); }
        .element-cryo { background: linear-gradient(45deg, #48cae4, #0096c7); }
        .element-geo { background: linear-gradient(45deg, #ffb703, #fb8500); }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .comment-section, .rating-section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: rgba(30, 30, 46, 0.9);
            color: var(--text-color);
            font-family: inherit;
            transition: var(--transition);
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: var(--highlight-color);
            box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
        }
        .submit-btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            font-size: 1rem;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 2px solid var(--border-color);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: var(--highlight-color);
        }
        .web-link a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--highlight-color);
        }
        footer {
            background: var(--secondary-color);
            padding: 50px 0 20px;
            margin-top: 50px;
            border-top: 2px solid var(--border-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--highlight-color);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--highlight-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .character-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .content-section {
                padding: 25px;
            }
            .banner-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .article-header {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .character-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                width: 100%;
                justify-content: center;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .keyword {
            color: var(--highlight-color);
            font-weight: 700;
        }
        .note {
            background: rgba(255, 193, 7, 0.1);
            border-left: 4px solid #ffc107;
            padding: 15px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #a3b1cc;
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            margin: 25px 0;
            background: rgba(15, 52, 96, 0.2);
            border-radius: 0 8px 8px 0;
        }
        .tooltip {
            position: relative;
            display: inline-block;
            border-bottom: 1px dotted var(--highlight-color);
            cursor: help;
        }
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 200px;
            background-color: var(--secondary-color);
            color: var(--text-color);
            text-align: center;
            border-radius: 6px;
            padding: 10px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.9rem;
            border: 1px solid var(--border-color);
        }
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
