/* Gilroy Regular */
@font-face {
    font-family: "Gilroy";
    src: url("../../gliroy_font/Gilroy-Regular.woff2") format("woff2"),
        url("../../gliroy_font/Gilroy-Regular.woff") format("woff");
    font-weight: 400; /* or 'normal' */
    font-style: normal;
    font-display: swap;
}

/* Gilroy Heavy */
@font-face {
    font-family: "Gilroy";
    src: url("../../gliroy_font/Gilroy-Heavy.woff2") format("woff2"),
        url("../../gliroy_font/Gilroy-Heavy.woff") format("woff");
    font-weight: 900; /* Heavy is typically 900 */
    font-style: normal;
    font-display: swap;
}
:root {
    --body-font-size: 16px;
    --content-width: 1184px;
    --content-width-mode: 1214px;
    --container-offset: 15px;
    --container-w: 1276px;
    --delay-transition: cubic-bezier(0.25, 0.75, 0.5, 1.25);
    --sections-gutter: 3rem;
    --banner-spacing: 200px;
    --t-xxs: 10px;
    --t-xs: 12px;
    --t-sm: 14px;
    --t-base: 16px;
    --t-md: 18px;
    --t-lg: 20px;
    --t-xl: 24px;
    --t-xxl: 26px;
    --t-xxl-2: 28px;
    --t-xxl-3: 32px;
    --t-xxl-4: 36px;
    --fw300: "Gilroy-Light", sans-serif;
    --fw500: "Gilroy-Medium", sans-serif;
    --fw400: "Gilroy-Regular", sans-serif;
    --fw800: "Gilroy-Heavy", sans-serif;
    --fw700: "Gilroy-Bold", sans-serif;
    --ff: "Gilroy", sans-serif;
    --cl-1: 0, 0, 0;
    --cl-2: 255, 255, 255;
    --cl-footer-text: 131, 128, 139;
    --cl-y: 255, 209, 25;
    --bg-body: 255, 255, 255;
    --cl-bl: 25, 37, 232;
    --bottom-image-gradient: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #fff 100%
    );
    --file-icon-border: rgba(var(--cl-bl), 0.15);
    --file-item-text: rgba(var(--cl-bl), 1);
    --button-gradient: linear-gradient(180deg, #ffd119 0%, #ff9c00 100%);
    --swiper-theme-color: #007aff;

    --bg-panel: 25, 37, 232;
    --root-panel-px: 30px;
    --root-coin-ratio: 35px;

    --card-bg: #f6f7f8;
    --muted: #9aa3a8;
    --accent: #e9f9e6;
    --accent-text: #6aa36a;
    --warning-bg: #fff3d9;
    --warning-text: #7a5b00;
    --pill-bg: #eef2ff;
    --pill-text: #3730a3;
}

:root.dark-theme {
    --bg-body: 9, 16, 22;
    --cl-1: 255, 255, 255;
    --cl-2: 0, 0, 0;
    --cl-footer-text: 184, 176, 205;
    --bottom-image-gradient: linear-gradient(
        180deg,
        rgba(9, 16, 22, 0) 0%,
        #091016 100%
    );
    --file-icon-border: rgba(var(--cl-bl), 0.2);
    --file-item-text: rgba(var(--cl-y), 1);
}

.dark-theme .wallet-panel {
    background-color: rgba(var(--cl-bl), 0.3);
}

.dark-theme .bubble {
    opacity: 0.25;
}

body {
    background: black;
    font-family: "Gilroy";
    font-weight: 400;
}

html,
body {
    overflow-x: hidden;
}

.waler_div {
    display: flex;
}

