/* Custom CSS for AxelPik MiniGame */

/* Example: Change background color */
body {
    background-color: #f8f9fa;
}

/* Example: Customizing the Navbar */
.navbar-brand {
    font-weight: bold;
    color: #d63384 !important;
    /* Pink color */
}

/* --- Refactored Styles from Leaderboard --- */

/* Leaderboard Container */
.leaderboard-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Bronze Award Override */
.card-header-bronze {
    background-color: #cd7f32 !important;
    color: white !important;
}

/* Images & Icons */
.img-top3-circle {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.img-player-thumb {
    object-fit: cover;
}

.card-event-img {
    height: 150px;
    object-fit: cover;
}

.card-event-img-gray {
    height: 150px;
    object-fit: cover;
    filter: grayscale(30%);
}

.card-event-placeholder {
    height: 150px;
}

.icon-lg {
    font-size: 3rem;
}

/* Hover Effects */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Gradients */
.bg-gradient-primary-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-warning-custom {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
h1.bxh-title {    color: #000 !important;    font-size: 39px;}
/* Mobile Prize Carousel */
@media (max-width: 768px) {
    .mobile-prize-carousel {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 0px;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: flex-start !important;
    }

    .mobile-prize-carousel .col-md-4 {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    .mobile-prize-carousel::-webkit-scrollbar {
        display: none;
    }

    .mobile-prize-carousel {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}