/* /m/welfare.css — 手機「福利中心」hub (2026-06-18, owner)
 *
 * 底部中央「福利」分頁的目的地。三張卡: 每日簽到 / 任務中心 / 福利池。
 * 海洋深海主題 (cyan/gold on deep navy)，對齊現行 dp-* 視覺語言。
 *
 * premium-icon-button-no-frame skill: 福利池 orb 是 sealed-orb premium PNG,
 *   .dp-welfare-card__icon--orb 不套 background / border / box-shadow 框。
 */
.dp-welfare-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 14px 14px 96px; /* 底部留 tabbar 高度 */
}

.dp-welfare-hero {
  text-align: center;
  padding: 8px 4px 18px;
}
.dp-welfare-hero__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #fde8b8;
  text-shadow: 0 0 14px rgba(251, 191, 36, 0.35);
}
.dp-welfare-hero__sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(165, 243, 252, 0.78);
}

.dp-welfare-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dp-welfare-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: #f0fdff;
  background:
    radial-gradient(circle at 12% 20%, rgba(103, 232, 249, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(20, 40, 88, 0.82) 0%, rgba(12, 24, 56, 0.72) 100%);
  border: 1px solid rgba(103, 232, 249, 0.32);
  box-shadow: 0 8px 20px rgba(2, 8, 18, 0.42);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}
.dp-welfare-card:active {
  transform: scale(0.98);
  border-color: rgba(103, 232, 249, 0.6);
}

.dp-welfare-card__icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 30%, rgba(103, 232, 249, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(20, 40, 88, 0.75) 0%, rgba(15, 30, 68, 0.6) 100%);
  border: 1px solid rgba(103, 232, 249, 0.42);
  box-shadow: inset 0 0 12px rgba(103, 232, 249, 0.18);
}
/* 福利池 sealed-orb PNG 自帶完整設計 — 不套框 (premium-icon-button-no-frame) */
.dp-welfare-card__icon--orb {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.dp-welfare-card__icon--orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(2, 8, 18, 0.5));
}

.dp-welfare-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.dp-welfare-card__title {
  font-size: 16px;
  font-weight: 800;
  color: #fde8b8;
}
.dp-welfare-card__desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(165, 243, 252, 0.74);
}

.dp-welfare-card__arrow {
  flex: 0 0 auto;
  font-size: 22px;
  color: rgba(103, 232, 249, 0.7);
}

/* 底部 tabbar「福利」當前頁微強調 */
.dp-tabbar__cta--active .dp-tabbar__cta-label {
  color: #fde8b8;
}
