html.dino-support-dialog-open {
  overflow: hidden;
}

.dino-support-notice {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  color: #111;
  font-family: var(--body-font);
}

.dino-support-notice[hidden] {
  display: none;
}

.dino-support-notice *,
.dino-support-notice *::before,
.dino-support-notice *::after {
  box-sizing: border-box;
}

.dino-support-notice__reveal {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dino-support-notice.is-visible .dino-support-notice__reveal {
  grid-template-rows: 1fr;
}

.dino-support-notice__reveal-inner {
  min-height: 0;
  overflow: hidden;
}

.dino-support-notice__bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.dino-support-notice__bar-inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.45rem 0;
}

.dino-support-notice__bar-title,
.dino-support-notice__panel-title,
.dino-support-notice__update-title,
.dino-support-notice__help {
  color: inherit;
  font-family: var(--body-font);
}

.dino-support-notice__bar-title {
  margin: 0;
  font-size: 14px;
  font-weight: var(--body-bold-font-weight, 600);
  letter-spacing: var(--body-letter-spacing, 0);
  line-height: 1.4;
}

.dino-support-notice__actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
}

.dino-support-notice__toggle,
.dino-support-notice__close,
.dino-support-notice__dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #111;
  font-family: var(--body-font);
  cursor: pointer;
}

.dino-support-notice__toggle {
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 0.1rem 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: var(--body-bold-font-weight, 600);
  line-height: 1.25;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  white-space: nowrap;
  transition: opacity 160ms ease;
}

.dino-support-notice__toggle:hover {
  opacity: 0.68;
}

.dino-support-notice__close {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: background-color 160ms ease;
}

.dino-support-notice__close:hover {
  background: rgba(0, 0, 0, 0.07);
}

.dino-support-notice__toggle:focus-visible,
.dino-support-notice__close:focus-visible,
.dino-support-notice__dialog-close:focus-visible,
.dino-support-notice__help a:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.dino-support-notice__dialog {
  width: min(900px, calc(100% - 32px));
  height: min(82dvh, 760px);
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  background: #fff;
  color: #111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56);
  scrollbar-color: rgba(0, 0, 0, 0.34) transparent;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.dino-support-notice__dialog::-webkit-scrollbar {
  width: 7px;
}

.dino-support-notice__dialog::-webkit-scrollbar-track {
  background: transparent;
}

.dino-support-notice__dialog::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
}

.dino-support-notice__dialog::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.dino-support-notice__dialog::-webkit-scrollbar-button,
.dino-support-notice__dialog::-webkit-scrollbar-button:single-button {
  display: none;
  width: 0;
  height: 0;
}

.dino-support-notice__dialog::backdrop {
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(3px);
}

.dino-support-notice__dialog-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 3.75rem);
}

.dino-support-notice__dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.62);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.dino-support-notice__dialog-close:hover {
  background: rgba(0, 0, 0, 0.07);
  color: #111;
}

.dino-support-notice__panel-title {
  max-width: 800px;
  margin: 0;
  padding-right: 2.5rem;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: var(--body-bold-font-weight, 600);
  letter-spacing: var(--body-letter-spacing, 0);
  line-height: 1.25;
}

.dino-support-notice__intro {
  max-width: 840px;
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  line-height: 1.65;
}

.dino-support-notice__intro > :first-child,
.dino-support-notice__update-copy > :first-child {
  margin-top: 0;
}

.dino-support-notice__intro > :last-child,
.dino-support-notice__update-copy > :last-child {
  margin-bottom: 0;
}

.dino-support-notice__updates {
  display: block;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.dino-support-notice__update {
  padding: 1.5rem 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 0;
  background: transparent;
}

.dino-support-notice__update-title {
  margin: 0;
  font-size: 18px;
  font-weight: var(--body-bold-font-weight, 600);
  line-height: 1.35;
}

.dino-support-notice__update-copy {
  margin-top: 0.75rem;
  color: rgba(0, 0, 0, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.dino-support-notice__help {
  margin: 1.4rem 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.dino-support-notice .dino-support-notice__help a:not(.button),
.dino-support-notice .dino-support-notice__help a:not(.button):hover,
.dino-support-notice .dino-support-notice__help a:not(.button):focus-visible {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media screen and (max-width: 749px) {
  .dino-support-notice__bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.55rem 0;
  }

  .dino-support-notice__bar-title {
    font-size: 13px;
  }

  .dino-support-notice__actions {
    gap: 0.5rem;
  }

  .dino-support-notice__toggle {
    font-size: 12px;
  }

  .dino-support-notice__close {
    width: 26px;
    height: 26px;
    font-size: 22px;
  }

  .dino-support-notice__dialog {
    width: calc(100% - 20px);
    height: 86dvh;
    max-height: calc(100dvh - 20px);
    border-radius: 10px;
  }

  .dino-support-notice__dialog-panel {
    padding: 2.75rem 1.25rem 1.75rem;
  }

  .dino-support-notice__panel-title {
    padding-right: 1.5rem;
    font-size: 23px;
  }

  .dino-support-notice__updates {
    margin-top: 1.4rem;
  }

  .dino-support-notice__update {
    padding: 1.25rem 0;
  }
}

@media screen and (max-width: 420px) {
  .dino-support-notice__bar-title {
    font-size: 12px;
  }

  .dino-support-notice__actions {
    gap: 0.35rem;
  }

  .dino-support-notice__toggle {
    font-size: 11px;
  }

  .dino-support-notice__close {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dino-support-notice__reveal {
    transition: none;
  }

  .dino-support-notice__dialog::backdrop {
    backdrop-filter: none;
  }
}
