body {
  margin: 0;
  padding-bottom: 57px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.floating-bar {
  display: none;
}

@media (max-width: 768px) {

  .floating-bar {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    padding-bottom: env(safe-area-inset-bottom);

    background-color: rgba(18, 18, 18, 0.88);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  }

  .floating-btn {
    flex: 1;
    padding: 13px 0;

    text-align: center;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;

    cursor: pointer;

    color: #ffffff !important;
    text-decoration: none !important;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    transition:
      background-color 0.2s ease,
      opacity 0.2s ease,
      transform 0.1s ease;
  }

  .floating-btn.btn-home {
    flex: 0 0 52px;
  }

  .floating-btn:not(:last-child)::after {
    content: "";

    position: absolute;
    right: 0;
    top: 20%;

    height: 60%;
    width: 1px;

    background-color: rgba(255, 255, 255, 0.35);
  }

  .floating-btn:active {
    background-color: rgba(255, 255, 255, 0.12);
    opacity: 0.85;
    transform: scale(0.98);
  }

  .open-text {
    white-space: nowrap;
    letter-spacing: 0.2px;
  }

}