.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    color: white;
    border-radius: 15px;
    background-color: var(--bg-color-card);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.bonus-card {
    background-color: transparent;
    background-image: linear-gradient(to bottom right, #4766F9, #3653DD);
}

.card-content {
    padding: 15px 42px 16px;
}

.card p {
    margin-bottom: 12px;
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: var(--on-surface-variant-2);
}

.card-btn {
    background: var(--bg-color-btn);
    color: var(--bg-color-main);
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;

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

.card-btn img {
    width: 16px;
    height: 16px;
}

/* Стили для карточки кошелька */
.wallet-balance {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 8px;
    background-color: var(--bg-color-card);
}

.wallet-balance .card-content {
    width: 100%;
    padding: 0;
}

.wallet-balance__label {
    color: var(--on-surface-variant-2);
    font-size: 14px;
    font-weight: 400;
}

.wallet-balance__amount {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--on-surface);
}

.wallet-balance__amount img {
    width: 24px;
    height: 24px;
}

.wallet-address {
    margin-top: 16px;
    padding: 12px;
    background: var(--container);
    border-radius: 12px;
}

.wallet-address__label {
    color: var(--on-surface-variant-2);
    font-size: 12px;
}

.wallet-address__value {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--on-surface);
}

.wallet-address__value span {
    flex: 1;
    word-break: break-all;
}

.wallet-address__copy {
    min-width: auto !important;
    padding: 8px !important;
}

.invest_info {

    width: 100%;
    margin: 0 auto;

}

.card-footer {
    position: relative;

    border-radius: 15px;
    padding: 16px;

    margin-top: 32px;

    background-color: var(--bg-color-card);
}

.card-footer-time {
    position: absolute;
    right: 12px;
    top: -16px;

    width: 134px;
    padding: 4px 0;

    color: var(--on-primary);

    background-color: var(--bg-color-btn);
    border-radius: 12px;
    text-align: center;
}

.time-title {
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
}

.waiting-time {
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
}

.card-footer-info {
    color: var(--text-grey-color);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.card-footer-info span {
    color: #F1F1F1;
}

.card-footer-info div {
    margin-bottom: 4px;
}

.card-footer-details {
    margin-top: 16px;
    margin-left: 16px;
    margin-bottom: 0;

    list-style-type: disc;
}

.card-footer-details li {
    margin-bottom: 4px;
}

.balance-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
