div.accordion-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 835px;
    color: #fff;
    overflow: hidden;
    transition: 200ms ease all;
    gap: 0;
    padding: 40px 0
}

div.accordion-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

div.accordion-item div.title-wrapper {
    position: relative;
    display: flex;
    padding: 10px 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: 200ms ease all
}

div.accordion-item div.title-wrapper div.arrow-icon {
    transition: 200ms ease all;
    margin-left: auto;
    opacity: .5;
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    min-width: 24px;
    min-height: 24px
}

div.accordion-item div.title-wrapper span.title {
    font-size: 22px;
    pointer-events: none
}

div.accordion-item div.title-wrapper:hover div.arrow-icon {
    opacity: 1
}

div.accordion-item.open div.title-wrapper div.arrow-icon {
    transform: rotate(180deg);
    opacity: 1
}

div.accordion-item div.content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 200ms ease all;
    font-size: 16px;
    color: #d9d9d9;
    line-height: 24px;
    overflow: hidden
}

div.accordion-item div.content-wrapper div.content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px
}

div.accordion-item div.content-wrapper p {
    margin: 0;
    padding: 0
}

div.accordion-item.open {
    padding-bottom: 36px
}

div.accordion-item.open div.title-wrapper {
    padding-bottom: 24px
}

button.max-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 28px;
    max-width: 68px;
    max-height: 28px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    transition: 100ms ease all;
    box-sizing: border-box;
    border-radius: 8px;
    cursor: pointer
}

button.max-button:hover {
    background: rgba(69, 210, 255, .4)
}

div.amount-input {
    padding: 0 14px;
    background: rgba(255, 255, 255, .1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    width: 100%;
    transition: 100ms ease all
}

div.amount-input,
div.amount-input div {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

div.amount-input:hover {
    border: 1px solid rgba(255, 255, 255, .6)
}

div.amount-input:focus-within {
    border: 1px solid #58a2ba
}

div.amount-input div.input-wrapper {
    width: 100%
}

div.amount-input div.input-wrapper div.icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px
}

div.amount-input div.input-wrapper input {
    border: none;
    background: rgba(0, 0, 0, 0);
    font-size: 20px;
    height: 100%;
    color: #fff;
    caret-color: #e30f2e;
    padding: 14px 0 14px 2px;
    width: 100%;
    text-overflow: ellipsis
}

div.amount-input div.input-wrapper input::placeholder {
    color: #fff;
    opacity: 1
}

div.amount-input div.input-wrapper input:-ms-input-placeholder {
    color: #fff
}

div.amount-input div.input-wrapper input::-ms-input-placeholder {
    color: #fff
}

div.amount-input div.input-wrapper input::selection {
    background-color: #e30f2e
}

div.amount-input div.input-wrapper input::-moz-selection {
    background: #e30f2e
}

div.amount-input div.input-controls {
    position: relative;
    display: flex;
    -webkit-user-select: none;
    user-select: none;
    color: #fff;
    gap: 38px;
    cursor: default
}

div.amount-input div.input-controls div.coin-price {
    font-size: 20px;
    white-space: nowrap
}

div.amount-input.wrong {
    background: rgba(255, 120, 120, .1);
    border: 1px solid rgba(255, 120, 120, .3)
}

div.amount-input.wrong div.input-wrapper input {
    color: rgba(255, 120, 120, .9)
}

div.amount-input.wrong div.input-wrapper input::selection {
    background-color: rgba(255, 120, 120, .5)
}

div.amount-input.wrong div.input-wrapper input::-moz-selection {
    background: rgba(255, 120, 120, .5)
}

@media screen and (max-width: 530px) {
    div.amount-input {
        flex-direction: column;
        align-items: flex-start;
        gap: 0
    }

    div.amount-input div.input-wrapper div.icon {
        transform: translateY(4px)
    }

    div.amount-input div.input-wrapper input {
        padding-bottom: 6px;
        font-size: 24px
    }

    div.amount-input div.input-controls {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 14px;
        /* margin-left: 40px; */
        gap: 10px
    }
}

div.frame {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 48px 32px 44px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    /* background: linear-gradient(to bottom, rgba(253, 253, 253, 0.1), rgba(0, 0, 0, 0.28)); */
    background: linear-gradient(to bottom, rgb(24 19 19 / 10%), rgb(144 20 20 / 28%));
    border: 1px solid #6e7c8c;
    border-radius: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    color: #fff
}

div.frame-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2
}

div.frame::before {
    position: absolute;
    display: block;
    width: 120%;
    height: 20%;
    bottom: -10%;
    left: -10%;
    content: "";
    background: radial-gradient(ellipse at bottom, #e30f2e, rgba(255, 120, 120, 0) 90%) no-repeat center 20px;
    filter: blur(30px)
}

div.animated-arrows {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    align-items: center;
    margin-bottom: -12px
}

div.animated-arrows div.arrow {
    transition: 500ms ease all
}

div.animated-arrows div.arrow.highlight {
    filter: brightness(200%)
}

div.animated-arrows div.arrow.highlight-sub {
    filter: brightness(140%)
}

div.animated-arrows div.arrow:first-child {
    margin-bottom: -11px
}

div.animated-arrows div.arrow:nth-child(2) {
    margin-bottom: -7px
}

div.animated-arrows div.arrow:nth-child(3) {
    margin-bottom: -3px
}

div.data-field {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%
}

div.data-field-content {
    position: relative;
    display: flex;
    margin-left: auto;
    text-align: right;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

div.data-field-content div.icon {
    position: absolute;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    top: -12px;
    right: -12px
}

div.data-field-content.colored {
    padding: 5px 7px;
    border-radius: 8px;
    background: rgba(69, 210, 255, .6)
}

@media screen and (max-width: 530px) {
    div.data-field {
        flex-direction: column;
        gap: 10px
    }

    div.data-field-label {
        opacity: .5;
        font-size: 14px
    }

    div.data-field-content {
        margin-left: unset;
        text-align: left
    }
}

div.delimiter {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .2)
}

div.form-header {
    position: relative;
    display: flex;
    width: 100%;
    gap: 10px
}

div.form-header span.right-block {
    position: relative;
    display: block;
    margin-left: auto;
    text-align: right
}

@media screen and (max-width: 530px) {
    div.form-header {
        flex-direction: column;
        text-align: center;
        width: 100%
    }

    div.form-header span.right-block {
        text-align: center;
        margin-left: unset
    }
}

div.receive-amount-data {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    text-align: center
}

div.receive-amount-data div.receive-amount-block {
    position: relative;
    display: flex;
    gap: 20px;
    transform: translateX(-24px);
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 64px;
    line-height: 48px;
    margin-bottom: -3px;
    margin-top: -3px;
    flex-wrap: wrap;
    word-break: break-word;
    max-width: 100%
}

div.receive-amount-data div.receive-amount-block div.icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px
}

