body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1c1c1e;
    color: #fff;
    overflow: hidden;
}

.profile-image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
}

.profile-info {
    margin-left: 20px;
}

.profile-name {
    font-size: 20px;
    font-weight: bold;
}

.profile-status {
    display: flex;
    align-items: center;
}

.badge-warning {
    padding: 5px;
    border-radius: 5px;
    margin-right: 10px;
}

.progress {
    color: #bbb;
}

.balance {
    display: flex;
    align-items: center;
}

.balance-value {
    font-size: 32px;
    font-weight: bold;
    margin-right: 10px;
}

.coins-icon {
    width: 40px;
    height: 40px;
    background: url('coins.png') no-repeat center center;
    background-size: contain;
}

.fixed-bottom {
    padding: 0;
    margin: 0;
}

.fixed-bottom .col {
    border-right: 1px solid #444;
}

.fixed-bottom .col:last-child {
    border-right: none;
}

.spinner-img {
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.mt-3 {
    margin-top: 1rem;
}

.btn-light {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
