:root {
            --primary-bg: #0a0a12;
            --secondary-bg: #14142a;
            --accent-color: #00d9ff;
            --accent-secondary: #b042ff;
            --text-primary: #f0f0ff;
            --text-secondary: #b0b0d0;
            --card-bg: #1a1a35;
            --border-color: #2a2a55;
            --success-color: #2ecc71;
            --warning-color: #f39c12;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--primary-bg);
            background-image: radial-gradient(circle at 20% 30%, rgba(42, 42, 85, 0.3) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(176, 66, 255, 0.15) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--accent-color);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .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: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(0, 217, 255, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .search-section {
            background: linear-gradient(135deg, var(--secondary-bg), #0d0d1a);
            padding: 30px 0;
            margin-bottom: 40px;
            border-radius: 0 0 20px 20px;
        }
        .search-container {
            max-width: 700px;
            margin: 0 auto;
        }
        .search-box {
            display: flex;
            background-color: rgba(255,255,255,0.05);
            border: 2px solid var(--border-color);
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
        }
        .search-box input {
            flex-grow: 1;
            background: transparent;
            border: none;
            padding: 15px 25px;
            color: var(--text-primary);
            font-size: 1.1rem;
        }
        .search-box button {
            background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
            border: none;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .search-box button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 60px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--secondary-bg);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-color);
        }
        .article-header {
            margin-bottom: 40px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--accent-color), #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        h2, h3 {
            color: var(--accent-color);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--accent-secondary);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            border-bottom: 1px dashed var(--border-color);
            padding-bottom: 5px;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(0, 217, 255, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .mod-category {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .mod-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid transparent;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mod-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 217, 255, 0.15);
        }
        .mod-card h4 {
            color: var(--accent-secondary);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        .rarity-common { color: #b0b0d0; }
        .rarity-uncommon { color: #2ecc71; }
        .rarity-rare { color: #3498db; }
        .rarity-legendary { color: #f39c12; }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 2px solid var(--border-color);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .caption {
            color: var(--text-secondary);
            font-style: italic;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #f39c12;
            margin: 20px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: color 0.3s, transform 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            background-color: rgba(255,255,255,0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, var(--accent-secondary), var(--accent-color));
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            transform: scale(1.03);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .footer-links {
            background-color: var(--secondary-bg);
            padding: 50px 0 30px;
            border-top: 2px solid var(--border-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(255,255,255,0.03);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(0, 217, 255, 0.1);
            transform: translateY(-5px);
        }
        .site-footer {
            background-color: #05050a;
            padding: 30px 0;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--text-secondary);
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-links a:hover {
            color: var(--accent-color);
            transform: scale(1.2);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .keyword {
            font-weight: bold;
            color: var(--accent-secondary);
        }
        .note {
            background-color: rgba(243, 156, 18, 0.1);
            border-left: 4px solid var(--warning-color);
            padding: 15px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