.navbar .nav-link {
    font-size: clamp(var(--t-base), 1.125vw, var(--t-md));
    font-weight: 700;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.overlayEffect {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 90vh;
    width: 90vw;
    pointer-events: none;
}

.navbar-toggler {
    border-radius: 50% !important;
    color: white !important;
    height: 40px !important;
    width: 40px !important;
    background: linear-gradient(180deg, #ffd119 0%, #ff9c00 100%);
}

.navbar-toggler:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

.bubble {
    width: 720px;
    height: 720px;
    position: fixed;
    opacity: 0.1;
    -webkit-filter: blur(130px);
    filter: blur(130px);
    background-color: rgba(var(--cl-bl), 1);
    border-radius: 50%;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}

.bubble--bottom {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
}

.bubble--smaller {
    width: 450px;
    height: 450px;
}

.bubble--top {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -165px;
}

.bubble--left {
    left: -200px;
    top: 400px;
}

.bubble--right {
    top: 200px;
    right: -200px;
}

.single-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    pointer-events: none;
}

.button {
    color: #503100 !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-height: 50px;
    padding: 0 2.75rem;
    border-radius: 5.625rem;
    background-image: linear-gradient(180deg, #ffd119 0%, #ff9c00 100%);
    -webkit-box-shadow: 0 0 1.875rem 0 rgba(255, 209, 25, 0.5);
    box-shadow: 0 0 1.875rem 0 rgba(255, 209, 25, 0.5);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .bubble--right {
        display: none;
    }
    .bubble--left {
        top: 386px;
        left: -500px;
    }
    .bubble--bottom {
        width: 570px;
        height: 570px;
        bottom: -100px;
        left: -50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .bubble--top {
        width: 300px;
        height: 300px;
        opacity: 0.5 !important;
    }
    .bubble--bottom {
        width: 400px;
        height: 400px;
        display: none;
    }

    .button {
        font-size: 16px;
    }
}

.wallet-display__heading {
    font-size: clamp(36px, 3.125vw, 50px);
    font-weight: 900;
    letter-spacing: 5px;
    color: #fff;
}

.dashboard .nav-link {
    color: #fff;
    font-weight: 800;
}

.dashboard .nav-link.active {
    color: rgb(25, 37, 232);
    background-color: transparent;
    border-color: transparent;
    border-bottom: 2.5px solid rgb(25, 37, 232);
    padding-bottom: 15px;
}

.dashboard .nav-tabs {
    /* padding-bottom: 15px; */
    border-bottom: 1px solid gray;
}

.wallet-tabs__item {
}

.wallet-tabs__item::after {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(var(--cl-bl), 1);
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
}

.transactions_img {
    width: 100px;
}

.dashboard a {
    color: rgba(255, 209, 25, 1);
    padding-top: 20px;
    text-decoration: underline;
}

#nav-history > div.text-center {
    height: 40vh;
    overflow-y: auto;
}

.wallet-receive__info-item {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 1.8px;
    line-height: 166%;
    color: #fff;
}

.amount-wrapper {
    position: relative;
    display: inline-block;
    width: 60%;
}

.amount-input {
    width: 100%;
    /* padding-right: 100px; */
}

.amount-usd {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.info-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 5px 0;
}

.btn-prepare {
    margin-top: 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #fbc531, #f39c12);
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 40px;
    cursor: pointer;
    box-shadow: 0px 0px 15px rgba(251, 197, 49, 0.6);
    transition: all 0.3s ease;
}

.btn-prepare:hover {
    box-shadow: 0px 0px 25px rgba(251, 197, 49, 0.9);
}

.wallet-receive__coin-name {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.waler_div nav {
    padding-left: 3rem !important;
}

.wallet-panel {
    background-color: rgba(var(--bg-panel), 0.05);
    border-radius: 30px;
    overflow: hidden;
}

.wallet-panel__header {
    min-height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.custom-select[data-v-3bcc2403] {
    position: relative;
    width: 100%;
    text-align: left;
    outline: none;
}

.wallet-dropdown {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 60px;
    border-radius: 200px;
    max-width: 290px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wallet-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 30px;
}

.wallet-coin__icon img {
    width: 40px;
    padding-right: 10px;
}

.wallet-coin__name {
    color: #fff;
}

.wallet-item__text {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.wallet-item__text-hl {
    font-weight: 300;
    color: #b8b0cd;
}

.wallet-item:not(:last-child) {
    border-bottom: 1px solid rgba(var(--cl-1), 0.1);
}

.wallet-item:first-child {
    border-top: 1px solid rgba(var(--cl-1), 0.1);
}
.wallet-item-active {
    background-color: rgba(var(--bg-panel), 0.3);
}

.wallet-coin,
.wallet-item {
    display: flex;
    align-items: center;
}

.wallet-item {
    justify-content: space-between;
    color: #fff;

    min-height: 88px;
    padding: 0 var(--root-panel-px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.wallet-list {
    padding-left: 0rem !important;
}

button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0;
    padding: 0;
    line-height: initial;
    color: inherit;
    background-color: transparent !important;
    border: none;
    outline: 0;
    cursor: pointer;
}

.wallet-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 20px;
}

.dark-theme .content-widget {
    background-color: rgba(var(--cl-bl), 0.3);
    border: 10px solid rgba(var(--cl-bl), 0.3);
}

.content-col__heading-hl {
    color: rgba(var(--cl-y), 1);
}

.content-widget {
    background-color: rgba(var(--cl-bl), 0.05);
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    border: 0.625rem solid rgba(var(--cl-bl), 0.1);
    border-radius: 30px;
    padding: 42px 30px 52px;
}

.content-col__heading {
    font-size: clamp(33px, 3.4375vw, 55px);
    font-weight: 900;
    letter-spacing: 11px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    color: #fff;
    font-weight: 700;
}

.content-col__text {
    max-width: 630px;
}

.def-text {
    font-size: var(--t-md);
    font-weight: 300;
    letter-spacing: 1.8px;
    line-height: 166%;
}

.content-widget__heading {
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: clamp(25px, 1.875vw, 30px);
}

.base-style_widget-app-wrapper__o5dp1 {
    max-width: 568px;
    /* min-height: 384px; */
    width: 100%;
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer {
    padding: 54px 0;
    position: relative;
    border-top: 1px solid rgba(var(--cl-1), 0.1);
}
.footer-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 3.125rem;
}
.footer-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 1rem;
}
.footer-sub__title {
    font-size: var(--t-lg);
    letter-spacing: 2px;
    font-weight: 700;
}
.footer-square {
    --figure-ratio: 96px;
    position: absolute;
    left: 186px;
    top: calc(var(--figure-ratio) / -2);
}
.footer-square img {
    width: var(--figure-ratio);
    height: var(--figure-ratio);
}
.footer-textarea {
    max-width: 628px;
    width: 100%;
    -ms-flex-item-align: center;
    align-self: center;
    position: relative;
}
.footer-button {
    position: absolute;
    right: 1%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 2rem;
}
.footer-text {
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1.3px;
    color: rgba(var(--cl-footer-text), 1);
}
.footer-input {
    border: 1px solid rgba(var(--cl-1), 0.2);
    border-radius: 200px;
    min-height: 60px;
    padding: 0 160px 0 2rem;
    background-color: transparent;
    letter-spacing: 1.7px;
    font-size: 17px;
    font-weight: 300;
    color: rgba(var(--cl-1), 1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100% !important;
}
.footer-input:focus-visible {
    border: 1px solid rgba(var(--cl-y), 0.5);
}
.footer-input::-webkit-input-placeholder {
    color: rgba(var(--cl-1), 1);
}
.footer-input::-moz-placeholder {
    color: rgba(var(--cl-1), 1);
}
.footer-input:-ms-input-placeholder {
    color: rgba(var(--cl-1), 1);
}
.footer-input::-ms-input-placeholder {
    color: rgba(var(--cl-1), 1);
}
.footer-input::placeholder {
    color: rgba(var(--cl-1), 1);
}

.home {
    padding: 3.75rem 0;
    margin-bottom: 200px;
    overflow: hidden;
}
.home-body {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 40px;
}
.home-title {
    text-transform: uppercase;
    letter-spacing: 12px;
}
.home-col--gap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 2rem;
}
.home-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 5rem;
}
.home-badget {
    width: 60px;
}
.home-badget img {
    display: block;
}

.section {
    position: relative;
}
.section:not(:last-child) {
    margin-bottom: 10px;
}
.section--mb {
    margin-bottom: 172px !important;
}
.section-body {
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: clamp(60px, 6.25vw, 100px);
}
.section-body--no-gap {
    grid-gap: 0;
    grid-template-columns: 0.85fr 1fr;
}
.section-heading {
    color: #6e46e5;
    opacity: 0.15;
    font-weight: 900;
    letter-spacing: 1.25rem;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -150px;
    font-size: clamp(100px, 12.5vw, 200px);
    width: 100%;
    text-align: center;
}
.section-col--image_small img {
    height: 390px;
    display: block;
}

.start {
    margin-bottom: 100px;
}
.start-container {
    position: relative;
}
.start-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.start-loading {
    position: absolute;
    right: 110px;
    height: 100px;
    top: -50px;
}
.start-loading img {
    height: inherit;
}
.start-text {
    max-width: 946px;
    margin: 0 auto;
    -ms-flex-item-align: center;
    align-self: center;
}

.col-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 1.5rem;
    margin-bottom: clamp(1.75rem, 2.5vw, 40px);
}

.def-title {
    font-size: clamp(35px, 3.75vw, 3.75rem);
    letter-spacing: 6px;
    font-weight: 900;
    line-height: 133%;
    color: rgba(var(--cl-1), 1);
}
.def-title__hl {
    color: rgba(var(--cl-y), 1);
}

.bottomMountainImage img {
    width: -webkit-fill-available;
    /* position: absolute; */
    /* top: 0; */
}

.confirm-input {
    flex: 1;
    border-radius: 200px;
    padding: 15px 30px;
    background-color: transparent;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.confirm-input:focus {
    outline: none;
}

.confirm-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.logo_icon_ {
    width: 28vh;
}

.tiny_terms p {
    text-align: center;
    font-size: var(--t-md);
    font-weight: 400;
    color: var(--file-item-text);
    padding-top: 20px;
}

.tiny_terms a {
    width: 142px;
    min-height: var(--file-item);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    border: 5px solid var(--file-icon-border);
    background-color: rgba(var(--cl-bl), 0.1);
    border-radius: 10px;
    padding: 20px;
}

.exchange-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

.exchange-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 15px;
}

.amount-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
}

.currency-select {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    margin-left: 10px;
    background: transparent;
}

.card {
    width: 420px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(22, 34, 56, 0.06);
    padding: 20px;
    box-sizing: border-box;
}

.label {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.exchange-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #ececec;
}

.amount-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 28px;
    background: transparent;
}

