.huimengyu--call {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #1b1b1d 0%, #111214 48%, #09090c 100%);
}

.huimengyu-call {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  padding: 16px 20px 18px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #1d1d20 0%, #121316 52%, #09090c 100%);
}

.huimengyu-call::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.16) 100%);
}

.huimengyu-call__topbar {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.huimengyu-call__topbar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.huimengyu-call__back,
.huimengyu-call__top-action,
.huimengyu-call__action,
.huimengyu-call__hangup {
  border: 0;
  outline: 0;
  cursor: pointer;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.huimengyu-call__back:hover,
.huimengyu-call__top-action:hover,
.huimengyu-call__action:hover,
.huimengyu-call__hangup:hover {
  transform: translateY(-1px);
}

.huimengyu-call__back,
.huimengyu-call__top-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.98);
  font-size: 22px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  justify-self: center;
}

.huimengyu-call__back {
  background: transparent;
  box-shadow: none;
}

.huimengyu-call__top-action {
  width: auto;
  height: auto;
  border-radius: 0;
  color: #9be02c;
  font-size: 28px;
  line-height: 1;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.huimengyu-call__top-action--voice {
  justify-self: end;
  align-self: start;
}

.huimengyu-call__top-action[hidden],
.huimengyu-call__top-action--hidden {
  display: none;
}

.huimengyu-call__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 0;
}

.huimengyu-call__main {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}

.huimengyu-call__remote-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.huimengyu-call__remote-stage--voice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-top: 2px;
  margin-bottom: 12px;
}

.huimengyu-call__voice-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  transform: translate(-50%, -50%);
}

.huimengyu-call__voice-wave {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: huimengyu-call-wave 3s ease-out infinite;
}

.huimengyu-call__voice-wave--one {
  width: 142px;
  height: 142px;
}

.huimengyu-call__voice-wave--two {
  width: 198px;
  height: 198px;
  animation-delay: 1s;
}

.huimengyu-call__voice-wave--three {
  width: 256px;
  height: 256px;
  animation-delay: 2s;
}

.huimengyu-call__avatar-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.huimengyu-call__avatar {
  width: 108px;
  height: 108px;
  border-radius: 32px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(245, 245, 247, 0.96), rgba(228, 230, 236, 0.92));
}

.huimengyu-call__avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 32px;
  font-size: 38px;
  font-weight: 700;
  color: #6a6a72;
  background: linear-gradient(135deg, rgba(245, 245, 247, 0.98), rgba(231, 233, 239, 0.92));
}

.huimengyu-call__remote-stage--video {
  position: absolute;
  inset: 0;
  min-height: auto;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.huimengyu-call__video-fill {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #26272c 0%, #16171b 58%, #090a0d 100%);
}

.huimengyu-call__video-remote-avatar-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.huimengyu-call__video-remote-avatar-wrap-inner,
.huimengyu-call__video-remote-photo {
  width: 100%;
  height: 100%;
}

.huimengyu-call__video-remote-avatar-wrap-inner {
  position: relative;
}

.huimengyu-call__video-remote-photo {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  box-sizing: border-box;
}

.huimengyu-call__video-remote-avatar-wrap-inner--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(72, 79, 92, 0.96), rgba(20, 24, 31, 0.98));
}

.huimengyu-call__video-dim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.06) 18%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.huimengyu-call__video-overlay {
  position: absolute;
  left: 22px;
  right: 120px;
  top: 96px;
  z-index: 6;
  pointer-events: none;
}

.huimengyu-call__video-remote-meta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: 100%;
}

.huimengyu-call__video-name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.huimengyu-call__video-status {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
}

.huimengyu-call__self-video {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 142px;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(232, 238, 246, 0.98), rgba(213, 221, 233, 0.98));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition:
    width 180ms ease,
    height 180ms ease,
    transform 180ms ease,
    border-radius 180ms ease,
    box-shadow 180ms ease;
}

.huimengyu-call__self-video--off {
  background:
    linear-gradient(180deg, rgba(233, 238, 245, 0.98), rgba(213, 220, 231, 0.98));
}

.huimengyu-call__self-video-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.huimengyu-call__self-video-avatar--live {
  filter: saturate(0.96) contrast(1.02);
}

.huimengyu-call__self-video-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 30px;
  font-weight: 700;
  color: rgba(88, 110, 142, 0.92);
  letter-spacing: 0.04em;
}

.huimengyu-call__self-video-placeholder--live {
  color: rgba(78, 104, 138, 0.92);
}

.huimengyu-call__self-video-label {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  background: rgba(108, 114, 123, 0.82);
}

.huimengyu-call__self-video .huimengyu-call__video-remote-photo {
  padding: 0;
  object-fit: cover;
  border-radius: 0;
}

.huimengyu-call__self-video .huimengyu-call__video-remote-avatar-wrap-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.huimengyu-call__self-video .huimengyu-call__video-remote-avatar-wrap-inner--fallback {
  font-size: 28px;
  background: linear-gradient(135deg, rgba(72, 79, 92, 0.96), rgba(20, 24, 31, 0.98));
}

