    // @use "../../../../styles/abstracts/variables";
    // @use "../../../../styles/abstracts/mixins";  

    // .dash__modal {
    //     background: rgba(0,0,0,.88);
    //     position: fixed;
    //     height: 100vh;
    //     width: 100vw;
    //     top: 0;
    //     right: 0;
    //     bottom: 0;
    //     z-index: 999;
    //     display: flex;
    //     justify-content: flex-end;
    //     align-items: center;
    //     overflow-y: scroll;

    //     @media only screen and (max-width: 1000px){
    //         justify-content: center;
    //         // padding: 0 4rem;
    //         align-items: flex-end;
    //     }

    //     &__content {
    //         background: #FCFCFC;
    //         max-width: 450px;
    //         padding: 1.5rem 2rem;
    //         border-radius: 10px;
    //         position: relative;
    //         margin-top: 4rem;
    //         margin-bottom: 4rem;
    //         right: 3rem;

    //         @media only screen and (max-width: 1000px) {
    //             right: 0 !important;
    //             margin: 0 auto;
    //             margin-bottom: 0 !important;
    //             border-bottom-left-radius: 0 !important;
    //             border-bottom-right-radius: 0 !important;
    //         }

    //         &--close {
    //             position: absolute;
    //             top: 1rem;
    //             right: 1rem;
    //             background: variables.$col-danger-color;
    //             color: #FFF;
    //             padding: .3rem .8rem;
    //             border-radius: 5px;
    //             cursor: pointer;
    //             font-weight: 500;
    //             font-size: .8rem;
    //         }

    //         &--details {
    //             &--header{
    //                 &--helper {
    //                     background: variables.$col-orange;
    //                     margin-bottom: 1rem;
    //                     max-width: 30%;
    //                     padding: .4rem .3rem;
    //                     border-radius: 50px;
    //                     color: variables.$col-dark;
    //                     font-size: .8rem;
    //                     font-weight: 600;
    //                     text-align: center;
    //                     text-transform: capitalize;
    //                 }
    //                 h2{
    //                     font-weight: 600;
    //                     font-size: 1rem;
    //                     border-bottom: 1px solid #ebebeb;
    //                     padding-bottom: .2rem;
    //                     color: variables.$col-dark;
    //                 }
    //                 p{
    //                     font-size: .75rem !important;
    //                     padding-top: .6rem;
    //                     opacity: .8;
    //                     font-weight: 600;
    //                     line-height: 1.85;
    //                     padding-bottom: .5rem !important;
    //                     color: variables.$col-dark !important;
    //                 }
    //                 button {
    //                     background: variables.$col-orange;
    //                     padding: .85rem .5rem;
    //                     border-radius: 10px;
    //                     color: variables.$col-dark;
    //                     font-size: .85rem;
    //                     font-weight: 600;
    //                     width: 100%;
    //                 }
    //             }
    //         &--results {
    //             background: #F4F4F4;
    //             padding: 1rem 1.5rem;
    //             border-radius: 10px;
    //             p{
    //                 padding-top: .5rem;
    //                 font-size: .82rem;
    //                 color: variables.$col-dark;
    //                 line-height: 1.7;
    //                 font-weight: 600;
    //             }
    //         }
    //         &--transaction {
    //             // margin-top: 1.4rem;
    //                 &--win {
    //                     background: variables.$col-success-color !important;
    //                     color: variables.$col-success-bg !important;
    //                 }
    //                 &--loss {
    //                     background: variables.$col-danger-color !important;
    //                     color: variables.$col-danger-bg !important;
    //                 }
    //             small {
    //                 margin-top: .5rem !important;
    //                 font-weight: 500 !important;
    //                 font-size: .77rem;
    //                 line-height: 1.1;
    //                 color: variables.$col-dark;
    //             }
    //             h6{
    //                 font-weight: 600;
    //                 line-height: 3;
    //                 color: variables.$col-dark;
    //                 border-bottom: 1px solid #ebebeb;
    //                 font-size: .78rem;

    //                 span {
    //                     background: variables.$col-orange;
    //                     padding: .4rem .6rem;
    //                     color: variables.$col-dark;
    //                     border-radius: 10px;
    //                     font-size: .7rem;
    //                     font-weight: 500 !important;
    //                 }
    //             }
    //         }
    //         &--instruction {
    //             background: #f4f4f4;
    //             margin-top: 1.5rem;
    //             padding: 1rem 1.5rem;
    //             border-radius: 6px;
    //             p{
    //                 font-size: .78rem !important;
    //                 font-weight: 500;
    //                 line-height: 1.7;
    //                 color: variables.$col-dark !important;
    //             }
    //         }
    //         &--btn {
    //             background: variables.$col-primary-btn;
    //             padding: .85rem .5rem;
    //             border-radius: 10px;
    //             color: variables.$col-danger-bg;
    //             font-size: .85rem;
    //             font-weight: 600;
    //             color: #000;
    //             width: 100%;
    //             text-align: center;
    //             margin-top: 1rem;
    //         }
    //         }
    //     }

    // } ::-webkit-scrollbar{
    //     display: none !important;
    // }