.select-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    justify-content: flex-end;
}

select.currency-select {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
}

/* small down arrow for the select */
/* .select-wrapper::after {
    content: "▾";
    margin-left: 6px;
    color: #444;
    font-size: 12px;
} */

.rate-line {
    margin: 10px 0 8px;
    font-size: 14px;
    color: #333;
}

.info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--warning-bg);
    color: var(--warning-text);
    padding: 12px 14px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-box .arrow {
    transform: rotate(0);
    font-weight: 700;
}

.agreement {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    color: #334;
}

.agreement a {
    color: #1a73e8;
    text-decoration: none;
}

/* .exchange-btn {
    margin-top: 14px;
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 28px;
    font-size: 18px;
    background: #eafcec;
    color: #6b846b;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 4px 10px rgba(18, 96, 49, 0.06);
} */

.exchange-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* network pill near the right select (optional) */
.network-pill {
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #eee;
}

/* small helper text under the row */
.helper {
    color: #666;
    font-size: 13px;
}

/* responsive */
@media (max-width: 460px) {
    .card {
        width: 94vw;
    }
    .select-wrapper {
        min-width: 120px;
    }
}

/* === Refactored (merged) — preserves original properties + vendor prefixes where present === */
/* Desktop → Tablet */
@media (max-width: 1320px) {
    .def-title {
        letter-spacing: 3.5px;
    }

    .content-widget {
        padding: 30px 1rem 44px;
    }

    .content-col__heading {
        letter-spacing: 3.3px;
    }

    .wallet-receive__info-item {
        font-size: 14px;
        letter-spacing: 0.2px;
    }

    /* preserve both selectors in case original used waler_div */
    .waler_div,
    .wallet_div {
        display: block;
    }

    .wallet-display__heading {
        margin-top: 50px !important; /* preserved from original */
    }

    .waler_div nav,
    .wallet_div nav {
        padding-left: 0rem !important; /* preserved */
    }

    .waler_div nav button,
    .wallet_div nav button {
        padding: 0rem !important; /* preserved */
    }

    .single-overlay {
        display: none;
    }
}

