 /* Global styles scoped to the badge */
  .anima-badge * {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
  }

  .anima-badge button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
  }

  /* CSS Variables */
  .anima-badge {
    --badge-bg-color: #1a1d2e;
    --badge-border-color: #6c53ce;
    --badge-text-color: #f2f5f9;
    --body-regular-md-font-family: "Inter", Helvetica;
    --body-regular-md-font-weight: 400;
    --body-regular-md-font-size: 14px;
    --body-regular-md-letter-spacing: 0px;
    --body-regular-md-line-height: 1.5;
    --body-regular-md-font-style: normal;
  }

  /* Badge Container */
  .anima-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }

  /* Badge Button */
  .anima-badge .badge-button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0px 12px;
    position: relative;
    background-color: var(--badge-bg-color);
    border-radius: 29px;
    border: 1px solid;
    border-color: var(--badge-border-color);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .anima-badge .badge-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 83, 206, 0.3);
  }

  /* Badge Content */
  .anima-badge .badge-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 0 0 auto;
  }

  .anima-badge .badge-icon {
    position: relative;
    width: 16px;
    height: 16px;
  }

  .anima-badge .badge-text {
    position: relative;
    width: fit-content;
    font-family: var(--body-regular-md-font-family);
    font-weight: var(--body-regular-md-font-weight);
    color: var(--badge-text-color);
    font-size: var(--body-regular-md-font-size);
    letter-spacing: var(--body-regular-md-letter-spacing);
    line-height: var(--body-regular-md-line-height);
    font-style: var(--body-regular-md-font-style);
    white-space: nowrap;
  }

  /* Close Button */
  .anima-badge .close-button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

  .anima-badge .close-button:hover {
    opacity: 1;
  }

  .anima-badge .close-icon {
    position: relative;
    width: 16px;
    height: 16px;
  }

  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .anima-badge {
      bottom: 16px;
      right: 16px;
    }

    .anima-badge .badge-button {
      height: 36px;
      padding: 0px 10px;
      gap: 6px;
    }

    .anima-badge .badge-text {
      font-size: 13px;
    }
  }

  @media screen and (max-width: 480px) {
    .anima-badge {
      bottom: 12px;
      right: 12px;
    }

    .anima-badge .badge-button {
      height: 32px;
      padding: 0px 8px;
      gap: 6px;
    }

    .anima-badge .badge-text {
      font-size: 12px;
    }

    .anima-badge .badge-icon,
    .anima-badge .close-icon {
      width: 14px;
      height: 14px;
    }
  }