        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #D4AF37;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #444;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: linear-gradient(rgba(15, 15, 15, 0.97), rgba(15, 15, 15, 0.97)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNCA0aDd2N0g0em0xNSAwaDd2N2gtN3ptMTUgMGg3djdoLTd6TTQgMTloN3Y3SDR6bTE1IDBoN3Y3aC03em0xNSAwaDd2N2gtN3pNNCAzNGg3djdINHptMTUgMGg3djdoLTd6bTE1IDBoN3Y3aC03eiIgZmlsbD0iIzFiMWIxYiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background-color: rgba(26, 26, 26, 0.95);
            border-bottom: 3px solid var(--primary);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo span {
            color: var(--primary);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--secondary);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: rgba(40, 40, 40, 0.8);
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.7rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.7rem;
            color: #888;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-left: 5px solid var(--primary);
        }
        .article-header h1 {
            color: var(--secondary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-shadow: 1px 1px 3px #000;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--gray);
            color: #aaa;
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 0.5rem;
            color: var(--secondary);
        }
        h2, h3, h4 {
            color: var(--secondary);
            margin: 2.5rem 0 1.2rem;
            line-height: 1.4;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #f0c040;
        }
        h4 {
            font-size: 1.4rem;
            color: #d0a030;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            background: rgba(139, 0, 0, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px dashed var(--secondary);
            margin: 2rem 0;
        }
        .highlight strong {
            color: var(--secondary);
        }
        .cheat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background: rgba(0, 0, 0, 0.4);
        }
        .cheat-table th, .cheat-table td {
            border: 1px solid #555;
            padding: 1rem;
            text-align: left;
        }
        .cheat-table th {
            background-color: var(--primary);
            color: white;
            font-weight: bold;
        }
        .cheat-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .cheat-table tr:hover {
            background-color: rgba(212, 175, 55, 0.15);
        }
        .feature-img {
            margin: 2.5rem auto;
            text-align: center;
        }
        .feature-img figcaption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            padding: 1.8rem;
            border-top: 4px solid var(--primary);
        }
        .widget h3 {
            color: var(--secondary);
            margin-top: 0;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid #444;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem;
            background: #222;
            border: 1px solid #555;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: white;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #a00;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .rating-widget textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.9rem;
            background: #222;
            border: 1px solid #555;
            border-radius: 5px;
            color: white;
        }
        .rating-widget button, .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-widget button:hover, .comment-form button:hover {
            background: #a00;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: gold;
        }
        .footer-links {
            background: rgba(20, 20, 20, 0.95);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 2px solid var(--primary);
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background: rgba(40, 40, 40, 0.7);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(60, 60, 60, 0.9);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--secondary);
            text-decoration: none;
        }
        .main-footer {
            background-color: #111;
            color: #aaa;
            padding: 2.5rem 0;
            text-align: center;
            border-top: 1px solid #333;
        }
        .footer-nav ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 90px;
                left: -100%;
                flex-direction: column;
                background: rgba(26, 26, 26, 0.98);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: left 0.5s ease;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
                gap: 0;
            }
            .main-nav.active ul {
                left: 0;
            }
            .main-nav li {
                padding: 1rem 0;
                border-bottom: 1px solid #333;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .main-content {
                gap: 2rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 3rem 0;
            border: none;
        }
