        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #1a5fb4; 
            --secondary: #ff9800; 
            --dark: #2d2d2d;
            --light: #f8f9fa;
            --text: #333;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: #fff;
            overflow-x: hidden;
        }
        a { color: var(--primary); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--secondary); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; margin: 1rem 0; }
        li { margin-bottom: 0.5rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin: 1.5rem 0 1rem;
            color: var(--dark);
        }
        h1 { font-size: 2.8rem; margin-top: 0; border-bottom: 3px solid var(--secondary); padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; color: var(--primary); }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.2rem; }
        }
        p { margin-bottom: 1.2rem; text-align: justify; }
        .lead { font-size: 1.2rem; font-weight: 500; color: var(--primary); }
        .highlight { background-color: #fff9e6; padding: 2rem; border-left: 4px solid var(--secondary); margin: 2rem 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background-color: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
        }
        .my-logo span:first-child { color: var(--primary); }
        .my-logo span:last-child { color: var(--secondary); }
        .my-logo:hover { opacity: 0.9; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover { color: var(--secondary); }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
            .main-nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding-top: 2rem;
                gap: 1.5rem;
                transition: left 0.5s ease;
            }
            .main-nav.active ul { left: 0; }
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light);
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #999;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb a:hover { color: var(--primary); }
        .search-section {
            background: linear-gradient(135deg, var(--primary), #0d47a1);
            padding: 3rem 0;
            text-align: center;
            color: white;
            margin-bottom: 3rem;
        }
        .search-section h2 { color: white; }
        .search-form {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover { background-color: #e68900; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content { hyphens: auto; }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .featured-image img { width: 100%; transition: transform 0.5s; }
        .featured-image:hover img { transform: scale(1.03); }
        .sidebar {
            background-color: var(--light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            align-self: start;
        }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 {
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .stars i {
            color: #ddd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active { color: #ffc107; }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem;
            border: 1px solid var(--border);
            border-radius: 5px;
            font-family: inherit;
        }
        .comment-form textarea { min-height: 150px; resize: vertical; }
        .btn {
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover { background-color: #0d47a1; }
        .btn-secondary { background-color: var(--secondary); }
        .btn-secondary:hover { background-color: #e68900; }
        .related-games ul {
            list-style: none;
            padding: 0;
        }
        .related-games li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed var(--border);
        }
        .related-games a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark);
        }
        .related-games a:hover { color: var(--primary); }
        .related-games i { color: var(--primary); }
        .update-time {
            font-style: italic;
            color: #666;
            margin: 2rem 0;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }
        .site-footer {
            background-color: var(--dark);
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-bottom: 1px solid #444;
            color: #aaa;
        }
        friend-link:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
