:root {
            --primary-color: #1a237e;
            --secondary-color: #ff3d00;
            --accent-color: #4fc3f7;
            --dark-bg: #0d122b;
            --light-bg: #f5f7ff;
            --text-color: #333;
            --text-light: #6c757d;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --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.7;
            color: var(--text-color);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: var(--accent-color);
        }
        .logo i {
            color: var(--secondary-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after,
        .desktop-nav a.active::after {
            width: 100%;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--text-light);
        }
        .search-section {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary-color);
        }
        .search-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--secondary-color);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .article-header {
            margin-bottom: 2rem;
            border-bottom: 2px solid #eee;
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .meta-info {
            color: var(--text-light);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .meta-info i {
            margin-right: 5px;
        }
        .article-image {
            margin: 2rem 0;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .article-image figcaption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .content-section {
            margin: 2.5rem 0;
        }
        h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 1.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent-color);
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin: 1.2rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #e1f5fe 0%, #e1f5fe 100%);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .game-tier-list {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tier-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--box-shadow);
            border-top: 5px solid;
            transition: var(--transition);
        }
        .tier-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .tier-s {
            border-color: #ffd700;
        }
        .tier-a {
            border-color: #c0c0c0;
        }
        .tier-b {
            border-color: #cd7f32;
        }
        .tier-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        .tier-title {
            font-size: 1.3rem;
            font-weight: 700;
        }
        .rating {
            color: #ffc107;
        }
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: #6c757d;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .sidebar-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .tag {
            background: #e9ecef;
            padding: 0.4rem 0.8rem;
            border-radius: 50px;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .tag:hover {
            background: var(--accent-color);
            color: white;
        }
        .interactive-section {
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: var(--border-radius);
            border: 1px solid #dee2e6;
        }
        .comment-form,
        .rating-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input,
        textarea,
        select {
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.8rem;
            color: #ddd;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        .footer-links {
            background: var(--dark-bg);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .web-link-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: white;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        .site-footer {
            background: #070b1a;
            color: #aaa;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            color: #777;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            width: 100%;
        }
        .text-bold {
            font-weight: 700;
        }
        .text-italic {
            font-style: italic;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 2px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input,
            .search-btn {
                border-radius: var(--border-radius);
                width: 100%;
            }
            .search-input {
                margin-bottom: 0.5rem;
            }
        }
