/* ========== 14-couple.css ========== */
/* 情侶空間、遊戲頁 Hero */

/* ===== Game Hero ===== */
.game-hero {
  margin: 0 16px 24px;
  background: linear-gradient(135deg, #1d1d1f, #3a3a3c);
  border-radius: 20px;
  padding: 28px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
}

.game-hero::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
}

.game-hero-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
}

.game-hero-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  position: relative;
}

/* ===== Couple Space ===== */
.couple-hero {
  margin: 0 16px 20px;
  background: linear-gradient(135deg, #1d1d1f, #2c2c2e);
  border-radius: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
  position: relative;
  overflow: hidden;
}

.couple-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .02);
  transform: translate(-50%, -50%);
}

.couple-avatars {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.couple-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.couple-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.couple-av svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, .35);
  fill: none;
  stroke-width: 1.5;
}

.couple-link-icon {
  position: relative;
}

.couple-link-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, .3);
  fill: none;
  stroke-width: 1.5;
}

.couple-names {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.couple-since {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

.couple-stats {
  display: flex;
  gap: 24px;
}

.couple-stat {
  text-align: center;
}

.couple-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.couple-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.couple-section {
  padding: 20px 20px 8px;
  font-size: 13px;
  color: #8e8e93;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}

.couple-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px;
  margin-bottom: 16px;
}

.couple-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid #ececec;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .03);
  cursor: pointer;
  transition: transform .15s;
}

.couple-card:active {
  transform: scale(.97);
}

.couple-card svg {
  width: 28px;
  height: 28px;
  stroke: #3a3a3c;
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.couple-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  text-align: center;
}

.couple-card-sub {
  font-size: 11px;
  color: #8e8e93;
  text-align: center;
  line-height: 1.3;
}

.couple-list-card {
  margin: 0 16px 12px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ececec;
}

.couple-list-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 14px;
  border-bottom: 1px solid #f2f2f7;
  cursor: pointer;
  transition: background .15s;
}

.couple-list-item:last-child {
  border-bottom: none;
}

.couple-list-item:active {
  background: #f9f9fb;
}

.couple-list-item svg {
  width: 22px;
  height: 22px;
  stroke: #3a3a3c;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.couple-list-item .cli-info {
  flex: 1;
}

.couple-list-item .cli-title {
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
}

.couple-list-item .cli-sub {
  font-size: 12px;
  color: #8e8e93;
  margin-top: 1px;
}

.couple-list-item .cli-arrow {
  color: #c7c7cc;
  font-size: 16px;
}
