        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: #f8c555;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffdd80;
            text-shadow: 0 0 8px rgba(248, 197, 85, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .p-2 { padding: 2rem; }
        .highlight {
            background: linear-gradient(90deg, rgba(248, 197, 85, 0.15), transparent);
            border-left: 4px solid #f8c555;
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #f8c555, #d4a017);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(248, 197, 85, 0.7);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background: rgba(248, 197, 85, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f8c555;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.98);
            padding: 1rem;
            flex-direction: column;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f8c555;
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #333;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #f8c555, #ff9a3d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 1.5rem;
            color: #888;
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 0.5rem;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-body {
            font-size: 1.1rem;
        }
        .content-body h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            color: #f0b342;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .content-body h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #e0a830;
        }
        .content-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-body strong {
            color: #f8c555;
            font-weight: 700;
        }
        .content-body em {
            color: #aaa;
            font-style: italic;
        }
        .armor-feature-img {
            width: 100%;
            margin: 2rem auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 2px solid #444;
        }
        .armor-set {
            background: rgba(30, 30, 40, 0.6);
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #555;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .armor-set:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(248, 197, 85, 0.15);
        }
        .armor-set h3 {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .armor-set h3 i {
            color: #f8c555;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
            padding: 1.5rem;
            background: rgba(20, 20, 30, 0.7);
            border-radius: 8px;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px dashed #444;
        }
        .sidebar {
            background: rgba(25, 25, 35, 0.7);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: #f0b342;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: rgba(40, 40, 50, 0.8);
            border: 1px solid #555;
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: #fff;
        }
        .search-form button {
            background: #f8c555;
            color: #000;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ffd166;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #f8c555;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            background: rgba(40, 40, 50, 0.8);
            border: 1px solid #555;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #f8c555, #e0a830);
            color: #000;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #ffd166, #f0b342);
            box-shadow: 0 5px 15px rgba(248, 197, 85, 0.4);
        }
        .footer-links-section {
            background: rgba(15, 15, 20, 0.9);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(40, 40, 55, 0.6);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #f8c555;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(5px);
            background: rgba(50, 50, 65, 0.8);
        }
        .web-link a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #ddd;
            font-weight: 500;
        }
        .web-link i {
            color: #f8c555;
        }
        .site-footer {
            background: #0a0a0f;
            padding: 2.5rem 0;
            text-align: center;
            color: #888;
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            .article-header h1 { font-size: 2.2rem; }
            .meta-info { flex-direction: column; gap: 0.5rem; }
            .content-body h2 { font-size: 1.8rem; }
            .content-body h3 { font-size: 1.5rem; }
            .footer-nav ul { flex-direction: column; gap: 1rem; }
            .stats-grid { grid-template-columns: 1fr; }
        }
