@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body, button, input, select, textarea {
    font: 14px/1.5 "Tahoma", "Arial", "ËÎÌå", "Microsoft YaHei", sans-serif;
}

body {
    color: #333; 
    background: #ededed;
    font-family: "Microsoft YaHei", "Î¢ÈíÑÅºÚ", Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: bold;
}

address, cite, dfn, em, var {
    font-style: normal;
}

small {
    font-size: 12px;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit; 
}

a:hover {
    color: #16c616; 
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle; 
}

button, input, select, textarea {
    font-size: 100%; 
}

form, fieldset, legend {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
    height: 1px;
    width: 100%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.clearfix {
    zoom: 1; 
}

.main {
    width: 1200px;
    margin: 0 auto;
}

.none {
    display: none;
}

.block {
    display: block;
}

.bd {
    border: 1px solid #ccc;
}

.bgfff{ 
    background: #fff; 
} 

.hr {
    overflow: hidden;
    width: 100%;
    clear: both;
}

.hr10 { height: 10px; }
.hr20 { height: 20px; }
.hr30 { height: 30px; }

.w1200 {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    width: 100%;
    padding: 20px 0;
}

.header .w1200 {
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

.header .logo img {
    height: 40px; 
}

.search_box {
    display: flex;
    width: 320px; 
    height: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search_box form {
    display: flex;
    width: 100%;
}

.search_ksy {
    flex: 1;
    height: 100%;
    padding: 0 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #666;
    font-size: 14px;
}

.search_btn {
    width: 72px;
    height: 100%;
    background: linear-gradient(to right, #11ad11, #11ad11);
    border: none;
    cursor: pointer;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    transition: opacity 0.2s;
}

.search_btn:hover {
    opacity: 0.9;
}

.nav {
    width: 100%;
    background: #11ad11;
}

.nav ul {
    display: flex;
}

.nav li {
    border-left: 1px solid #16c616;
}

.nav li:first-child {
    border-left: none;
}

.nav li a {
    display: block;
    padding: 0 50px;
    height: 56px;
    line-height: 56px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    min-width: 80px;
    transition: background 0.2s;
}

.nav li a:hover {
    background: #16c616;
}

.nav li.active {
    background: #16c616;
}

.u-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
	margin-top: 15px;
}
.container--1200 {
    max-width: 1200px;
	 background-color: #fff;
}

.mod-game-update {
    margin-bottom: 15px;
}

.mod-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid #eaeaea;
}

.mod-header__title {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.link-more {
    color: #007acc;
    text-decoration: none;
    font-size: 14px;
}

.link-more:hover {
    text-decoration: underline;
}

.update-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.update-list > li {
    min-width: 0;
}

.update-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.update-item:hover {
    background-color: #f9f9f9; 
}

.category-tag {
    color: #666;
    font-size: 14px;
    background: #e0e0e0;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
    margin-right: 8px;
}

.title-link {
    flex: 1;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    min-width: 0;
}

.title-link:hover {
    color: #007acc;
    text-decoration: underline;
}

.update-time {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 8px;
}

.mod-game-categories {
    margin-top: 15px;
}

.mod-game-categories__title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid #16c616;
    text-align: left;
}

.sec-game-category {
    margin-bottom: 30px;
}

.sec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.sec-header__title {
    margin: 0;
    font-size: 18px;
    color: #333;
    flex: 1;
}

.sec-header__title span {
    position: relative;
    padding-left: 10px;
}

.sec-header__title span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background-color: #007acc;
    border-radius: 2px;
}

.sec-header__more {
    flex-shrink: 0;
    margin-left: 20px;
}

.link-more {
    padding: 6px 12px;
    background-color: #007acc;
    color: white;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
}

.link-more:hover {
    background-color: #005fa3;
    text-decoration: none;
}

.sec-content {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.game-list ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.game-item__link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.game-list .game-icon {
    width: 120px;
    height: 120px;
	min-width: 120px;
    min-height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 8px;
    background-color: #f0f0f0;
}

.game-list .title {
    font-size: 14px;
    color: #333;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: inline-block;
}

.category {
    font-size: 12px;
    color: #999;
}

.blogroll {
    padding: 20px;
    border-top: 1px solid #eee;
}

.blogroll__title h3 {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.blogroll__list li {
    float: left;
    margin: 8px 15px 8px 0;
}

.blogroll__list a {
    display: block;
    font-size: 14px;
    line-height: 26px;
    color: #333;
    transition: color .3s ease;
}

.blogroll__list a:hover {
    color: #007acc;
}

.lazy {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.loch{ height: 64px;line-height: 64px;font-size: 16px;color: #303030; }
.loch i{font-style: normal;}
.loch a{color: #303030;}
.pageleft {
    width: 823px;
    float: left;
	margin-bottom: 20px;
}

.game-header {
    padding: 20px;
    overflow: hidden;
}

.game-header__logo {
    display: block;
    width: 138px;
    height: 138px;
    float: left;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 20px;
}

.game-header__logo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.game-header__info {
    width: 460px;
    float: left;
    position: relative;
}

.game-header__title {
    font-size: 24px;
    margin-bottom: 13px;
    height: 30px;
    line-height: 30px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-header__meta {
    line-height: 25px;
    color: #777;
    width: 300px;
    margin-bottom: 13px;
}

.game-header__meta-item {
    float: left;
    width: 50%;
    padding: 4px;
    overflow: hidden;
    white-space: nowrap;
}

.game-header__meta-item a {
    color: #333;
}

.game-header__meta-item a:hover {
    color: #11ad11;
}

.game-header__tags {
    margin: 10px 0;
	clear: both;
}

.game-header__tags-label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.game-header__tag-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    overflow: hidden;
}

.game-header__tag {
    float: left;
    margin: 6px 8px 0 0;
}

.game-header__tag a {
    display: inline-block;
    padding: 4px 10px;
    font-size: 14px;
    color: #11ad11;
    border: 1px solid #11ad11;
    border-radius: 4px;
    text-decoration: none;
}

.game-header__tag a:hover {
    background-color: #11ad11;
    color: #fff;
}

.game-header__rating {
    border: 1px solid #eee;
    padding: 9px 10px;
    width: 220px;
    color: #aaa;
    height: 13px;
    line-height: 1;
    margin-top: 10px;
}

.game-header__rating-score {
    float: left;
    margin: 0 12px 0 10px;
    color: #ff941a;
    font-weight: normal;
}

.game-header__download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    color: #fff;
    font-size: 16px;
    background: #7dc83a;
    border-radius: 18px;
    text-decoration: none;
    width: auto;
    min-width: 110px;
    padding: 0 12px 0 48px;
    position: absolute;
    right: 0;
    top: 40px;
    box-sizing: border-box;
}

.game-header__download-btn i {
    display: block;
    width: 30px;
    height: 25px;
    background-image: url(../images/az.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -26px;
}

.game-header__download-btn:hover {
    background: #6bb82a;
}

.game-header__qrcode {
    float: right;
    width: 138px;
    height: 138px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.game-header__qrcode img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.game-nav {
    padding: 0 20px;
}

.game-nav ul {
    background-color: #f0f0f0;
    line-height: 40px;
    font-size: 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.game-nav__item {
    float: left;
}

.game-nav__link {
    padding: 0 20px;
    display: block;
    color: #333;
    text-decoration: none;
}

.game-nav__item.active .game-nav__link,
.game-nav__link:hover {
    background-color: #11ad11;
    color: #fff;
}

.game-section__title {
    color: #11ad11;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #11ad11;
    padding-bottom: 6px;
}

.game-section__title em {
    font-style: normal;
    color: #11ad11;
    margin-right: 6px;
}

.game-content-wrapper {
    padding: 0 20px;
    box-sizing: border-box;
}

.game-section__content {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}

.game-section__content p {
    margin: 10px 0;
}

.game-section__content h3 {
	font-size:18px; 
	color:#000; 
	line-height:40px; 
	height:40px; 
	border-bottom:1px dashed #e9e9e9; 
	margin-bottom:15px;
}

.game-description img,
.game-section__content img {
    display: block;
    margin: 16px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.game-section__content .game-section--summary {
    border: 1px solid orange; 
    padding: 15px; 
    margin-bottom: 20px;      
    background-color: #fff;    
    border-radius: 5px;     
}

.game-section__content .game-section--summary p {
    color: red;                
    margin-bottom: 10px;       
}

.game-section__content .game-section--changelog {
    border: 1px solid #4CAF50; 
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9; 
    border-radius: 5px;
}

.game-section__content .game-section--changelog h3 {
    font-size: 18px;
    color: #007BFF; 
    line-height: 1.4;
    margin-bottom: 10px; 
    font-weight: bold;
    text-transform: uppercase; 
}

.game-section__content .game-section--changelog p {
    font-size: 15px; 
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.game-section__content .game-section--history {
    border: 1px solid #FF9800; 
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fffdf5; 
    border-radius: 5px;
}

.game-section__content .game-section--history h3 {
    font-size: 18px;
    color: #E65100; 
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.game-section__content .game-section--history strong {
    display: block;
    margin-top: 10px;
    color: #D84315; 
    font-weight: bold;
}

.game-section__content .game-section--history p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.game-screenshots {
    margin-top: 20px;
    box-sizing: border-box;
}

.game-screenshots .section-header {
    margin-bottom: 12px;
}

.screenshot-slider {
    position: relative;
	padding: 0 30px;
}

.thumbnail-list {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 0px;
    scrollbar-width: thin;
    width: 100%;
}

.thumbnail-list ul {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.thumbnail-list li {
    flex: 0 0 auto;
    width: 120px;
    height: 200px;
}

.thumbnail-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
}

.thumbnail-list img:hover {
    transform: scale(1.05);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-nav.prev {
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.slider-nav.next {
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.game-versions,
.game-related {
    margin-top: 20px;
}

.game-related .hd,
.game-versions .hd {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid #11ad11;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.game-versions .hd span,
.game-related .hd span {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding-left: 10px;
    position: relative;
}

.game-versions .hd span::before,
.game-related .hd span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background-color: #11ad11;
    border-radius: 2px;
}

.game-related li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.game-versions li:last-child,
.game-related li:last-child {
    border-bottom: none;
}

.game-versions li {
    display: flex;
    align-items: center;
    gap: 12px; 
    padding: 5px 15px;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}

.game-versions .title {
    flex: 1 1 300px;     
	font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-versions .star-wrapper {
    flex: 0 0 200px;  
    display: flex;
    align-items: center;
    gap: 4px;
    color: #999;
    font-size: 13px;
}

.game-versions .star {
    display: block;
    width: 68px;
    height: 12px;
    position: relative;
    background: url(../images/star.jpg) 0 0 no-repeat;
    flex-shrink: 0; 
}

.game-versions .star i {
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/star.jpg) 0 -30px no-repeat;
}

.game-versions .size {
    flex: 0 0 100px; 
    text-align: center;
    color: #666;
    font-family: Menlo, monospace;
}

.game-versions .btn {
    flex: 0 0 auto; 
	float: right;
    padding: 6px 14px;
    background-color: #f0f9f0;
    color: #11ad11;
    border: 1px solid #11ad11;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.game-versions .btn:hover {
    background-color: #11ad11;
    color: #fff;
}

.game-related .show_top_list {
    padding: 10px;
    border-radius: 8px;
    overflow: hidden; 
}

.game-related .list {
    display: flex;
    flex-wrap: nowrap;             
    gap: 8px;                     
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;            
}

.game-related .item {
    flex: 1 1 calc(100% / 6);    
    min-width: 100px;            
    text-align: center;
    transition: color 0.2s;
}

.game-related .pic {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 auto 6px;
    display: block;
    background-color: #f0f0f0;
}

.game-related .tit {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
}

.game-related .tit:hover {
    background-color: #11ad11;
    color: #fff;
}

.content-sidebar {
    width: 354px;
    float: right;
    box-sizing: border-box;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.widget {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.widget-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

.widget-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px dashed #eee;
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-num {
    display: inline-flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 12px;
}

.ranking-item--1 .ranking-num,
.ranking-item--2 .ranking-num,
.ranking-item--3 .ranking-num {
    background-color: #ff6b6b;
    color: #fff;
}

.ranking-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.ranking-link {
    flex: 1;
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.ranking-link:hover {
    color: #007acc;
}

.ranking-title {
    font-weight: 500;
}

.ranking-action {
    display: inline-block;
    width: 60px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #007acc;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-overflow: clip;
}

.ranking-action:hover {
    background-color: #FF5722;
    color: #fff;
}

.recommend-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; 
    padding: 5px;
    list-style: none;
    margin: 0;
    justify-content: center; 
}

.recommend-item {
    flex: 0 0 calc((100% - 2 * 5px) / 3); 
	min-width: 0;
    box-sizing: border-box;
    text-align: center; 
}
.recommend-link {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-decoration: none;
    color: #333;
    padding: 8px 0;
    width: 100%;
    box-sizing: border-box;
}

.recommend-link:hover .recommend-title {
    color: #007acc;
}

.recommend-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 6px;
}

.recommend-title {
    display: block;
    font-size: 14px;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 90%;
    line-height: 1.4;
    margin-top: 5px;     
    margin-bottom: 5px;  
    box-sizing: border-box;
}

.site-footer {
    width: 100%;
    background: #080808;
    color: #c5c5c5;
    font-size: 14px;
    padding: 10px 0 10px;
    line-height: 1.8;
}

.site-footer .container {
    text-align: center;
    line-height: 30px;
}

.site-footer__disclaimer {
    margin-bottom: 12px;
    font-style: italic;
    color: #aaa;
}

.site-footer__copyright p {
    margin: 0;
    color: #c5c5c5;
}

.site-footer__brand {
    font-weight: bold;
    color: #fff;
}

.site-footer a {
    color: #c5c5c5;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}

.list-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}
.breadcrumb a {
    color: #333;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #11ad11;
    text-decoration: underline;
}
.breadcrumb i {
    margin: 0 8px;
    color: #ccc;
}

.sidebar-category {
	float: left;
	width: 150px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.sidebar-category dt {
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    font-size: 16px;
}

.icon-category {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #11ad11;
    margin-right: 8px;
    border-radius: 2px;
}

.sidebar-category dd {
    display: flex;
    flex-wrap: wrap;
    margin: 6px 0 0 0;
    width: 100%;
}

.sidebar-category dd a {
    flex: 0 1 auto;
    min-width: 85px;
    text-align: center;
    margin: 4px 6px;
    padding: 6px 8px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sidebar-category dd a:hover {
    background-color: #e8f5e8;
    color: #11ad11;
}

.sidebar-category dd.active a {
    background-color: #11ad11;
    color: #fff;
    font-weight: bold;
}

.main-content {
	width: 1000px;
	float: right;
}

.content-box {
    border-radius: 6px;
    overflow: hidden;
}

.list-game-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-game-list li {
    float: left;
    width: 180px;
	height: 271px;
    margin: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.list-game-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.list-game-list a {
	padding: 10px 10px 8px;
	display: block;}

.list-game-list img.game-icon {
    width: 150px;
    height: 150px;
	min-width: 150px;
    min-height: 150px;
	background-color: #f0f0f0; 
	border-radius:20px;
    object-fit: cover;
}
.list-game-list .title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 10px 0 6px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-game-list p {
    font-size: 13px;
    color: #999;
    margin: 0 10px 10px;
    text-align: center;
    line-height: 1.5;
}

.pagination-wrap {
    margin: 20px 0 30px;
    text-align: center;
}

.pager {
    display: inline-block;
    padding: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.pager a {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    margin: 0;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    border-right: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.pager a:last-child {
    border-right: none;
}

.pager a:hover:not(.active) {
    background-color: #11ad11;
    color: #fff;
    transform: translateY(-2px);
}

.pager .active {
    background-color: #11ad11;
    color: #fff;
    font-weight: bold;
    border-right: 1px solid #11ad11;
}

.pager a[href*="index.html"]:not(.active),
.pager a[href*="index_"] {
    color: #666;
}

.pager a[href*="index.html"]:hover,
.pager a[href*="index_"]:hover {
    color: #fff;
}

.container--1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tag-list {
    margin: 20px 0;
    padding: 0 16px;
    box-sizing: border-box;
}

.tag-list__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.tag-list__item {
    min-width: 0; 
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.card--row {
    display: flex;
    align-items: center;
}


.card--row:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.card__thumb {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__body {
    flex: 1;
    min-width: 0; 
    padding: 0 10px;
    text-align: left;
}

.card__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.card__title a {
    text-decoration: none;
    transition: color 0.3s;
}

.card__title a:hover {
    color: #007BFF;
}

.card__category {
    margin: 0;
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
    text-decoration: none;
}

.badge--primary {
    background: #5d5d5d;
    color: white;
}

.card__action {
    flex: 0 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
    min-width: 60px;
}

.btn--primary {
    background: #007BFF;
    color: white;
}

.btn--primary:hover {
    background: #0056b3;
}

.btn--sm {
    padding: 6px 10px;
    font-size: 13px;
}

.card__desc {
    margin: 8px 12px 12px;
    padding-top: 8px;
    border-top: 1px dashed #eee;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: left;
}

.card__desc .text-muted {
    color: #888;
}


.pager li {
    display: inline-block;
    margin: 0;
}

.pager a {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    border-right: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.pager a:last-child,
.pager li:last-child a {
    border-right: none;
}

.pager a:hover {
    background-color: #11ad11;
    color: #fff;
    transform: translateY(-2px);
}

.pager .active a {
    background-color: #11ad11;
    color: #fff;
    font-weight: bold;
    border-right: 1px solid #11ad11;
    cursor: default;
}

.pager-total {
    padding: 0 12px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 14px;
    border-right: 1px solid #e5e5e5;
}

.pager-total b {
    color: #d4237a;
    font-weight: bold;
}

.pager a[href*="index.html"],
.pager a[href*="index_"] {
    color: #666;
}

.pager a[href*="index.html"]:hover,
.pager a[href*="index_"]:hover {
    color: #fff;
}