:root {
  color-scheme: dark;
  --color-background: #000;
  --color-text: #fff;
  --color-accent: #ff2b2b;
  --color-accent-bright: #ff3b3b;
  --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-ui);
}
canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background: var(--color-background);
}
button, input { font: inherit; }
button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(18, 4, 4, 0.84);
  color: var(--color-text);
  padding: 9px 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}
button:hover, button:focus-visible { background: rgba(125, 7, 10, 0.96); }
button:disabled { cursor: not-allowed; opacity: 0.45; }
.hidden { display: none !important; }
body.green-hue-minute {
  filter: hue-rotate(120deg) saturate(1.08);
}
.sr-only,
.live-start-button-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#clockBadge {
  --badgePulse: 0;
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 7;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  max-width: min(350px, calc(100vw - 28px));
  padding: 10px 16px 10px 14px;
  border: 0;
  background: transparent;
  transform-origin: left top;
}
#clockBadge::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: -2px;
  border: 0;
  mix-blend-mode: screen;
}
#clockBadgeIcon {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  filter: drop-shadow(0 0 calc(4px + 6px * var(--badgePulse)) rgba(255, 30, 30, calc(0.20 + 0.28 * var(--badgePulse))));
}
#clockBadgeIcon .badge-ring {
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 5.5;
  fill: none;
}
#clockBadgeIcon .badge-face {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.4;
}
#clockBadgeIcon .badge-ticks line {
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 2.3;
  stroke-linecap: round;
}
#clockBadgeIcon .badge-hand {
  stroke: var(--color-accent);
  stroke-linecap: round;
  transform: none;
  transition: opacity 100ms linear;
  filter: drop-shadow(0 0 4px rgba(255, 30, 30, 0.42));
}
#clockBadgeIcon .badge-hour-hand { stroke-width: 4.8; }
#clockBadgeIcon .badge-minute-hand { stroke-width: 3.6; }
#clockBadgeIcon .badge-second-hand {
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 2;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.26));
}
#clockBadgeIcon .badge-center-dot {
  fill: var(--color-accent);
  transform-origin: 50px 50px;
  filter: drop-shadow(0 0 4px rgba(255, 30, 30, 0.42));
}
#clockBadgeText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
}
#clockBadgeTop {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0.03em;
}
#clockBadgeTop .clock,
#clockBadgeTop .radio { font-size: clamp(27px, 2.6vw, 38px); }
#clockBadgeTop .radio { color: var(--color-accent); }
#clockBadgeBottom {
  color: rgba(238, 238, 238, 0.96);
  font-size: clamp(15px, 1.3vw, 21px);
  letter-spacing: 0.28em;
  font-weight: 750;
  white-space: nowrap;
}

