/* bonuses.css */

.bonus-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 80px 20px; /* Add padding for spacing from header/footer */
    margin: auto; /* Center the container */
}

/* Top Section Styling */
.bonus-header {
    margin-bottom: 30px;
}

.gift-icon {
    width: 60px;
    margin-bottom: 15px;
}

.exclusive-text {
    color: #4c82f7;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    margin: 0;
}

.bonus-title-large {
    color: #ffffff;
    font-size: 6rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

/* Stake Banner Styling */
.stake-banner {
    background-color: #1f2848;
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.stake-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stake-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.tagline {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.button-group {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stake-button {
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.stake-button:hover {
    opacity: 0.9;
}

.stake-button.com {
    background-color: #33447f;
    color: #ffffff;
}

.stake-button.us {
    background-color: #ffffff;
    color: #33447f;
}

.terms {
    color: #8a96c1;
    font-size: 10px;
    font-weight: 500;
}

/* Decorative Images Styling */
.stake-banner img[class^="deco-"] {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none; /* Make images unclickable */
}

.deco-player {
    width: 200px;
    left: -30px;
    bottom: -20px;
}

.deco-bitcoin {
    width: 60px;
    top: 20px;
    right: 120px;
}

.deco-roulette {
    width: 150px;
    bottom: -40px;
    right: -30px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .bonus-title-large {
        font-size: 4rem;
    }
    .deco-player, .deco-bitcoin, .deco-roulette {
        opacity: 0.3; /* Make decorations more subtle on mobile */
    }
}