@use "../../../../styles/abstracts/variables" as *;

.modalOverlay {
  position: fixed;
  inset: 0;

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

  padding: 1rem;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);

  z-index: 9999;

  animation: fadeIn 0.25s ease;
}

.modalContent {
  position: relative;

  width: 100%;
  max-width: 500px;

  padding: 2rem;

  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.98) 0%,
    rgba(18, 18, 18, 0.98) 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.25);

  color: #fff;

  animation: slideUp 0.3s ease;

  h2 {
    font-size: 1.15rem;
    font-weight: 600;

    margin-bottom: 0.6rem;

    padding-bottom: 0.8rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  p {
    font-size: 0.85rem;
    line-height: 1.7;

    color: #b5b5b5;

    margin-bottom: 1.8rem;
  }

  small {
    display: block;

    margin-top: 1rem;
    margin-bottom: 1.2rem;

    font-size: 0.75rem;
    line-height: 1.7;

    color: #8f8f8f;
  }
}

.closeBtn {
  position: absolute;
  top: 1rem;
  right: 1rem;

  width: 36px;
  height: 36px;

  border: none;
  border-radius: 10px;

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

  background: rgba(255, 255, 255, 0.04);

  color: #999;

  cursor: pointer;

  transition: all 0.2s ease;

  &:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
}

.inputGroup {
  display: flex;
  flex-direction: column;

  label {
    font-size: 0.82rem;
    font-weight: 500;

    color: #d4d4d4;

    margin-bottom: 0.55rem;
  }
}

.selectWrapper {
  position: relative;

  margin-bottom: 1.4rem;

  background: #1b1b1b;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 14px;

  transition: all 0.2s ease;

  &:hover {
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.selectDisplay {
  display: flex;
  align-items: center;

  gap: 0.8rem;

  padding: 0.9rem 1rem;

  cursor: pointer;

  img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  span {
    flex: 1;

    font-size: 0.92rem;
    color: #f2f2f2;
  }

  svg {
    font-size: 0.8rem;
    color: #888;
  }
}

.dropdown {
  position: absolute;

  top: calc(100% + 8px);
  left: 0;

  width: 100%;

  background: #1b1b1b;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35);

  overflow: hidden;

  max-height: 240px;

  overflow-y: auto;

  z-index: 100;

  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

.dropdownItem {
  display: flex;
  align-items: center;

  gap: 0.8rem;

  padding: 0.85rem 1rem;

  transition: background 0.2s ease;

  img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  span {
    color: #eee;
    font-size: 0.9rem;
  }

  &:hover {
    background: rgba(255, 255, 255, 0.04);
  }
}

.amountInput {
  width: 100%;

  padding: 0.9rem 1rem;

  background: #1b1b1b;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 14px;

  font-size: 0.95rem;

  color: #fff;

  transition: all 0.2s ease;

  &:focus {
    outline: none;

    border-color: #f7931a;

    box-shadow:
      0 0 0 3px rgba(247, 147, 26, 0.15);
  }

  &::placeholder {
    color: #777;
  }
}

.walletGroup {
  margin-top: 1rem;
  margin-bottom: 1.5rem;

  label {
    display: block;

    margin-bottom: 0.6rem;

    font-size: 0.82rem;
    font-weight: 500;

    color: #d4d4d4;
  }
}

.walletRow {
  display: flex;
  align-items: center;

  gap: 0.75rem;

  padding: 0.9rem 1rem;

  background: #1b1b1b;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.walletText {
  flex: 1;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #ddd;

  font-size: 0.85rem;
}

.copyBtn {
  border: none;

  background: transparent;

  color: #f7931a;

  font-weight: 600;
  font-size: 0.8rem;

  cursor: pointer;

  transition: opacity 0.2s ease;

  &:hover {
    opacity: 0.8;
  }
}

.proceedBtn {
  width: 100%;

  height: 50px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(
    135deg,
    #f7931a,
    #ffb347
  );

  color: #111;

  font-size: 0.92rem;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.25s ease;

  box-shadow:
    0 10px 25px rgba(247, 147, 26, 0.25);

  &:hover {
    transform: translateY(-2px);

    box-shadow:
      0 16px 35px rgba(247, 147, 26, 0.35);
  }

  &:active {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .modalContent {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .proceedBtn {
    height: 48px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}