        :root {
            --wow-gold: #ffd100;
            --wow-blue: #00ccff;
            --wow-horde-red: #c41e3a;
            --wow-alliance-blue: #0078ff;
            --dark-bg: #0a0a0f;
            --content-bg: #111122;
            --text-primary: #e6e6fa;
            --text-secondary: #b0b0d0;
            --accent-purple: #9370db;
            --border-color: #2a2a3a;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a { color: var(--wow-blue); text-decoration: none; transition: color 0.3s; }
        a:hover { color: var(--wow-gold); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            border-bottom: 2px solid var(--wow-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--wow-gold), var(--wow-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 209, 0, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--wow-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--dark-bg);
            border-top: 1px solid var(--border-color);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active { display: flex; }
        .breadcrumb {
            background: var(--content-bg);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a { color: var(--text-secondary); }
        .breadcrumb span { color: var(--wow-gold); }
        .article-hero {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(rgba(17, 17, 34, 0.9), rgba(17, 17, 34, 0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-bottom: 3px solid var(--wow-gold);
            margin-bottom: 40px;
        }
        .article-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--wow-gold);
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
        }
        .article-hero .meta {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        .main-content { padding: 20px; background: var(--content-bg); border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .sidebar { padding: 20px; background: var(--content-bg); border-radius: 10px; }
        h2 {
            color: var(--wow-blue);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
            font-size: 2.2rem;
        }
        h3 {
            color: var(--accent-purple);
            margin: 30px 0 15px;
            font-size: 1.7rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 209, 0, 0.1);
            border-left: 4px solid var(--wow-gold);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .blockquote {
            font-style: italic;
            border-left: 5px solid var(--wow-horde-red);
            padding-left: 25px;
            margin: 30px 0;
            color: var(--text-secondary);
        }
        .emoji { font-size: 1.3em; margin-right: 5px; }
        b, strong { color: var(--wow-gold); font-weight: 700; }
        .search-widget {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .search-widget h3 { margin-top: 0; }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background: #222233;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: 5px 0 0 5px;
        }
        .search-form button {
            background: var(--wow-blue);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: var(--wow-gold); }
        .rating-widget, .comment-widget {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: var(--wow-gold); }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            padding: 12px 15px;
            background: #222233;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: 5px;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background: linear-gradient(to right, var(--wow-blue), var(--accent-purple));
            color: white;
            border: none;
            padding: 14px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        .form-submit:hover { opacity: 0.9; }
        .featured-image {
            width: 100%;
            margin: 30px auto;
            border: 3px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
        }
        .featured-image img { width: 100%; transition: transform 0.5s; }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            padding: 10px;
            background: rgba(0,0,0,0.5);
        }
        .footer-links {
            background: var(--content-bg);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid var(--wow-gold);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 209, 0, 0.15);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding: 25px 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-hero h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.5rem; }
            .header-inner, .footer-inner { padding: 0 15px; }
        }
