        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-blood: #9A0000;
            --secondary-gold: #D4AF37;
            --dark-bg: #111111;
            --light-text: #F0F0F0;
            --medium-gray: #333333;
            --accent-blue: #0066CC;
            --shadow-heavy: 0 5px 15px rgba(154, 0, 0, 0.3);
            --transition-smooth: all 0.3s ease;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-gold);
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        @font-face {
            font-family: 'FontAwesome';
            src: url('data:font/woff2;charset=utf-8;base64,d09GMgABAAAAAA4AABAAAAAAGwQAAA2fAAEZmgAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCUhEICoQIgnQLC4NCAAE2AiQDiC4Lg14ABCAFhWsHhHwMgjobrqrFGxMN2Ls2Wb1HEmBWRnXYEdK4s2f773uQEUi6QqJqhBSqsqQtmHhUyqlRZRq2o5uUZSvZWp1ttb27j3r86flt9/lR3r6
            font-weight: normal;
            font-style: normal;
        }
        .fa {
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .fa-search:before { content: '\f002'; }
        .fa-bars:before { content: '\f0c9'; }
        .fa-times:before { content: '\f00d'; }
        .fa-user:before { content: '\f007'; }
        .fa-star:before { content: '\f005'; }
        .fa-calendar-alt:before { content: '\f073'; }
        .fa-chevron-right:before { content: '\f054'; }
        .fa-external-link-alt:before { content: '\f35d'; }
        .fa-gamepad:before { content: '\f11b'; }
        .fa-trophy:before { content: '\f091'; }
        header {
            background: linear-gradient(to bottom, #1a1a1a, #000);
            border-bottom: 3px solid var(--primary-blood);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--primary-blood);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
            background: linear-gradient(45deg, #9A0000, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo a:hover {
            text-shadow: 0 0 15px #9A0000;
        }
        .my-logo {
            font-weight: 900;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            position: relative;
        }
        .nav-links a:hover {
            background-color: rgba(154, 0, 0, 0.2);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light-text);
        }
        .breadcrumb {
            background-color: var(--medium-gray);
            padding: 10px 0;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 5px;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 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;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 5px solid var(--primary-blood);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 3px 3px 6px #000;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 25px;
            color: #ddd;
        }
        .last-updated {
            font-style: italic;
            color: var(--secondary-gold);
            margin-top: 20px;
            font-size: 0.95rem;
        }
        .search-widget {
            background-color: rgba(50, 50, 50, 0.9);
            padding: 25px;
            border-radius: 8px;
            margin: 30px auto;
            max-width: 600px;
            box-shadow: var(--shadow-heavy);
        }
        .search-widget h3 {
            margin-bottom: 15px;
            color: var(--secondary-gold);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid var(--medium-gray);
            border-radius: 4px 0 0 4px;
            background: #222;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-blood);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition-smooth);
        }
        .search-form button:hover {
            background-color: #b30000;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .article-content {
            background-color: rgba(30, 30, 30, 0.8);
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            color: var(--secondary-gold);
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .article-content h2 { font-size: 2.2rem; }
        .article-content h3 { font-size: 1.8rem; }
        .article-content h4 { font-size: 1.4rem; }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-content em {
            color: #aaa;
            font-style: italic;
        }
        .featured-image {
            float: right;
            margin: 15px 0 20px 30px;
            max-width: 450px;
            border: 3px solid var(--primary-blood);
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            text-align: center;
            color: #aaa;
            margin-top: 8px;
        }
        .internal-links-list {
            background: #222;
            padding: 20px;
            border-left: 5px solid var(--accent-blue);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .internal-links-list h4 {
            margin-top: 0;
            color: #66b3ff;
        }
        .internal-links-list ul {
            list-style-type: square;
            padding-left: 20px;
        }
        .internal-links-list li {
            margin-bottom: 8px;
        }
        .tip-box {
            background: linear-gradient(135deg, #1a3c1a, #0f2b0f);
            border: 1px solid #2a7a2a;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .tip-box h4 {
            color: #4caf50;
            border-bottom: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background-color: rgba(40, 40, 40, 0.9);
            padding: 20px;
            border-radius: 8px;
            border-top: 4px solid var(--primary-blood);
        }
        .sidebar-widget h3 {
            color: var(--secondary-gold);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rating-widget input, .rating-widget select, .comment-widget input, .comment-widget textarea {
            padding: 10px;
            background: #222;
            border: 1px solid #555;
            border-radius: 4px;
            color: white;
            font-size: 1rem;
        }
        .rating-widget textarea {
            min-height: 100px;
            resize: vertical;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            margin: 10px 0;
        }
        .stars span:hover,
        .stars span:hover ~ span {
            color: var(--secondary-gold);
        }
        .btn-submit {
            background: linear-gradient(to right, var(--primary-blood), #b30000);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .btn-submit:hover {
            background: linear-gradient(to right, #b30000, var(--primary-blood));
            box-shadow: 0 0 10px rgba(154, 0, 0, 0.7);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #444;
        }
        .quick-links a {
            display: block;
            padding: 8px 5px;
            border-radius: 4px;
        }
        .quick-links a:hover {
            background-color: rgba(154, 0, 0, 0.1);
            padding-left: 10px;
        }
        footer {
            background-color: #0a0a0a;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 3px solid var(--primary-blood);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: var(--secondary-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 10px;
            background-color: #1a1a1a;
            border-radius: 4px;
            transition: var(--transition-smooth);
        }
        friend-link:hover {
            background-color: #2a2a2a;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
            .featured-image {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 250px;
                height: 100vh;
                background-color: #1a1a1a;
                flex-direction: column;
                padding-top: 80px;
                transition: right 0.5s ease;
                z-index: 999;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
                margin-left: 0;
                text-align: center;
            }
            .hamburger {
                display: block;
                z-index: 1000;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px 20px;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 4px;
                margin-bottom: 10px;
            }
            .search-form button {
                padding: 12px;
            }
        }
