        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a237e;
            --secondary: #283593;
            --accent: #3949ab;
            --highlight: #5c6bc0;
            --text: #f5f5f5;
            --text-secondary: #b0bec5;
            --background: #121212;
            --surface: #1e1e1e;
            --card: #252525;
            --border: #333;
            --success: #4caf50;
            --warning: #ff9800;
            --error: #f44336;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--background);
            color: var(--text);
            line-height: 1.8;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            color: var(--highlight);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #7986cb;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .flex {
            display: flex;
        }
        .grid {
            display: grid;
        }
        .hidden {
            display: none;
        }
        .text-center {
            text-align: center;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .main-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 28px;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ff9800;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--surface);
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid var(--border);
            color: var(--text);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: var(--surface);
            padding: 15px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--highlight);
        }
        .search-section {
            background: var(--card);
            padding: 30px 0;
            margin-bottom: 40px;
            border-radius: 8px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 15px 20px;
            padding-right: 60px;
            border: 2px solid var(--border);
            border-radius: 50px;
            background: var(--surface);
            color: var(--text);
            font-size: 16px;
            outline: none;
            transition: border 0.3s;
        }
        .search-input:focus {
            border-color: var(--accent);
        }
        .search-button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: var(--highlight);
        }
        .article-header {
            margin-bottom: 40px;
        }
        .article-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: white;
            line-height: 1.3;
        }
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .featured-image {
            margin: 40px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .featured-image img {
                height: 300px;
            }
        }
        .image-caption {
            padding: 15px;
            background: var(--surface);
            font-style: italic;
            color: var(--text-secondary);
            text-align: center;
        }
        .article-content {
            font-size: 1.1rem;
            max-width: 900px;
            margin: 0 auto 60px;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 50px 0 20px;
            color: white;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 40px 0 15px;
            color: var(--highlight);
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin: 20px 0 20px 30px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(57, 73, 171, 0.2) 0%, rgba(30, 30, 30, 0.8) 100%);
            border-left: 4px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--card);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--highlight);
            margin-bottom: 10px;
        }
        .mod-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: var(--surface);
            border-radius: 8px;
            overflow: hidden;
        }
        .mod-table th {
            background: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
        }
        .mod-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border);
        }
        .mod-table tr:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .mod-rarity {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        .rarity-common { background: #616161; color: white; }
        .rarity-uncommon { background: #4caf50; color: white; }
        .rarity-rare { background: #2196f3; color: white; }
        .rarity-legendary { background: #ff9800; color: black; }
        .rating-section, .comment-section {
            background: var(--surface);
            padding: 40px;
            border-radius: 10px;
            margin: 60px 0;
            border: 1px solid var(--border);
        }
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-form, .comment-form {
            max-width: 600px;
            margin-bottom: 40px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            margin: 20px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 30px;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0 5px;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 5px;
            color: var(--text);
            font-family: var(--font-main);
            font-size: 16px;
            outline: none;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--accent);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(to right, var(--accent), var(--highlight));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(57, 73, 171, 0.4);
        }
        .user-comments {
            margin-top: 40px;
        }
        .comment {
            background: var(--card);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--highlight);
        }
        .footer-links {
            background: var(--surface);
            padding: 50px 0 30px;
            border-top: 1px solid var(--border);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: var(--card);
            padding: 15px;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
            background: rgba(57, 73, 171, 0.1);
        }
        .main-footer {
            background: var(--primary);
            color: var(--text);
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .section-spacing {
                padding: 40px 0;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.6rem;
            }
            .article-content h3 {
                font-size: 1.3rem;
            }
            .rating-section, .comment-section {
                padding: 25px;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
        }
