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


.header {
 background: #fff;
 border-bottom: 1px solid #e5e5e5;
 box-shadow: 0 2px 4px rgba(0,0,0,0.1);
 position: sticky;
 top: 0;
 z-index: 1000;
}

.header-top {
 max-width: 1200px;
 margin: 0 auto;
 padding: 15px 20px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.logo img {
 height: 40px;
 width: auto;
}

.nav-menu {
 display: flex;
 list-style: none;
 gap: 30px;
}

.nav-menu li a {
 text-decoration: none;
 color: #333;
 font-size: 16px;
 font-weight: 500;
 transition: color 0.3s;
}

.nav-menu li a:hover {
 color: #ff6b6b;
}

.mobile-menu-btn {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 width: 36px;
 height: 36px;
}

.mobile-menu-icon {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-template-rows: repeat(3, 1fr);
 gap: 3px;
 width: 100%;
 height: 100%;
}

.mobile-menu-icon span {
 background: #333;
 border-radius: 2px;
 transition: all 0.3s;
}

.mobile-menu-btn:hover .mobile-menu-icon span {
 background: #ff6b6b;
}

/*.container {
 max-width: 1200px;
 margin: 20px auto;
 padding: 0 20px;
}*/

/*.breadcrumb {
 padding: 15px 20px;
 color: #666;
 font-size: 14px;
 background: #fff;
 border-radius: 8px;
 margin-bottom: 20px;
}*/

.breadcrumb a {
 color: #666;
 text-decoration: none;
}

.breadcrumb a:hover {
 color: #ff6b6b;
}

.game-detail {
 background: #fff;
 border-radius: 8px;
 overflow: hidden;
 box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.game-header {
 display: flex;
 align-items: center;
 gap: 20px;
 padding: 30px;
 border-bottom: 1px solid #e5e5e5;
}

/*.game-icon {
 width: 120px;
 height: 120px;
 border-radius: 20px;
 object-fit: cover;
 box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}*/

.game-info h1 {
 font-size: 32px;
 margin-bottom: 15px;
 color: #222;
}

.game-meta {
 display: flex;
 gap: 30px;
 color: #666;
 font-size: 15px;
 margin-bottom: 15px;
}

.download-btn {
 display: inline-block;
 background: linear-gradient(135deg, #ff6b6b, #ff5252);
 color: white;
 text-decoration: none;
 border-radius: 30px;
 font-weight: bold;
 font-size: 16px;
 transition: all 0.3s;
 box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.download-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.tabs {
 display: flex;
 gap: 0;
 border-bottom: 2px solid #e5e5e5;
 background: #fafafa;
}

.tab {
 padding: 18px 30px;
 cursor: pointer;
 border-bottom: 3px solid transparent;
 transition: all 0.3s;
 color: #666;
 font-weight: 500;
}

.tab:hover {
 color: #ff6b6b;
 background: #fff;
}

.tab.active {
 color: #ff6b6b;
 border-bottom-color: #ff6b6b;
 background: #fff;
}

.content-section {
 padding: 30px;
}

.content-section h2 {
 font-size: 24px;
 margin-bottom: 25px;
 padding-left: 15px;
 border-left: 5px solid #ff6b6b;
 color: #222;
}

.screenshots {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 20px;
 margin: 20px 0;
}

.screenshots img {
 width: 100%;
 border-radius: 12px;
 cursor: pointer;
 transition: all 0.3s;
 box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.screenshots img:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.game-description {
 line-height: 1.9;
 color: #555;
 font-size: 16px;
}

.game-description p {
 margin-bottom: 20px;
}

.related-games {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
 gap: 25px;
 margin: 20px 0;
}

.related-game-card {
 background: #fff;
 border-radius: 12px;
 overflow: hidden;
 box-shadow: 0 2px 12px rgba(0,0,0,0.08);
 transition: all 0.3s;
 text-decoration: none;
 color: inherit;
}

.related-game-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.related-game-card img {
 width: 100%;
 height: 160px;
 object-fit: cover;
}

.related-game-info {
 padding: 18px;
}

.related-game-info h4 {
 margin-bottom: 8px;
 font-size: 16px;
 color: #333;
}

#footer {
 background: #2c2f38;
 color: #aaabae;
 padding: 40px 0 20px;
 border-radius: 10px !important;
}

#footer .container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 15px;
}

.fl {
 float: left;
 color: #95a5a6;
 font-size: 14px;
}

.fr {
 float: right;
 display: flex;
 align-items: center;
 gap: 8px;
 color: #bdc3c7;
 font-size: 14px;
}

.footer_beian {
 width: 13px;
 height: auto;
}

.fr a {
 color: #bdc3c7;
 text-decoration: none;
 transition: color 0.3s;
}

.fr a:hover {
 color: #fff;
}
.info-item{border-bottom:0px !important;}

@media (max-width: 768px) {
 .info-item:nth-child(even){background-color:unset !important; }
 .header-top {
  flex-direction: row;
  justify-content: space-between;
 }

 .mobile-menu-btn {
  display: block;
 }

 .nav-menu {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  gap: 15px;
 }

 .nav-menu.active {
  display: flex;
 }

 .game-header {
  flex-direction: column;
  text-align: center;
  padding: 20px;
 }

 #footer .container {
  flex-direction: column;
  text-align: center;
 }

 .fl, .fr {
  float: none;
 }
}