/* IOS_SUPPORT_CHAT_V1 */
.ios-support-card{
  position:relative;
  z-index:2;
  margin:0 14px 18px;
  padding:16px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(12,28,52,.96), rgba(5,14,30,.96));
  border:1px solid rgba(80,190,255,.18);
  box-shadow:0 22px 70px rgba(0,0,0,.38);
}
.ios-support-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.ios-support-avatar{
  width:52px;
  height:52px;
  border-radius:18px;
  background:rgba(56,189,248,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(56,189,248,.22);
}
.ios-support-avatar img{
  width:34px;
  height:34px;
  object-fit:contain;
}
.ios-support-title{
  color:#fff;
  font-size:22px;
  font-weight:950;
  line-height:1.05;
}
.ios-support-subtitle{
  color:#9fb9d2;
  font-size:12px;
  font-weight:750;
  margin-top:4px;
}
.ios-support-chat{
  min-height:360px;
  max-height:58vh;
  overflow:auto;
  padding:12px;
  border-radius:20px;
  background:rgba(2,8,20,.42);
  border:1px solid rgba(255,255,255,.06);
}
.ios-support-msg{
  margin:0 0 10px;
  display:flex;
}
.ios-support-msg.user{
  justify-content:flex-end;
}
.ios-support-msg.support,
.ios-support-msg.assistant{
  justify-content:flex-start;
}
.ios-support-bubble{
  max-width:86%;
  padding:10px 12px;
  border-radius:16px;
  color:#eaf7ff;
  font-size:13px;
  line-height:1.42;
  white-space:pre-wrap;
  word-break:break-word;
  border:1px solid rgba(255,255,255,.08);
}
.ios-support-msg.user .ios-support-bubble{
  background:linear-gradient(135deg, rgba(14,165,233,.42), rgba(37,99,235,.34));
}
.ios-support-msg.support .ios-support-bubble,
.ios-support-msg.assistant .ios-support-bubble{
  background:rgba(15,23,42,.86);
}
.ios-support-meta{
  display:block;
  margin-top:6px;
  color:#7f9ab4;
  font-size:10px;
  font-weight:800;
}
.ios-support-empty{
  color:#9fb9d2;
  font-size:13px;
  line-height:1.45;
  padding:16px 4px;
}
.ios-support-form{
  display:flex;
  gap:8px;
  margin-top:12px;
}
.ios-support-input{
  flex:1;
  min-height:44px;
  max-height:110px;
  resize:none;
  border-radius:16px;
  border:1px solid rgba(80,190,255,.18);
  background:rgba(2,8,20,.66);
  color:#fff;
  padding:12px;
  font-size:14px;
  outline:none;
}
.ios-support-send{
  width:54px;
  border:0;
  border-radius:16px;
  background:linear-gradient(135deg,#22d3ee,#2563eb);
  color:#fff;
  font-weight:950;
  font-size:18px;
  box-shadow:0 14px 30px rgba(37,99,235,.28);
}
.ios-support-send:disabled{
  opacity:.55;
}
.ios-support-note{
  margin-top:8px;
  color:#85a7c3;
  font-size:11px;
  line-height:1.35;
}
.ios-support-error{
  margin-top:10px;
  padding:10px 12px;
  border-radius:16px;
  color:#fecdd3;
  background:rgba(244,63,94,.12);
  border:1px solid rgba(244,63,94,.22);
  font-size:12px;
  font-weight:800;
}
.ios-support-error.hidden{
  display:none;
}
