        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a12;
            --primary-red: #c53030;
            --primary-gold: #d4af37;
            --secondary-gray: #2d3748;
            --light-text: #e2e8f0;
            --dark-text: #1a202c;
            --section-bg: #141824;
            --border-color: #4a5568;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--light-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: var(--primary-red);
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 18, 0.95);
            border-bottom: 2px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--primary-gold), var(--primary-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(197, 48, 48, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-gold);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--section-bg);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: var(--border-color);
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px double var(--primary-red);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--primary-gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--section-bg);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid var(--primary-red);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .article-content h2 {
            color: var(--primary-gold);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-gray);
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: #ecc94b;
            margin: 25px 0 12px;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content em {
            color: #cbd5e0;
            font-style: italic;
        }
        .article-content strong {
            color: var(--primary-gold);
            font-weight: 700;
        }
        .article-content blockquote {
            border-left: 4px solid var(--primary-red);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            background-color: rgba(197, 48, 48, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #2d3748, #4a5568);
            border-left: 5px solid var(--primary-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: var(--secondary-gray);
            border-radius: 8px;
            overflow: hidden;
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        .stats-table th {
            background-color: var(--primary-red);
            color: white;
            font-weight: 600;
        }
        .stats-table tr:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .image-container {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        .image-container img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #a0aec0;
            margin-top: 10px;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--section-bg);
            padding: 25px;
            border-radius: 12px;
            border-top: 4px solid var(--primary-red);
        }
        .widget h3 {
            color: var(--primary-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: #2d3748;
            border: 1px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            color: white;
        }
        .search-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #9b2c2c;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 1.8rem;
            color: #e2e8f0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--primary-gold);
            transform: scale(1.2);
        }
        .rating-form button {
            background-color: var(--secondary-gray);
            color: white;
            border: 2px solid var(--primary-gold);
            padding: 10px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
            margin-top: 15px;
        }
        .rating-form button:hover {
            background-color: var(--primary-gold);
            color: var(--dark-text);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            background-color: #2d3748;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: white;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            width: 100%;
        }
        .comment-form button:hover {
            background-color: #9b2c2c;
        }
        .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;
        }
        .related-links a {
            display: block;
            padding-left: 20px;
            position: relative;
        }
        .related-links a::before {
            content: "⚔️";
            position: absolute;
            left: 0;
        }
        .long-tail-links {
            background-color: var(--section-bg);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid var(--primary-red);
            border-bottom: 2px solid var(--primary-red);
        }
        .long-tail-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid var(--primary-gold);
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(212, 175, 55, 0.1);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        footer {
            padding: 40px 0 20px;
            text-align: center;
            color: #a0aec0;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .copyright {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                padding: 20px;
                border-top: 1px solid var(--border-color);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .content-grid {
                gap: 25px;
            }
            .article-content {
                padding: 20px;
            }
            .widget {
                padding: 20px;
            }
        }
