        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #1a1a1a;
            --accent: #D4AF37;
            --light: #f5f5f5;
            --dark: #0a0a0a;
            --gray: #333;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(26,26,26,0.95), rgba(10,10,10,0.98));
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 15px rgba(139,0,0,0.2);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-input {
            flex: 1;
            padding: 12px 18px;
            border: 1px solid var(--gray);
            border-right: none;
            border-radius: 30px 0 0 30px;
            background: rgba(255,255,255,0.05);
            color: var(--light);
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #a00;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: #ccc;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        main {
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: rgba(30,30,30,0.7);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.05);
        }
        h1, h2, h3, h4 {
            color: #fff;
            margin-top: 2em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 {
            font-size: 2.2rem;
            color: var(--accent);
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: #ccc; }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #ddd;
            border-left: 4px solid var(--primary);
            padding-left: 20px;
            margin: 30px 0;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .game-image {
            width: 100%;
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            border: 2px solid var(--gray);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        ul, ol {
            padding-left: 30px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.8em;
        }
        blockquote {
            border-left: 5px solid var(--primary);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #bbb;
            font-size: 1.2rem;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dashed var(--accent);
        }
        aside {
            background: rgba(30,30,30,0.7);
            border-radius: 10px;
            padding: 25px;
            height: fit-content;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin: 10px 0;
        }
        .stars i {
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i.active,
        .stars i:hover {
            color: gold;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ccc;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--gray);
            border-radius: 5px;
            color: var(--light);
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: #a00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139,0,0,0.4);
        }
        .btn-block {
            display: block;
            width: 100%;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .link-card {
            background: rgba(40,40,40,0.8);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
            transition: var(--transition);
        }
        .link-card:hover {
            background: rgba(50,50,50,0.9);
            transform: translateX(5px);
        }
        footer {
            background: var(--secondary);
            border-top: 3px solid var(--primary);
            margin-top: 80px;
            padding: 50px 0 20px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 15px;
            border-radius: 5px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 100px);
                background: rgba(10,10,10,0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.5s ease;
                gap: 0;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
                padding: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin-top: 15px;
                max-width: 100%;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            article {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.8s ease-out;
        }