#nowPlayingBadge {
  --playBadgePulse: 0;
  grid-area: playing;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 14px 16px 13px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.66), rgba(6, 6, 6, 0.48)),
    linear-gradient(135deg, rgba(255, 0, 0, 0.17), rgba(255, 0, 0, 0.055) 58%);
  box-shadow:
    0 0 calc(12px + 16px * var(--playBadgePulse)) rgba(255, 35, 35, calc(0.12 + 0.14 * var(--playBadgePulse))),
    inset 0 0 22px rgba(255, 0, 0, 0.065);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
  transform-origin: right top;
  overflow: hidden;
}
#nowPlayingBadge::before,
#nowPlayingBadge::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
#nowPlayingBadge::before {
  inset: -2px;
  border: 0;
  clip-path: inherit;
  mix-blend-mode: screen;
}
#nowPlayingBadge::after {
  right: -8px;
  top: -8px;
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, rgba(255, 55, 55, 0.95), rgba(255, 0, 0, 0.2));
  clip-path: polygon(46% 0, 100% 0, 100% 54%);
  filter: drop-shadow(0 0 12px rgba(255, 40, 40, 0.32));
}
#nowPlayingLabel {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(255, 50, 50, 0.98), rgba(185, 0, 0, 0.98));
  color: var(--color-text);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 calc(10px + 12px * var(--playBadgePulse)) rgba(255, 32, 32, calc(0.20 + 0.18 * var(--playBadgePulse)));
}
#nowPlayingLines {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 950;
}
#nowPlayingLines .line-main,
#nowPlayingLines .line-sub { font-size: clamp(22px, 2.2vw, 31px); }
#nowPlayingLines .accent { color: var(--color-accent-bright); }
#nowPlayingDescription {
  position: relative;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.38;
  letter-spacing: 0.015em;
  font-weight: 500;
  text-transform: none;
}
#nowPlayingDescription p { margin: 0; }
#nowPlayingDescription strong {
  color: var(--color-text);
  font-weight: 750;
  text-shadow: 0 0 9px rgba(255, 43, 43, 0.36);
}
#nowPlayingDescription a {
  position: relative;
  z-index: 2;
  color: var(--color-text);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(255, 43, 43, 0.86);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  pointer-events: auto;
}
#nowPlayingDescription a:hover,
#nowPlayingDescription a:focus-visible {
  color: #ff8a8a;
  outline: none;
  text-shadow: 0 0 10px rgba(255, 43, 43, 0.54);
}


.inline-emoji-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.08em;
  height: 1.08em;
  margin: 0 0.08em;
  vertical-align: -0.16em;
  line-height: 1;
}
.inline-emoji-svg__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 6px rgba(255, 43, 43, 0.48));
}
#nowPlayingDescription a .inline-emoji-svg {
  margin-left: 0;
  margin-right: 0.22em;
}

#soundWidget {
  --soundWidgetPulse: 0;
  position: fixed;
  right: 14px;
  top: 14px;
  z-index: 7;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-areas:
    "toggle controls"
    "playing playing";
  gap: 14px;
  align-items: start;
  width: min(390px, calc(100vw - 28px));
  padding: 14px 16px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.30), rgba(7, 7, 7, 0.16)),
    linear-gradient(135deg, rgba(255, 0, 0, 0.10), rgba(255, 0, 0, 0.015) 62%);
  box-shadow:
    0 0 calc(12px + 16px * var(--soundWidgetPulse)) rgba(255, 38, 38, calc(0.12 + 0.14 * var(--soundWidgetPulse))),
    inset 0 0 22px rgba(255, 0, 0, 0.025);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  overflow: hidden;
  transform-origin: right top;
}
#soundWidget::before,
#soundWidget::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
#soundWidget::before {
  display: none;
}
#soundWidget::after {
  right: -8px;
  top: -8px;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(255, 55, 55, 0.95), rgba(255, 0, 0, 0.2));
  clip-path: polygon(54% 0, 100% 0, 100% 46%);
  filter: drop-shadow(0 0 12px rgba(255, 40, 40, 0.28));
}
#soundToggleBtn {
  grid-area: toggle;
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  min-width: 0;
  padding: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.38);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.04);
}
#soundToggleBtn svg { width: 42px; height: 42px; overflow: visible; }
#soundToggleBtn .speaker-fill {
  fill: var(--color-accent);
  filter: drop-shadow(0 0 7px rgba(255, 43, 43, 0.46));
}
#soundToggleBtn .speaker-wave {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 43, 43, 0.46));
}
#soundToggleBtn .speaker-slash {
  fill: none;
  stroke: var(--color-text);
  stroke-width: 2.8;
  stroke-linecap: round;
  opacity: 0;
}
#soundWidgetBody {
  grid-area: controls;
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: center;
}
#soundLabel {
  margin-bottom: 8px;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
