:root {
            --primary: #d4af37; 
            --secondary: #b22234; 
            --dark: #0c0c0c;
            --light: #f8f9fa;
            --gray: #2a2a2a;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--light);
            background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--primary);
        }
        .site-header {
            padding: 1.5rem 0;
            border-bottom: 2px solid var(--primary);
            margin-bottom: 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background: var(--secondary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .breadcrumb {
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid var(--gray);
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .search-container {
            background: var(--gray);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ff2a2a;
        }
        .content-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-container {
                grid-template-columns: 1fr;
            }
        }
        main {
            background: rgba(42, 42, 42, 0.9);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        article h2 {
            color: var(--primary);
            border-left: 5px solid var(--secondary);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
            font-size: 1.8rem;
        }
        article h3 {
            color: #fff;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        article h4 {
            color: #ddd;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 500;
            padding: 1rem;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 5px;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 3px solid var(--primary);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.01);
            box-shadow: 0 0 25px var(--primary);
        }
        aside {
            background: var(--gray);
            padding: 1.5rem;
            border-radius: 10px;
            height: fit-content;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid #555;
            background: #1a1a1a;
            color: white;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .star {
            color: #555;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .star.active {
            color: var(--primary);
        }
        .btn-submit {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .btn-submit:hover {
            background: #ff2a2a;
        }
        .update-time {
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--gray);
        }
        footer {
            margin-top: 4rem;
            padding: 2rem 0;
            border-top: 2px solid var(--primary);
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: var(--gray);
            border-radius: 5px;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background: var(--dark);
                padding: 1rem;
                z-index: 1000;
                border-bottom: 2px solid var(--primary);
            }
            .main-nav.active ul {
                display: flex;
            }
            article h1 {
                font-size: 2rem;
            }
            .my-logo {
                font-size: 1.8rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .keyword {
            font-weight: bold;
            color: var(--primary);
        }
        .internal-link {
            border-bottom: 1px dotted var(--primary);
        }
        @media print {
            .search-container,
            .rating-widget,
            .comment-widget,
            footer {
                display: none;
            }
        }
