.box {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.box .group {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.box .rectangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #001d92;
}

.box .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.box .jaune-radio-logo {
  width: auto;
  height: 40px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #001657;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 12px;
  z-index: 5;
}

.top-bar .nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.plus-button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
}

.plus {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.toolbar-menu-toggle {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.toolbar-menu-toggle__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toolbar-menu-toggle__bars {
  position: relative;
  width: 24px;
  height: 18px;
}

.toolbar-menu-toggle__bars span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.toolbar-menu-toggle__bars span:nth-child(1) {
  top: 2px;
}

.toolbar-menu-toggle__bars span:nth-child(2) {
  top: 8px;
}

.toolbar-menu-toggle__bars span:nth-child(3) {
  top: 14px;
}

.toolbar-menu-toggle__checkbox:checked + .toolbar-menu-toggle__bars span:nth-child(1) {
  top: 8px;
  transform: translateY(-50%) rotate(45deg);
}

.toolbar-menu-toggle__checkbox:checked + .toolbar-menu-toggle__bars span:nth-child(2) {
  top: 8px;
  transform: translateY(-50%) rotate(-45deg);
}

.toolbar-menu-toggle__checkbox:checked + .toolbar-menu-toggle__bars span:nth-child(3) {
  transform: translateX(-50px);
  opacity: 0;
}

.box .div {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 351px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.box .rectangle-2 {
  display: none;
}

.box .text-wrapper {
  position: absolute;
  bottom: 61px;
  left: 50%;
  transform: translateX(-50%);
  width: 351px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 23px;
  padding-right: 23px;
  font-family: "Segoe UI", "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 25px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
}

.box .text-wrapper-content {
  display: inline-block;
  white-space: nowrap;
}

.box .text-wrapper-content.scrolling {
  animation: scroll-text 12s linear infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(calc(-100% + 305px));
  }
  50% {
    transform: translateX(calc(-100% + 305px));
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

.box .text-wrapper-2 {
  position: absolute;
  bottom: 41px;
  left: 50%;
  transform: translateX(-50%);
  width: 351px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 23px;
  padding-right: 23px;
  font-family: "Segoe UI", "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
}

.box .text-wrapper-2-content {
  display: inline-block;
  white-space: nowrap;
}

.box .text-wrapper-2-content.scrolling {
  animation: scroll-text-2 12s linear infinite;
}

@keyframes scroll-text-2 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(calc(-100% + 305px));
  }
  50% {
    transform: translateX(calc(-100% + 305px));
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

.nav-menu-overlay {
  position: absolute;
  top: 70px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  z-index: 7;
}

.nav-menu-overlay.open {
  pointer-events: auto;
  animation: menuSlideIn 0.35s cubic-bezier(0.4, 0.9, 0.4, 1.2) forwards;
}

.nav-menu-overlay.closing {
  pointer-events: none;
  animation: menuSlideOut 0.25s ease forwards;
}

.suggestion-input-wrapper {
  position: fixed;
  top: 75px;
  left: 50%;
  transform: translate(-50%, -10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 6;
}

.suggestion-input-wrapper.open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.suggestion-input {
  width: min(80vw, 320px);
  max-width: 320px;
  background-color: #1a1a1a;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  outline: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "SF Pro Display", "Arial", sans-serif;
}

.suggestion-input:focus {
  animation: rotateShadow 2s infinite linear;
}

.suggestion-results {
  margin-top: 12px;
  width: min(80vw, 320px);
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "SF Pro Display", "Arial", sans-serif;
  color: #ffffff;
}

.suggestion-result {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, border 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid transparent;
}

.suggestion-result:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.suggestion-result:focus-visible {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.suggestion-result-action {
  align-self: flex-end;
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #aa00ff, #3700ff);
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.suggestion-result-action:hover {
  transform: scale(1.05);
}

.suggestion-result-action:active {
  transform: scale(0.95);
}

.suggestion-result-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.suggestion-result-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.suggestion-message {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 8px 0;
}

.suggestion-toast {
  margin-top: 8px;
  font-size: 13px;
  text-align: center;
  color: #d6c6ff;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.suggestion-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.suggestion-toast.error {
  color: #ff8a8a;
}

@keyframes rotateShadow {
  0% {
    box-shadow: -2px -2px 8px 1px #aa00ff, 2px 2px 8px 1px #3700ff;
  }
  25% {
    box-shadow: -2px 2px 8px 1px #aa00ff, 2px -2px 8px 1px #3700ff;
  }
  50% {
    box-shadow: 2px 2px 8px 1px #aa00ff, -2px -2px 8px 1px #3700ff;
  }
  75% {
    box-shadow: 2px -2px 8px 1px #aa00ff, -2px 2px 8px 1px #3700ff;
  }
  100% {
    box-shadow: -2px -2px 8px 1px #aa00ff, 2px 2px 8px 1px #3700ff;
  }
}

.example-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  background-color: #000;
  border-radius: 30px;
  padding: 20px;
  height: 70px;
  width: 220px;
  list-style: none;
  margin: 0;
}

.example-1 .icon-content {
  margin: 0 10px;
  position: relative;
  font-weight: bolder;
}

.example-1 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.example-1 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.example-1 .icon-content .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  font-weight: bolder;
  text-decoration: none;
}

.example-1 .icon-content .link:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-1 .icon-content .link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.history-panel {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 351px;
  padding: 32px 28px 24px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(25px);
  transform: translate(-50%, 40px);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.history-panel.open {
  pointer-events: auto;
  animation: historySlideIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.history-panel.closing {
  pointer-events: none;
  animation: historySlideOut 0.3s ease forwards;
}

.history-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  font-family: "SF Pro Display", "Arial", sans-serif;
  color: #ffffff;
}

.history-header-handle {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
}

.history-header-icon {
  width: 25px;
  height: 25px;
  object-fit: cover;
}

.history-header-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 260px;
  overflow: hidden;
}

.history-item {
  display: grid;
  grid-template-columns: 55px 110px 1fr;
  align-items: center;
  gap: 12px;
  font-family: "SF Pro Display", "Arial", sans-serif;
  font-size: 12px;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

.history-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.history-item:last-child::after {
  display: none;
}

.history-item.history-empty {
  grid-template-columns: 1fr;
  justify-items: center;
  padding-bottom: 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

.history-item.history-empty::after {
  display: none;
}

.history-time {
  color: rgba(255, 255, 255, 0.8);
}

.about-panel {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 351px;
  height: 271px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 40px;
  box-shadow: 0px 4px 4px #00000080;
  backdrop-filter: blur(25px) brightness(100%);
  -webkit-backdrop-filter: blur(25px) brightness(100%);
  transform: translate(-50%, 40px);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.about-panel.open {
  pointer-events: auto;
  animation: historySlideIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.about-panel.closing {
  pointer-events: none;
  animation: historySlideOut 0.3s ease forwards;
}

.about-panel-header {
  position: absolute;
  top: 20px;
  left: 27px;
  width: 191px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  font-family: "SF Pro-Regular", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.about-panel-header h2 {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.about-panel-icon {
  width: 12px;
  height: 25px;
  object-fit: cover;
  flex-shrink: 0;
}

.about-panel-divider {
  position: absolute;
  top: 5px;
  left: 158px;
  width: 36px;
  height: 5px;
  background-color: #999999;
  border-radius: 2.5px;
}

.about-panel-content {
  position: absolute;
  top: 57px;
  left: 25px;
  width: 301px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  font-family: "SF Pro-Regular", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: normal;
}

.about-panel-content p {
  margin: 0;
  text-align: left;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.about-panel-social {
  position: absolute;
  top: 171px;
  left: 25px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.about-social-link {
  position: relative;
  width: 75px;
  height: 75px;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.about-social-link:hover {
  transform: scale(1.05);
}

.about-social-link:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 30px;
}

.about-social-link:active {
  transform: scale(0.95);
}

.about-social-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  box-shadow: 0px 4px 4px #00000080;
  backdrop-filter: blur(25px) brightness(100%);
  -webkit-backdrop-filter: blur(25px) brightness(100%);
}

.about-social-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 48px;
  height: 48px;
  object-fit: cover;
  pointer-events: none;
}

.history-artist,
.history-track {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes menuSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  80% {
    opacity: 1;
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuSlideOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes historySlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, 50px);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -6px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes historySlideOut {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 40px);
  }
}

.box .header {
  position: static;
}

.box .nav-controls {
  position: static;
}

.box .player-section {
  position: static;
}

.theme-switch-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.theme-switch {
  --toggle-size: 30px;
  --container-width: 5.625em;
  --container-height: 2.5em;
  --container-radius: 6.25em;
  --container-light-bg: #3d7eae;
  --container-night-bg: #1d1f2c;
  --circle-container-diameter: 3.375em;
  --sun-moon-diameter: 2.125em;
  --sun-bg: #ecca2f;
  --moon-bg: #c4c9d1;
  --spot-color: #959db1;
  --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
  --stars-color: #ffffff;
  --clouds-color: #f3fdff;
  --back-clouds-color: #aacadf;
  --transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  --circle-transition: 0.3s cubic-bezier(0, -0.02, 0.35, 1.17);
  display: inline-block;
}

.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: var(--toggle-size);
}

.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  transition: var(--transition);
  position: relative;
}

.theme-switch__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  border-radius: var(--container-radius);
}

.theme-switch__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  display: flex;
  transition: var(--circle-transition);
  pointer-events: none;
}

.theme-switch__sun-moon-container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: var(--sun-moon-diameter);
  height: var(--sun-moon-diameter);
  margin: auto;
  border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  overflow: hidden;
  transition: var(--transition);
}

.theme-switch__moon {
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--moon-bg);
  border-radius: inherit;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  transition: var(--transition);
  position: relative;
}

.theme-switch__spot {
  position: absolute;
  top: 0.75em;
  left: 0.312em;
  width: 0.75em;
  height: 0.75em;
  border-radius: var(--container-radius);
  background-color: var(--spot-color);
  box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
  width: 0.375em;
  height: 0.375em;
  top: 0.937em;
  left: 1.375em;
}

.theme-switch__spot:nth-of-type(3) {
  width: 0.25em;
  height: 0.25em;
  top: 0.312em;
  left: 0.812em;
}

.theme-switch__clouds {
  width: 1.25em;
  height: 1.25em;
  background-color: var(--clouds-color);
  border-radius: var(--container-radius);
  position: absolute;
  bottom: -0.625em;
  left: 0.312em;
  box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
  position: absolute;
  color: var(--stars-color);
  top: -100%;
  left: 0.312em;
  width: 2.75em;
  height: auto;
  transition: var(--transition);
}

.theme-switch__checkbox:checked + .theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em);
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
  transform: translate(0);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container {
  top: 50%;
  transform: translateY(-50%);
}

.box .track-info {
  position: static;
}

.button-press {
  animation: buttonPress 0.15s ease-out forwards;
}

.button-release {
  animation: buttonRelease 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes buttonPress {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.85);
  }
}

@keyframes buttonRelease {
  0% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}


