/* home-today.css — 今日速览+五行罗盘+时辰+双栏+四维运势+宜忌+游客引导 */
/* ===== 今日速览模块 ===== */
.quick-glance {
  padding: 16px 20px;
  border: 1px solid rgba(108, 92, 231, 0.08);
}
.quick-glance-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quick-glance-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-glance-guide {
  border-left: 3px solid var(--accent);
}
.quick-glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.qg-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.qg-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 2px;
}
.qg-item-label {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}
.qg-item-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.qg-wuxing-tag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.qg-yi-ji {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
}
.qg-yi-tag {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(39, 174, 96, 0.08);
  color: #27AE60;
  border: 1px solid rgba(39, 174, 96, 0.12);
}
.qg-ji-tag {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(231, 76, 60, 0.06);
  color: #E74C3C;
  border: 1px solid rgba(231, 76, 60, 0.1);
}
.qg-item-score {
  transition: all 0.3s;
}
.qg-item-score:hover {
  transform: scale(1.05);
}
.qg-score-ring {
  position: relative;
  width: 44px;
  height: 44px;
}
.qg-score-svg {
  width: 100%;
  height: 100%;
}
.qg-score-circle {
  transition: stroke-dashoffset 1s ease-out;
}
.qg-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================
   天机速览仪表盘 — hd-* 样式体系
   ============================================================ */

/* 仪表盘外容器 */
.hd-dashboard {
  padding: 20px;
  border: 1px solid rgba(108, 92, 231, 0.08);
  position: relative;
  overflow: hidden;
}
.hd-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent-light));
  opacity: 0.6;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* 标题行 */
.hd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hd-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.06em;
}
.hd-title i {
  color: var(--accent);
  font-size: 18px;
}
.hd-date {
  font-size: 12px;
  color: var(--text-tertiary);
  background: rgba(108, 92, 231, 0.05);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* 顶部信息格子行 */
.hd-top-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
/* 单个信息格子 */
.hd-info-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
}
.hd-info-cell:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(108, 92, 231, 0.08);
  transform: translateY(-1px);
}

/* 高亮格子（命主日主） */
.hd-cell-highlight {
  background: rgba(255, 255, 255, 0.55);
  border-color: color-mix(in srgb, var(--cell-accent, var(--accent)) 15%, transparent);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--cell-accent, var(--accent)) 8%, transparent);
}
.hd-cell-highlight::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, color-mix(in srgb, var(--cell-accent, var(--accent)) 10%, transparent), transparent);
  pointer-events: none;
  z-index: 0;
}

/* 格子图标 */
.hd-cell-icon {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}

/* 格子标签 */
.hd-cell-label {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

/* 格子数值 */
.hd-cell-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/* 五行标签药丸 */
.hd-wx-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid;
  position: relative;
  z-index: 1;
}
.hd-wx-pill i {
  font-size: 12px;
}

/* 时辰范围 */
.hd-sc-range {
  font-size: 10px;
  color: var(--text-tertiary);
  position: relative;
  z-index: 1;
}

/* 运势环格子 */
.hd-cell-score {
  cursor: pointer;
  justify-content: center;
}
.hd-cell-score:hover {
  background: rgba(108, 92, 231, 0.06);
  border-color: rgba(108, 92, 231, 0.12);
}