.huimengyu-call[data-huimengyu-call-self-video-layout="expanded"] .huimengyu-call__self-video,
.huimengyu-call__self-video[data-huimengyu-call-self-video-layout="expanded"] {
  top: 72px;
  right: 16px;
  width: 114px;
  height: 176px;
  border-radius: 0;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.huimengyu-call__video-camera-off,
.huimengyu-call__camera-off-text {
  display: none;
}

.huimengyu-call__info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  text-align: center;
}

.huimengyu-call__name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.huimengyu-call__status {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
}

.huimengyu-call__timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
}

.huimengyu-call__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

.huimengyu-call__meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.huimengyu-call__meta-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #77d7ff;
  box-shadow: 0 0 10px rgba(119, 215, 255, 0.7);
}

.huimengyu-call__actions {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  padding-top: 6px;
}

.huimengyu-call__actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.huimengyu-call__actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 190px;
  margin: 0 auto;
}

.huimengyu-call__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: auto;
  padding: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  flex: 0 0 auto;
}

.huimengyu-call__action.is-active {
  background: rgba(255, 255, 255, 0.22);
}

.huimengyu-call__action.is-active .huimengyu-call__action-icon {
  color: #1a1a1d;
}

.huimengyu-call__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.huimengyu-call__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 400;
  color: #17181b;
  background: transparent;
  box-shadow: none;
  filter: grayscale(1);
}

.huimengyu-call__action-label {
  display: none;
}

.huimengyu-call__footer {
  display: flex;
  justify-content: center;
  margin-top: -2px;
}

.huimengyu-call__hangup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  width: 78px;
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  background: linear-gradient(135deg, #ff6d83 0%, #ff4b61 100%);
  box-shadow:
    0 18px 36px rgba(255, 75, 97, 0.34),
    inset 0 -6px 14px rgba(188, 17, 51, 0.22);
  flex: 0 0 auto;
}

.huimengyu-call__hangup::before {
  content: "📞";
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
  transform: rotate(135deg);
}

.huimengyu-call__hangup:hover {
  box-shadow: 0 20px 40px rgba(255, 75, 97, 0.42);
}

.huimengyu-call[data-huimengyu-call-status-value="connecting"] .huimengyu-call__meta-chip-dot {
  background: #ffd76b;
  box-shadow: 0 0 10px rgba(255, 215, 107, 0.72);
}

.huimengyu-call[data-huimengyu-call-status-value="ringing"] .huimengyu-call__meta-chip-dot {
  background: #77d7ff;
  box-shadow: 0 0 10px rgba(119, 215, 255, 0.74);
}

.huimengyu-call[data-huimengyu-call-status-value="connected"] .huimengyu-call__meta-chip-dot {
  background: #76f1b0;
  box-shadow: 0 0 10px rgba(118, 241, 176, 0.78);
}

.huimengyu-call[data-huimengyu-call-mode="voice"] .huimengyu-call__topbar {
  align-items: start;
}

.huimengyu-call[data-huimengyu-call-mode="voice"] .huimengyu-call__actions {
  padding-top: 12px;
  padding-bottom: 42px;
}

.huimengyu-call[data-huimengyu-call-mode="voice"] .huimengyu-call__actions-row {
  gap: 18px;
}

