.smm-balance-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 450px;
    margin: 20px auto 20px 0;
    border: 1px solid #e0e0e0;
}

.smm-balance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.smm-balance-card__icon {
    background: linear-gradient(135deg, #0F33EF 0%, #4A6CF7 100%);
    border-radius: 12px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.smm-balance-card__icon i {
    font-size: 28px;
}

.smm-balance-card__content {
    flex: 1;
    text-align: left;
}

.smm-balance-card__title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: #6c757d;
}

.smm-balance-card__amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #0F33EF;
}

.smm-balance-card__amount .currency {
    font-size: 20px;
    font-weight: 600;
}

.smm-balance-card__description {
    font-size: 14px;
    margin: 0;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .smm-balance-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
        margin: 20px auto;
    }

    .smm-balance-card__content {
        text-align: center;
    }

    .smm-balance-card__amount {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .smm-balance-card {
        padding: 16px;
        gap: 12px;
    }

    .smm-balance-card__icon {
        width: 56px;
        height: 56px;
    }

    .smm-balance-card__icon i {
        font-size: 24px;
    }

    .smm-balance-card__title {
        font-size: 14px;
    }

    .smm-balance-card__amount {
        font-size: 28px;
    }

    .smm-balance-card__amount .currency {
        font-size: 18px;
    }

    .smm-balance-card__description {
        font-size: 12px;
    }
}

/* Payment Form Styles */
.smm-payment-form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    margin: 40px auto 20px 0;
    border: 1px solid #e0e0e0;
}

.smm-payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.smm-payment-logo {
    height: 28px;
    width: auto;
}

.smm-payment-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    text-align: left;
}

.smm-payment-form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: left;
    color: #1a1a1a;
}

.smm-payment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.smm-form-group {
    display: flex;
    flex-direction: column;
}

.smm-form-label {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 8px;
}

.smm-input-group {
    position: relative;
}

.smm-form-control {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -moz-appearance: textfield; /* Firefox */
}

.smm-form-control::-webkit-outer-spin-button,
.smm-form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.smm-form-control:focus {
    outline: none;
    border-color: #4A6CF7;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
}

.smm-input-currency {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 500;
    color: #6c757d;
}

.smm-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.smm-btn-primary {
    background: linear-gradient(135deg, #0F33EF 0%, #4A6CF7 100%);
    color: white;
}

.smm-btn-primary:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments for the form */
@media (max-width: 768px) {
    .smm-payment-form-container {
        margin: 40px auto 20px auto;
    }
}

/* Action Links Block */
.smm-actions-block {
    max-width: 450px;
    margin: 20px auto 40px 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 24px 0 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.smm-actions-intro {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    text-align: left;
}

.smm-actions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smm-actions-item:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.smm-actions-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.smm-actions-link:hover {
    color: #0F33EF;
}

.smm-actions-link i {
    color: #0F33EF;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.smm-actions-link:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments for the actions block */
@media (max-width: 768px) {
    .smm-actions-block {
        margin: 20px auto 40px auto;
    }
}