:root {
            --primary-dark: #0c0c1d;
            --primary-red: #8b0000;
            --primary-gold: #daa520;
            --secondary-steel: #b0c4de;
            --text-light: #f5f5f5;
            --text-dim: #cccccc;
            --border-gray: #2a2a3c;
            --shadow-heavy: 0 5px 15px rgba(0, 0, 0, 0.7);
            --shadow-light: 0 2px 5px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.8;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: linear-gradient(to bottom, rgba(12, 12, 29, 0.9), rgba(12, 12, 29, 0.95)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=10');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            min-height: 100vh;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            border-bottom: 3px solid var(--primary-red);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            letter-spacing: 2px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--text-light);
            text-shadow: 0 0 10px var(--primary-gold);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--secondary-steel);
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: var(--primary-gold);
            border-color: var(--primary-gold);
            background: rgba(218, 165, 32, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary-steel);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .content-area {
            background: rgba(20, 20, 35, 0.85);
            border-radius: 10px;
            padding: 2.5rem;
            border: 1px solid var(--border-gray);
            box-shadow: var(--shadow-heavy);
        }
        article h1 {
            font-family: 'Cinzel', serif;
            color: var(--primary-gold);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px double var(--primary-red);
            padding-bottom: 1rem;
            text-align: center;
        }
        article h2 {
            color: var(--secondary-steel);
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            padding-left: 1rem;
            border-left: 5px solid var(--primary-red);
        }
        article h3 {
            color: var(--primary-gold);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        article h4 {
            color: var(--text-dim);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.15rem;
        }
        article strong {
            color: var(--primary-gold);
            font-weight: bold;
        }
        .highlight-box {
            background: rgba(139, 0, 0, 0.1);
            border-left: 4px solid var(--primary-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            border: 3px solid var(--primary-gold);
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow-heavy);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(20, 20, 35, 0.9);
            border-radius: 10px;
            padding: 1.8rem;
            border: 1px solid var(--border-gray);
        }
        .widget h3 {
            color: var(--primary-gold);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-gray);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to bottom, var(--primary-red), #660000);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background: linear-gradient(to bottom, #9d0000, var(--primary-red));
            box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: var(--primary-gold);
        }
        .site-footer {
            background-color: rgba(5, 5, 15, 0.98);
            border-top: 3px solid var(--primary-red);
            margin-top: 4rem;
            padding: 3rem 2rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        friend-link {
            display: block;
            background: rgba(42, 42, 60, 0.5);
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: var(--secondary-steel);
            text-decoration: none;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--primary-gold);
            padding-left: 1rem;
        }
        .copyright {
            text-align: center;
            color: var(--text-dim);
            padding-top: 2rem;
            border-top: 1px solid var(--border-gray);
            font-size: 0.95rem;
        }
        .update-time {
            color: var(--primary-gold);
            font-style: italic;
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border-gray);
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                text-align: center;
            }
            .content-area {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2.5rem;
            }
            article h2 {
                font-size: 1.9rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