/* 运势环 SVG */
.hd-score-ring {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 2px;
}
.hd-score-svg {
  width: 100%;
  height: 100%;
}
.hd-score-circle {
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hd-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ===== 五行能量罗盘 ===== */
.hd-wx-energy-taiji {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
}
.hd-tj-svg {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* 弧段整体柔和呼吸 */
.hd-tj-arcs {
  transform-origin: center;
  animation: tjBreathe 6s ease-in-out infinite;
}
@keyframes tjBreathe {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

/* 弧段入场动画 */
.hd-tj-arc {
  stroke-dasharray: var(--tj-len, 100);
  stroke-dashoffset: var(--tj-len, 100);
  animation: tjArcExpand 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: calc(var(--tj-idx, 0) * 80ms);
  transition: filter 0.3s, opacity 0.3s, stroke-width 0.3s;
}
.hd-tj-arc:hover {
  filter: drop-shadow(0 0 6px currentColor);
  stroke-width: 18;
  opacity: 1;
}
@keyframes tjArcExpand {
  to { stroke-dashoffset: 0; }
}

/* 最旺弧段 — 柔和辉光 */
.hd-tj-arc-max {
  stroke-dasharray: var(--tj-len, 100);
  stroke-dashoffset: var(--tj-len, 100);
  animation: tjArcExpand 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: calc(var(--tj-idx, 0) * 80ms);
  filter: url(#tjArcGlow);
}

/* 五行图标圆点 — 在弧段正中 */
.hd-tj-icon-group {
  opacity: 0;
  animation: tjIconPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--tj-icon-delay, 500ms);
}
.hd-tj-icon-bg {
  transition: transform 0.2s, filter 0.2s;
}
.hd-tj-icon-group:hover .hd-tj-icon-bg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}
.hd-tj-icon-char {
  font-family: 'Noto Serif SC', 'STKaiti', serif;
  pointer-events: none;
}
@keyframes tjIconPop {
  0% { opacity: 0; transform: scale(0.2); }
  100% { opacity: 1; transform: scale(1); }
}

/* 百分比标签 */
.hd-tj-pct-label {
  opacity: 0;
  font-family: var(--font-mono, monospace);
  animation: tjPctFade 0.4s ease-out forwards;
  animation-delay: var(--tj-icon-delay, 700ms);
}
@keyframes tjPctFade {
  to { opacity: 0.8; }
}

/* 八卦装饰 */
.hd-tj-bagua {
  font-family: serif;
  pointer-events: none;
}

/* 中心罗盘 — 缓慢旋转 */
.hd-tj-center-group {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: tjCenterSpin 40s linear infinite, tjCenterFadeIn 0.8s ease-out 0.5s both;
}
@keyframes tjCenterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes tjCenterFadeIn {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}
/* 五角星线条 */
.hd-tj-star-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: tjStarDraw 1.5s ease-out 0.8s forwards;
}
@keyframes tjStarDraw {
  to { stroke-dashoffset: 0; }
}
/* 最旺五行顶点脉动 */
.hd-tj-star-dot-max {
  animation: tjDotPulse 3s ease-in-out infinite;
}
@keyframes tjDotPulse {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 6.5; opacity: 0.8; }
}
/* 流转箭头 */
.hd-tj-flow-arrow {
  font-family: sans-serif;
  pointer-events: none;
}
/* 天机印章 */
.hd-tj-seal-text {
  pointer-events: none;
}

/* 最旺标注 */
.hd-tj-max-label {
  opacity: 0;
  animation: tjMaxFade 0.5s ease-out 0.9s forwards;
}
.hd-tj-max-label text {
  font-family: 'Noto Serif SC', 'STKaiti', serif;
}
@keyframes tjMaxFade {
  to { opacity: 1; }
}

/* ===== 时辰建议内联（融入时辰格子） ===== */
.hd-cell-shichen-merged {
  position: relative;
}
.hd-sc-advice-inline {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 4px;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hd-sc-advice-inline i {
  font-size: 10px;
  flex-shrink: 0;
}

/* ===== 双栏并排布局 ===== */
.hd-dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
  align-items: start;
}
.hd-dual-left {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hd-dual-right {
  position: relative;
  padding-left: 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== 四维运势 V2 — 紧凑横排列表 ===== */
.hd-fortune-dims-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hd-dims-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.hd-dims-title i {
  color: var(--accent);
  font-size: 14px;
}
.hd-dim-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.25s;
  animation: dimRowFadeIn 0.4s ease-out both;
  animation-delay: var(--dim-delay, 0);
}
.hd-dim-row:hover {
  background: rgba(255, 255, 255, 0.45);
}
@keyframes dimRowFadeIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
.hd-dim-row > i {
  font-size: 15px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.hd-dim-row-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  width: 28px;
  flex-shrink: 0;
}
.hd-dim-dots {
  display: flex;
  gap: 3px;
  flex: 1;
}
.hd-dim-dot {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.12);
  transition: color 0.3s, transform 0.3s;
  line-height: 1;
}
.hd-dim-dot-filled {
  color: var(--dot-color, var(--accent));
  animation: dotPop 0.3s ease-out both;
  animation-delay: calc(var(--dim-delay, 0) + var(--dot-delay, 0) + 200ms);
}
@keyframes dotPop {
  from { opacity: 0; transform: scale(0.3); }
  60% { transform: scale(1.3); }
  to { opacity: 1; transform: scale(1); }
}
.hd-dim-row-score {
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 24px;
  text-align: right;
  font-family: var(--font-mono, monospace);
}

/* 底部提示 */
.hd-footer-hint {
  text-align: center;
  font-size: 11px;
  color: var(--text-tertiary);
  opacity: 0.7;
  margin-top: 4px;
}

/* ===== 宜忌标签（游客状态） ===== */
.hd-cell-yiji {
  padding: 10px 8px;
}
.hd-yiji-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 2px;
}
.hd-yi-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(39, 174, 96, 0.08);
  color: #27AE60;
  border: 1px solid rgba(39, 174, 96, 0.12);
  white-space: nowrap;
}
.hd-ji-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(231, 76, 60, 0.06);
  color: #E74C3C;
  border: 1px solid rgba(231, 76, 60, 0.1);
  white-space: nowrap;
}

