﻿.dd-support {
  position: fixed;
  right: 24px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 40;
  font-family: Inter, Arial, sans-serif;
  color: #f2f3ff;
}
.dd-support-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  border: 1px solid #a298ff;
  border-radius: 999px;
  padding: 14px 20px;
  min-height: 50px;
  background: #6255ee;
  color: white;
  font:
    600 14px Inter,
    Arial,
    sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 30px #05071188;
}
.dd-support-toggle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dd-support-panel {
  box-sizing: border-box;
  width: 340px;
  max-width: calc(100vw - 32px);
  padding: 23px;
  margin-bottom: 12px;
  background: #141b2d;
  border: 1px solid #45426d;
  border-radius: 18px;
  box-shadow: 0 14px 60px #0008;
  max-height: calc(100dvh - 170px);
  overflow-y: auto;
}
.dd-support-panel[hidden] {
  display: none;
}
.dd-support-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #b2aaff;
  font-size: 10px;
  letter-spacing: 1.5px;
}
.dd-support-close {
  border: 0;
  background: transparent;
  color: #d5d5ed;
  font: 26px Arial;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
}
.dd-support-panel h2 {
  font-size: 21px;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin: 10px 0;
}
.dd-support-panel p {
  font-size: 13px;
  color: #bac4df;
  line-height: 1.6;
  margin: 12px 0;
}
.dd-support-email {
  display: block;
  padding: 14px;
  border-radius: 10px;
  background: #6255ee;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
.dd-support-email small {
  display: block;
  font-size: 11px;
  overflow-wrap: anywhere;
  font-weight: 400;
}
.dd-support-recovery {
  display: block;
  color: #c3baff;
  font-size: 12px;
  text-decoration: none;
  padding: 16px 0 4px;
  line-height: 1.6;
}
.dd-support-panel .dd-support-note {
  font-size: 11px;
  color: #a6b1ce;
  margin-bottom: 0;
}
.dd-support button:focus-visible,
.dd-support a:focus-visible {
  outline: 3px solid #d1c9ff;
  outline-offset: 3px;
}
.contact-email {
  display: block;
  color: #bcb4ff;
  overflow-wrap: anywhere;
  margin: 20px 0;
  font-size: 16px;
}
.support-inline {
  font-size: 12px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.support-inline a {
  color: #b5acff;
}
@media (max-width: 760px) {
  .dd-support {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  body:has(.sidebar) .dd-support {
    bottom: calc(94px + env(safe-area-inset-bottom));
  }
  .dd-support-toggle {
    padding: 12px 16px;
  }
  .dd-support-panel {
    width: 330px;
  }
  .dd-support-panel h2 {
    font-size: 20px;
  }
}
