.badge-card {
    width: 291px;
    background: linear-gradient(145deg, #2a2a3b, #1e1e2e);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.badge-title {
    font-size: 18px;
    font-weight: bold;
}

.reward-section {
    background: #161625;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reward-section img {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px; /* Keeps the icon to the far left */
}

.reward-amount {
    font-size: 20px;
    font-weight: bold;
    flex: 1; /* Allows text to take up remaining space */
    text-align: center; /* Centers the text */
}

.required-wager {
    font-size: 14px;
    color: #a0a0b0;
    margin-top: 10px;
}

.required-wager span {
    font-weight: bold;
    color: white;
}

.our-offers-list .row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adjust spacing as needed */
    justify-content: center; /* Center items horizontally */
}

/* Style the section to contain positioned elements */
.our-offers-leaderboard {
    position: relative;
    overflow: hidden; /* Ensures video doesn't spill outside the section */
}