/* ===== 游客宜忌面板（双栏右侧） ===== */
.hd-guest-yiji-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hd-yiji-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hd-yiji-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
  transition: background 0.25s;
  animation: dimRowFadeIn 0.4s ease-out both;
  animation-delay: var(--yiji-delay, 0);
}
.hd-yiji-row:hover {
  background: rgba(255, 255, 255, 0.45);
}
.hd-yiji-badge-yi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #27AE60;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.15);
  flex-shrink: 0;
}
.hd-yiji-badge-ji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #E74C3C;
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.12);
  flex-shrink: 0;
}

/* ===== Guest 五行特性标签 ===== */
.hd-guest-wx-trait {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  margin-top: 1px;
  position: relative;
  z-index: 1;
}

/* ===== Guest 运势锁定环 ===== */
.hd-cell-score-locked {
  cursor: pointer;
  justify-content: center;
  transition: all 0.3s;
}
.hd-cell-score-locked:hover {
  background: rgba(108, 92, 231, 0.06);
  border-color: rgba(108, 92, 231, 0.12);
}
.hd-score-ring-guest {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 2px;
}
.hd-score-ring-guest .hd-score-svg {
  width: 100%;
  height: 100%;
}
.hd-score-lock-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  opacity: 0.5;
}
.hd-cell-score-locked:hover .hd-score-lock-icon {
  opacity: 0.85;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.hd-guest-unlock-hint {
  font-size: 9px;
  color: var(--accent);
  opacity: 0.65;
  letter-spacing: 0.08em;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.hd-cell-score-locked:hover .hd-guest-unlock-hint {
  opacity: 1;
}

/* ===== Guest 综合面板分隔线 ===== */
.hd-guest-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
  margin: 8px 0;
}

/* ===== Guest 幸运指南网格 ===== */
.hd-guest-lucky-panel {
  display: flex;
  flex-direction: column;
}
.hd-lucky-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.hd-lucky-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s;
  animation: dimRowFadeIn 0.4s ease-out both;
  animation-delay: var(--lucky-delay, 0);
}
.hd-lucky-item:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}
.hd-lucky-icon {
  font-size: 16px;
  line-height: 1;
}
.hd-lucky-label {
  font-size: 9px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}
.hd-lucky-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ===== Guest 五行生克提示 ===== */
.hd-guest-wxgk-panel {
  display: flex;
  flex-direction: column;
}
.hd-wxgk-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hd-wxgk-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gk-color, var(--text-secondary));
  transition: all 0.3s;
}
.hd-wxgk-sheng {
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.12);
  color: #27AE60;
}
.hd-wxgk-ke {
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.1);
  color: #E74C3C;
}
.hd-wxgk-tag i {
  font-size: 12px;
}

/* ===== Guest 时辰动态指引条 ===== */
.hd-guest-sc-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.3));
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 10px;
  animation: dimRowFadeIn 0.5s ease-out both;
  animation-delay: 0.3s;
}
.hd-guest-sc-bar-icon {
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.8;
}
.hd-guest-sc-bar-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hd-guest-sc-bar-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== 游客引导录入 ===== */
.hd-guest-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.06), rgba(162, 155, 254, 0.04));
  border: 1px solid rgba(108, 92, 231, 0.1);
  margin-top: 4px;
}
.hd-guest-cta-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hd-guest-cta-text i {
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== 游客引导增强版 ===== */
.hd-guest-cta-enhanced {
  position: relative;
  flex-direction: column;
  padding: 20px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(162, 155, 254, 0.04), rgba(253, 121, 168, 0.04));
  border: 1px solid rgba(108, 92, 231, 0.12);
  overflow: hidden;
}

.hd-guest-cta-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hd-guest-cta-content {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hd-guest-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6C5CE7, #A29BFE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.25);
}

.hd-guest-cta-icon i {
  color: #fff;
  font-size: 20px;
}

.hd-guest-cta-info {
  flex: 1;
  min-width: 0;
}

.hd-guest-cta-title {
  font-size: 14px;
  font-weight: 700;
  color: #2d3436;
  margin: 0 0 3px 0;
}

.hd-guest-cta-desc {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

.hd-guest-cta-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #6C5CE7, #A29BFE);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.25);
}

.hd-guest-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}

.hd-guest-cta-btn:active {
  transform: scale(0.98);
}

.hd-guest-cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(108, 92, 231, 0.08);
  position: relative;
  z-index: 1;
}

.hd-guest-cta-features span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #999;
}

.hd-guest-cta-features span i {
  color: #6C5CE7;
  font-size: 13px;
}

@media (max-width: 640px) {
  .hd-guest-cta-content {
    flex-direction: column;
    text-align: center;
  }
  .hd-guest-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .hd-guest-cta-features {
    flex-wrap: wrap;
    gap: 8px;
  }
}

