/* General body styling */
body {
    background: transparent linear-gradient(240deg, #FFA300 0%, #DF1995 100%) no-repeat padding-box;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Wrapper for icons */
.icon-wrapper {
    background: linear-gradient(to bottom right, #ff758c, #ff7eb3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* General button styling */
button {
    font-weight: bold;
}

/* Sport button styling */
.sport-button {
    background: linear-gradient(45deg, orange, purple);
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    margin: 15px auto;
}

.sport-button img {
    width: 50px;
    height: 50px;
}

/* Sport label */
.sport-label {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Play button inside the icon */
.play-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    background: #E63874;
    border-radius: 5px;
    padding: 8px;
}

/* Circular icon containers */
.rounded-circle {
    width: 150px;
    height: 150px;
    position: relative;
    background: transparent linear-gradient(40deg, #FFA300 0%, #DF1995 100%) no-repeat padding-box !important;
    border-radius: 50%;
    opacity: 1;
    margin: 10px auto;
}

/* Block background styling */
.block-background {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    opacity: 1;
    backdrop-filter: blur(44px);
    -webkit-backdrop-filter: blur(44px);
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .rounded-circle {
        width: 120px;
        height: 120px;
    }

    .sport-button {
        padding: 15px;
        margin: 10px;
        width: 120px;
        height: 120px;
    }

    .sport-button img {
        width: 40px;
        height: 40px;
    }

    .play-button {
        width: 60px;
        padding: 6px;
    }

    .sport-label {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .rounded-circle {
        width: 100px;
        height: 100px;
    }

    .sport-button {
        padding: 10px;
        margin: 8px;
        width: 100px;
        height: 100px;
    }

    .sport-button img {
        width: 30px;
        height: 30px;
    }

    .play-button {
        width: 50px;
        padding: 5px;
    }

    .sport-label {
        font-size: 0.9em;
    }

    /* Stack the icons vertically */
    .row.g-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-6 {
        max-width: 100%;
    }
}