/* Tablet (merged all original max-width:1100px blocks) */
@media (max-width: 1100px) {
    .start-loading {
        display: none;
    }

    .section {
        text-align: center;
        margin-bottom: 90px !important; /* preserved */
    }

    .section .button {
        margin: 0 auto;
    }

    .section-heading {
        font-size: 60px;
        top: -30%;
        line-height: 87.5%;
        opacity: 0.15;
    }

    .section-body {
        display: -webkit-box; /* legacy */
        display: -ms-flexbox; /* IE10 */
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .section-body--no-gap {
        grid-gap: 1.25rem; /* original */
        gap: 1.25rem; /* modern equivalent */
    }

    .section-col--adaptive {
        display: none;
    }

    .footer {
        font-size: 12px;
    }

    .footer-square {
        display: none;
    }

    .home {
        margin-bottom: 40px;
    }

    .home-title {
        letter-spacing: 2.1px;
    }

    .home-body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .home-text {
        font-size: 11px;
        line-height: 2rem;
    }

    .home-col:nth-child(1) {
        width: 100%;
    }

    .home-col:nth-child(2) {
        max-width: 335px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .home-bottom {
        grid-gap: 34px; /* preserved */
        gap: 34px; /* modern equivalent */
    }

    .home-title {
        line-height: 70px;
        font-size: 35px;
    }

    .home-text {
        max-width: 240px;
    }

    .logo_icon_ {
        width: 20vh;
    }
}