.huimengyu-call[data-huimengyu-call-mode="voice"] .huimengyu-call__action {
  width: 62px;
  background: rgba(0, 0, 0, 0.76);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.huimengyu-call[data-huimengyu-call-mode="voice"] .huimengyu-call__action-icon {
  font-size: 28px;
  color: #ffffff;
  filter: none;
}

.huimengyu-call[data-huimengyu-call-mode="voice"] .huimengyu-call__hangup {
  width: 82px;
  min-width: 82px;
}

.huimengyu-call[data-huimengyu-call-mode="video"],
.huimengyu-call--video {
  padding: 10px 14px 18px;
  background: #000000;
}

.huimengyu-call[data-huimengyu-call-mode="video"]::before,
.huimengyu-call--video::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.22) 100%);
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__topbar,
.huimengyu-call--video .huimengyu-call__topbar {
  position: relative;
  z-index: 8;
  grid-template-columns: 42px 1fr 42px;
  align-items: start;
  margin-bottom: 0;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__topbar-center,
.huimengyu-call--video .huimengyu-call__topbar-center {
  padding-top: 2px;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__body,
.huimengyu-call--video .huimengyu-call__body {
  position: relative;
  gap: 0;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__main,
.huimengyu-call--video .huimengyu-call__main {
  flex: 1 1 auto;
  justify-content: flex-start;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__back,
.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__top-action,
.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__timer--top,
.huimengyu-call--video .huimengyu-call__back,
.huimengyu-call--video .huimengyu-call__top-action,
.huimengyu-call--video .huimengyu-call__timer--top {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__back,
.huimengyu-call--video .huimengyu-call__back {
  width: 28px;
  height: 28px;
  font-size: 24px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__top-action,
.huimengyu-call--video .huimengyu-call__top-action {
  justify-self: end;
  width: 28px;
  height: 28px;
  border-radius: 0;
  color: #ffffff;
  font-size: 15px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.huimengyu-call__info--video,
.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__info,
.huimengyu-call--video .huimengyu-call__info {
  display: none;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__timer,
.huimengyu-call--video .huimengyu-call__timer {
  font-size: 17px;
  color: #ffffff;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__timer--top,
.huimengyu-call--video .huimengyu-call__timer--top {
  min-width: 72px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__actions,
.huimengyu-call--video .huimengyu-call__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 9;
  margin-top: 0;
  gap: 14px;
  padding-top: 0;
  padding-bottom: 0;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__actions-grid,
.huimengyu-call--video .huimengyu-call__actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 286px;
  margin: 0 auto;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__action,
.huimengyu-call--video .huimengyu-call__action {
  width: 74px;
  min-width: 0;
  aspect-ratio: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__action-button,
.huimengyu-call--video .huimengyu-call__action-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 239, 239, 0.92) 100%);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__action.is-active .huimengyu-call__action-button,
.huimengyu-call--video .huimengyu-call__action.is-active .huimengyu-call__action-button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(226, 226, 226, 0.9) 100%);
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__action-icon,
.huimengyu-call--video .huimengyu-call__action-icon {
  font-size: 24px;
  color: #18191c;
  filter: none;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__action-label,
.huimengyu-call--video .huimengyu-call__action-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.35;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.36);
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__footer,
.huimengyu-call--video .huimengyu-call__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-content: center;
  justify-items: center;
  gap: 0;
  width: 100%;
  max-width: 286px;
  margin: 2px auto 0;
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__hangup,
.huimengyu-call--video .huimengyu-call__hangup {
  width: 62px;
  min-width: 62px;
  background: linear-gradient(180deg, #ff6f73 0%, #ff4f5a 100%);
  box-shadow:
    0 16px 30px rgba(255, 79, 90, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__hangup::before,
.huimengyu-call--video .huimengyu-call__hangup::before {
  font-size: 22px;
}

@keyframes huimengyu-call-wave {
  0% {
    opacity: 0.48;
    transform: translate(-50%, -50%) scale(0.84);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

@media (max-width: 420px) {
  .huimengyu-call {
    padding: 14px 18px 18px;
  }

  .huimengyu-call__remote-stage--voice {
    min-height: 294px;
  }

  .huimengyu-call__voice-glow {
    width: 168px;
    height: 168px;
  }

  .huimengyu-call__voice-wave--one {
    width: 132px;
    height: 132px;
  }

  .huimengyu-call__voice-wave--two {
    width: 184px;
    height: 184px;
  }

  .huimengyu-call__voice-wave--three {
    width: 236px;
    height: 236px;
  }

  .huimengyu-call__avatar-wrap,
  .huimengyu-call__avatar,
  .huimengyu-call__avatar-fallback {
    width: 98px;
    height: 98px;
    border-radius: 28px;
  }

  .huimengyu-call__avatar-fallback {
    font-size: 34px;
  }

  .huimengyu-call[data-huimengyu-call-mode="voice"] .huimengyu-call__actions {
    padding-bottom: 34px;
  }

  .huimengyu-call__actions-grid {
    gap: 14px;
  }

  .huimengyu-call__action {
    width: 62px;
  }

  .huimengyu-call__action-icon {
    width: 100%;
    height: 100%;
    font-size: 24px;
  }

  .huimengyu-call__hangup {
    width: 72px;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"],
  .huimengyu-call--video {
    padding: 10px 12px 16px;
  }

.huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__remote-stage--video,
.huimengyu-call--video .huimengyu-call__remote-stage--video {
  inset: 0;
}

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__video-overlay,
  .huimengyu-call--video .huimengyu-call__video-overlay {
    left: 16px;
    right: 120px;
    top: 78px;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__video-name,
  .huimengyu-call--video .huimengyu-call__video-name {
    font-size: 22px;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__self-video,
  .huimengyu-call--video .huimengyu-call__self-video {
    top: 12px;
    right: 12px;
    width: 98px;
    height: 134px;
  }

  .huimengyu-call[data-huimengyu-call-self-video-layout="expanded"] .huimengyu-call__self-video,
  .huimengyu-call__self-video[data-huimengyu-call-self-video-layout="expanded"] {
    top: 72px;
    right: 14px;
    width: 126px;
    height: 172px;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__actions,
  .huimengyu-call--video .huimengyu-call__actions {
    padding-bottom: 10px;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__actions-grid,
  .huimengyu-call--video .huimengyu-call__actions-grid {
    max-width: 296px;
    gap: 6px;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__action,
  .huimengyu-call--video .huimengyu-call__action {
    width: 72px;
    min-width: 0;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__action-button,
  .huimengyu-call--video .huimengyu-call__action-button {
    width: 50px;
    height: 50px;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__action-label,
  .huimengyu-call--video .huimengyu-call__action-label {
    font-size: 10px;
    margin-top: 6px;
  }

  .huimengyu-call[data-huimengyu-call-mode="video"] .huimengyu-call__hangup,
  .huimengyu-call--video .huimengyu-call__hangup {
    width: 56px;
    min-width: 56px;
  }
}