#soundMeter {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  margin-bottom: 10px;
}
#soundMeter .sound-bar {
  flex: 1 1 0;
  height: 28px;
  min-width: 0;
  background: rgba(245, 245, 245, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: scaleY(0.18);
  transform-origin: center bottom;
  opacity: 0.24;
  will-change: transform, opacity;
}
#soundRange {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  accent-color: var(--color-accent);
}
body.radio-start-pending #clockBadge,
body.radio-start-pending #soundWidget,
body.radio-start-pending #connectPanel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#liveStartOverlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 56px);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 43, 43, 0.24), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(115, 0, 0, 0.32), transparent 52%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.90));
  cursor: pointer;
  text-align: center;
}
#liveStartOverlay.hidden {
  display: none !important;
}
.live-start-card {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(26px, 6vw, 58px) clamp(18px, 5vw, 52px);
  border: 1px solid rgba(255, 70, 70, 0.90);
  background:
    linear-gradient(180deg, rgba(16, 0, 0, 0.92), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(255, 43, 43, 0.30), transparent 58%);
  box-shadow:
    0 0 60px rgba(255, 30, 30, 0.42),
    0 28px 80px rgba(0, 0, 0, 0.62),
    inset 0 0 32px rgba(255, 0, 0, 0.10);
  clip-path: polygon(34px 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%, 0 34px);
  text-transform: uppercase;
}
.live-start-card::before,
.live-start-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.live-start-card::before {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}
.live-start-card::after {
  left: 50%;
  top: 50%;
  width: min(380px, 68vw);
  height: min(380px, 68vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 70, 70, 0.22);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 42px rgba(255, 43, 43, 0.16) inset;
}
.live-start-kicker,
#liveStartTitle,
.live-start-copy,
#liveStartBtn,
#liveStartMeta {
  position: relative;
  z-index: 1;
}
.live-start-kicker {
  color: #ff5a5a;
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 950;
  letter-spacing: 0.22em;
  text-shadow: 0 0 14px rgba(255, 43, 43, 0.52);
}
#liveStartTitle {
  margin: 12px 0 10px;
  color: var(--color-text);
  font-size: clamp(38px, 9vw, 86px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-shadow:
    0 0 18px rgba(255, 43, 43, 0.60),
    0 0 52px rgba(255, 43, 43, 0.32);
}
.live-start-copy {
  max-width: 560px;
  margin: 0 auto clamp(20px, 4vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 2.2vw, 19px);
  line-height: 1.35;
  font-weight: 760;
  letter-spacing: 0.045em;
}
#liveStartBtn {
  width: clamp(132px, 28vw, 220px);
  height: clamp(132px, 28vw, 220px);
  margin: 0 auto clamp(16px, 3vw, 24px);
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 56, 56, 0.98), rgba(174, 0, 0, 0.98));
  color: var(--color-text);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 44px rgba(255, 43, 43, 0.62),
    0 0 0 12px rgba(255, 43, 43, 0.10),
    inset 0 0 22px rgba(255, 255, 255, 0.16);
  transform-origin: center;
  animation: livePlayPulse 1.35s ease-in-out infinite;
}
#liveStartBtn:hover,
#liveStartBtn:focus-visible {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(255, 86, 86, 1), rgba(214, 0, 0, 1));
  outline: none;
}
.live-start-play-icon {
  display: block;
  margin-left: 0.12em;
  font-size: clamp(60px, 13vw, 112px);
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
}
#liveStartMeta {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(11px, 1.8vw, 14px);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0.08em;
}
@keyframes livePlayPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 44px rgba(255, 43, 43, 0.62), 0 0 0 12px rgba(255, 43, 43, 0.10), inset 0 0 22px rgba(255, 255, 255, 0.16); }
  50% { transform: scale(1.045); box-shadow: 0 0 60px rgba(255, 43, 43, 0.78), 0 0 0 18px rgba(255, 43, 43, 0.08), inset 0 0 26px rgba(255, 255, 255, 0.20); }
}

