* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background: #f5f6fa;
}
a { color: #333; text-decoration: none; }
a:hover { color: #e67e22; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }

header {
  background: #101522;
  color: #fff;
  border-bottom: 2px solid #e67e22;
}
.header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.site-title {
  font-size: 20px;
  font-weight: 700;
}
.site-subtitle {
  font-size: 12px;
  color: #ccc;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
nav a {
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 3px;
}
nav a.active,
nav a:hover {
  background: #e67e22;
}

.search-box {
  margin: 8px 0 12px;
}
.search-box form {
  display: flex;
  max-width: 380px;
}
.search-box input[type="text"] {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 3px 0 0 3px;
  outline: none;
}
.search-box button {
  padding: 0 14px;
  border: 1px solid #e67e22;
  background: #e67e22;
  color: #fff;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}
.search-box button:hover {
  opacity: 0.9;
}

.breadcrumb {
  font-size: 12px;
  padding: 10px 0;
}
.breadcrumb a { color: #666; }

main {
  padding: 10px 0 25px;
}
.main-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 18px;
}
@media (max-width: 900px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
}

.section {
  background: #fff;
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.section h1,
.section h2 {
  font-size: 18px;
  margin-bottom: 8px;
  border-left: 4px solid #e67e22;
  padding-left: 8px;
}
.section-subtitle {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.game-item {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 8px;
  background: #fafafa;
}
.game-title {
  font-weight: 600;
  margin-bottom: 4px;
}
.game-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}
.game-desc {
  font-size: 12px;
  color: #666;
}

.list-links ul {
  list-style: none;
}
.list-links li {
  padding: 3px 0;
  font-size: 13px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}
.tag-cloud a {
  padding: 3px 8px;
  border-radius: 12px;
  background: #f2f2f2;
  color: #555;
}
.tag-cloud a:hover {
  background: #e67e22;
  color: #fff;
}

footer {
  background: #101522;
  color: #aaa;
  padding: 18px 0;
  font-size: 12px;
  margin-top: 18px;
}
footer a { color: #aaa; }
footer a:hover { color: #fff; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}
.page-content {
  font-size: 14px;
}
.page-content h1 {
  margin-bottom: 10px;
}
.page-content p {
  margin-bottom: 8px;
}