@media screen and (max-width: 670px) {
    div.receive-amount-data div.receive-amount-block {
        font-size: 48px;
        gap: 15px;
        transform: translateX(-19.5px)
    }

    div.receive-amount-data div.receive-amount-block div.icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px
    }
}

@media screen and (max-width: 500px) {
    div.receive-amount-data div.receive-amount-block {
        font-size: 32px;
        gap: 10px;
        transform: translateX(-15px)
    }

    div.receive-amount-data div.receive-amount-block div.icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px
    }
}

div.receive-amount-data div.receive-prices-data {
    position: relative;
    display: flex;
    gap: 6px;
    font-size: 12px
}

div.receive-amount-data div.receive-prices-data span.receive-price-token {
    color: #e30f2e
}

div.receive-amount-data div.receive-prices-data span.receive-price-amount {
    color: rgba(255, 255, 255, .6)
}

@media screen and (max-width: 460px) {
    div.receive-amount-data div.receive-prices-data {
        flex-direction: column
    }
}

div.warning {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 6px;
    width: 100%;
    padding-bottom: 8px
}

div.warning div.warn-icon {
    width: 16px;
    height: 16px;
    max-width: 16px;
    max-height: 16px;
    min-width: 16px;
    min-height: 16px;
    transform: rotate(180deg)
}

div.warning div.warn-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.1px;
    color: #f1b313
}

div.action-form {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    align-items: center;
    gap: 20px;
    min-width: 610px;
    width: 610px;
    max-width: 610px;
    margin-bottom: 40px
}

div.action-form div.form-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center
}

div.action-form div.action-form-frame {
    gap: 22px
}

div.action-form div.frame {
    min-width: 610px;
    width: 610px;
    max-width: 610px
}

div.action-form div.frame-content-wrapper {
    width: 100%;
    min-width: 100%
}

@media screen and (max-width: 670px) {
    div.action-form {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    div.action-form div.frame {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        padding: 20px 10px
    }

    div.action-form div.frame-content-wrapper {
        width: 100%
    }
}

div.action-form-wrapper div.content-wrapper-internal {
    width: 610px;
    max-width: 610px;
    min-width: 610px
}

@media screen and (max-width: 670px) {
    div.action-form-wrapper {
        width: 100% !important
    }

    div.action-form-wrapper div.content-wrapper-internal {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important
    }
}

div.stats-block {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgb(150 97 97 / 50%);
    padding: 24px 32px;
    background: #3d030c5c; 
    /* linear-gradient(to bottom, rgb(24 19 19 / 10%), rgb(144 20 20 / 28%)) */
    gap: 6px;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
    width: 290px;
    max-width: 290px;
    justify-content: center;
    align-items: center
}

div.stats-block div.amount {
    font-size: 48px;
    font-weight: 500;
    line-height: 41px;
    letter-spacing: -0.03em;
    white-space: nowrap
}

div.stats-block div.amount div.loader {
    width: 28px;
    height: 28px;
    border-width: 4px;
    margin: 8px 0;
    margin-bottom: 4px
}

div.stats-block div.description {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .1em
}

div.title-text {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 72px;
    padding-bottom: 20px;
    text-align: center
}

div.title-text h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 57px;
    margin: 0;
    padding: 0
}

div.title-text h2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
    padding: 0
}

div.vertical-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 20px
}

/* gfeature style */
 .features {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      color: #fff;
      flex-wrap: wrap; /* allow wrap on smaller screens */
      max-width: 900px;
      margin: 0 auto; /* center horizontally */
    }

    .feature {
      text-align: center;
      padding: 0 20px;
      position: relative;
      flex: 1;
      min-width: 200px;
    }

    .feature h3 {
      font-size: 20px;
      font-weight: bold;
      margin: 0;
    }

    .feature p {
      font-size: 14px;
      margin: 5px 0 0;
      color: #bbb;
    }

    /* Divider lines on desktop only */
    .feature:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 1px;
      background: rgba(255,255,255,0.2);
    }

    @media (max-width: 430px) {
      .features {
        flex-direction: column;
        gap: 10px;
      }
      .feature {
        min-width: unset;
      }
      .feature:not(:last-child)::after {
        display: none; /* remove divider */
      }

      /*  faq responsive */

        div.accordion-item {
            padding: 22px 0 !important;
        }

            }
@media (max-width: 480px) {
  div.accordion-item div.title-wrapper span.title {
    font-size: 1.1rem !important; /* smaller for mobile */
  }
}
    /*  below footer */

      .below-footer {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #bbb;
  }

  .below-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
  }

  .below-footer a:hover {
    text-decoration: underline;
  }