#connectPanel {
  --connectPulse: 0;
  position: fixed;
  right: clamp(16px, 3.5vw, 58px);
  bottom: clamp(18px, 5.3vh, 58px);
  z-index: 9;
  width: min(500px, calc(100vw - 32px));
  padding: 18px 20px 16px;
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(9, 0, 0, 0.86), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 88% 15%, rgba(255, 43, 43, 0.22), transparent 38%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.08), rgba(255, 0, 0, 0.01));
  border: 1px solid rgba(255, 42, 42, 0.95);
  box-shadow:
    0 0 calc(26px + 20px * var(--connectPulse)) rgba(255, 28, 28, calc(0.18 + 0.12 * var(--connectPulse))),
    inset 0 0 26px rgba(255, 0, 0, 0.07);
  clip-path: polygon(34px 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%, 0 34px);
  overflow: hidden;
}
#connectPanel::before,
#connectPanel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
#connectPanel::before {
  inset: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 26px);
}
#connectPanel::after {
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(255, 34, 34, 0.22) 0 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.72;
  transform: rotate(-18deg);
}
.connect-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
#connectTitle {
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.055em;
}
.connect-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 84px;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.48);
  overflow: hidden;
}
#connectPhone {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  padding: 0 20px;
  font-size: clamp(18px, 1.7vw, 29px);
  letter-spacing: 0.02em;
}
#connectPhone::placeholder { color: rgba(255, 255, 255, 0.56); }
#connectPhone:focus { box-shadow: inset 0 -2px 0 rgba(255, 43, 43, 0.85); }
#connectSubmit {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 64, 64, 0.98), rgba(218, 0, 0, 0.98));
  display: grid;
  place-items: center;
  padding: 0;
}
#connectSubmit svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.connect-status {
  min-height: 20px;
  margin: 9px 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.connect-status[data-tone="ok"] { color: rgba(255, 255, 255, 0.92); text-shadow: 0 0 10px rgba(255, 43, 43, 0.38); }
.connect-status[data-tone="error"] { color: #ff8a8a; }
.connect-actions {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 0.82fr);
  grid-template-areas:
    "share divider copy"
    "social social social";
  gap: 14px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
#sharePageBtn { grid-area: share; }
#copyLinkBtn { grid-area: copy; }
.connect-action {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
  padding: 6px 4px;
  font-size: clamp(16px, 1.45vw, 24px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.connect-action:hover,
.connect-action:focus-visible { color: var(--color-text); background: rgba(255, 38, 38, 0.12); outline: none; }
.connect-action svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 43, 43, 0.44));
}
.connect-divider {
  grid-area: divider;
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.26);
}
.social-share-links {
  grid-area: social;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}
.social-share-link {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-height: 56px;
  padding: 7px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 43, 43, 0.055);
  font-size: 10px;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}
.social-share-link:hover,
.social-share-link:focus-visible {
  border-color: rgba(255, 80, 80, 0.52);
  box-shadow: 0 0 14px rgba(255, 43, 43, 0.14);
}
.social-share-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(255, 43, 43, 0.40));
}

@media (max-width: 940px), (max-height: 660px) {
  #connectPanel { transform: scale(0.88); transform-origin: right bottom; }
}
@media (max-width: 700px) {
  #clockBadge { transform: scale(0.78); min-width: 0; }
  #nowPlayingBadge { min-width: 0; }
  #soundWidget { transform: scale(0.82); width: min(390px, calc(100vw - 24px)); }
}
@media (max-width: 620px) {
  #connectPanel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px;
    transform: none;
    clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  }
  .connect-form { grid-template-columns: 1fr 66px; min-height: 54px; }
  #connectPhone { padding: 0 14px; }
  .connect-actions {
    grid-template-columns: 1fr;
    grid-template-areas:
      "share"
      "copy"
      "social";
    gap: 4px;
  }
  .connect-divider { display: none; }
  .social-share-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .social-share-link {
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 12px;
    text-align: left;
    white-space: nowrap;
  }
}
