/* ================================================================
   星涵智联小游戏平台 — 游戏列表卡片样式
================================================================ */

body {
  background: #f4f6f9;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* ─── 列表容器 ───────────────────────────────────────────── */
.main {
  padding: 12px;
}

.main .box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
}

/* ─── 每个游戏条目的外层包裹 ─────────────────────────────── */
.main .box > div {
  width: calc(50% - 5px);
  box-sizing: border-box;
  min-width: 0;
}

.main .box > div > a {
  display: block;
  text-decoration: none;
  height: 100%;
}

/* ─── 平板：三列 ─────────────────────────────────────────── */
@media (min-width: 600px) {
  .main .box > div {
    width: calc(33.333% - 7px);
  }
}

/* ─── 桌面：四列 ─────────────────────────────────────────── */
@media (min-width: 900px) {
  .main {
    padding: 16px;
  }
  .main .box {
    gap: 14px;
  }
  .main .box > div {
    width: calc(25% - 11px);
  }
}

/* ─── 超小屏：单列 ───────────────────────────────────────── */
@media (max-width: 360px) {
  .main .box > div {
    width: 100%;
  }
}

/* ─── 卡片本体 ───────────────────────────────────────────── */
.main .box .item {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ede7f6;
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}

/* 左侧紫色装饰条（hover 时出现） */
.main .box .item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, #9c27b0, #e91e63);
  opacity: 0;
  transition: opacity .2s;
}

.main .box .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(156,39,176,.15);
  border-color: #ce93d8;
}
.main .box .item:hover::before {
  opacity: 1;
}

/* ─── 游戏图标 + 名称行 ──────────────────────────────────── */
.main .box .item .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #3C4858;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 38px;
}

.main .box .item .logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

/* ─── 游戏描述 ───────────────────────────────────────────── */
.main .box .item .desc {
  color: #999;
  font-size: 11px;
  margin-top: 8px;
  line-height: 1.5;
  height: 33px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ─── 底部分类标签（可选，有 data-tag 时显示） ───────────── */
.main .box .item .game-tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
  background: #f3e5f5;
  color: #9c27b0;
  font-weight: 600;
  margin-top: 8px;
}
