body {
    background-color: #111;
    color: #fff;
}

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.payments-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: absolute;
    z-index: 2;
    width: 100%;
    background-image: url("../images/banners/payment-method-background-2.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    top: 90px;
}

.payments-bar img {
    height: 20px;
    margin: 0 4px;
}

.payment-icons {
    margin: 0;
}

.payments-bar .trustpilot {
    display: flex;
    align-items: center;
    gap: 5px;
}

.payments-bar .trustpilot img {
    height: 15px;
}

.hero .content {
    max-width: 400px;
    margin-left: 50px;
}

.hero h1 {
    font-size: 3.5em;
    min-width: 40vw;
    margin-bottom: 20px;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.hero .price {
    font-size: 30px;
    margin-bottom: 20px;
    color: #f1c40f;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.hero .enter-now {
    border-radius: 10px;
    background-color: #ffc107;
    color: #111;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
}

.hero .enter-now:disabled {
    background: #9900ff;
}

.hero .enter-now:hover {
    background-color: #e0a800;
}

.image-container {
    position: relative;
    max-width: 50%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel {
    bottom: 0;
    width: 100%;
    height: 80px;
    background: #7203a5;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel .first-text {
    color: white;
    min-width: 100px;
    font-weight: 400;
    padding: 0 15px;
}

.carousel-inner {
    margin-top: 5px;
    display: flex;
    position: relative;
}

.carousel-inner.animate {
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    flex: none;
    margin-right: 20px;
}


.carousel-item img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media screen and (min-width: 900px) {
    .payments-bar {
        left: -8px;
    }
}
@media screen and (max-width: 600px) {
    .payments-bar {
        width: 95%;
    }
    .hero {
        align-items: end;
        text-align: center;
        padding-bottom: 35px;
    }
    .hero .content {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 2.8em;
    }
}

.featured-competitions {
    background-color: #111;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 10px;
    padding-left: 40px;
    text-align: center;
    overflow: hidden;
}

.featured-competitions h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.swiper-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.swiper-slide {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 800px;
    margin-right: 40px;
    cursor: pointer;
}

.swiper-slide img {
    width: 100%;
    height: 50%;
}

.swiper-slide .caption {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: left;
}

.swiper-slide .caption .feature {
    display: inline-block;
}

.swiper-slide .caption .feature .feature-content {
    margin-left: 20px;
}

.swiper-slide .caption .feature .feature-content p {
    background: #7203a5;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    margin: 5px 0 0 0;
    padding: 8px 0;
    line-height: 1.3;
    width: 150px;
    text-align: center;
    font-weight: 500;
}

.swiper-slide .caption .feature .feature-content h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0;
    max-width: 500px;
}

.swiper-slide .caption .feature .feature-button {
    justify-content: center;
}

.swiper-slide .caption .feature .feature-button button {
    background-color: #ffc107;
    color: #111;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
}

.swiper-slide .caption .feature .container {
    text-align: center;
    width: 100%;
}

.hidden {
    display: none;
}

.swiper-slide .caption .feature .progress-bar {
    width: 100%;
    background-color: #141628;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 10px;
}

.swiper-slide .caption .feature .progress-fill {
    height: 8px;
    width: 0;
    background-color: #ffc80a;
    border-radius: 25px;
    transition: width 0.5s ease;
}

.swiper-slide .caption button:hover {
    background-color: #e0a800;
}

.swiper-pagination-bullet {
    background: #fff;
}

.swiper-button-next, .swiper-button-prev {
    color: #BDBDBD;
    margin-right: 20px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #fff;
}

.swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.instant-stat-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #0f1218;
    padding: 40px 40px;
    margin: 40px 100px;
    border-radius: 10px;
    border-right: 10px solid #7203a5;
}

.instant-stat-container .item {
    display: flex;
    align-items: center;
    color: white;
    width: 33%;
    text-align: left;
    padding-right: 10px;
}

.instant-stat-container .item i {
    font-size: 1.6em;
    color: #ffc80a;
    margin-right: 20px;
}

.instant-stat-container .item p {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .instant-stat-container {
        flex-direction: column;
        margin: 20px 20px 40px 20px;
        border-right: 10px solid #1c2033;
    }
    .instant-stat-container .item {
        width: 100%;
        margin-bottom: 20px;
    }
    .instant-stat-container .item:last-child {
        margin-bottom: 0;
    }
    .carousel-inner {
        max-width: 100%;
        transition: transform 0.3s ease;
    }

    .carousel-inner.animate {
        animation: scrollMobile 20s linear infinite;
    }

    @keyframes scrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

.live-raffles {
    background-color: #111;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 60px;
    text-align: center;
}

.live-raffles h2 {
    font-size: 36px;
}

.raffles-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.raffles-info span {
    background-color: #333;
    padding: 10px 20px;
    border-radius: 20px;
}

.active {
    background: #0f1218;
}

.ending-soon {
    background: red;
}

.raffle-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 100%;
    flex-wrap: wrap;
}

.raffle-categories .category {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
}

.raffle-categories .category.active {
    background-color: #ffc107;
    color: #111;
}

.raffles-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.raffle-card {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    position: relative;
}

.raffle-card .countdown {
    background-color: #e63946;
    color: #fff;
    padding: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 10px;
}

.raffle-card .countdown-expired {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 10px;
}

.raffle-card .countdown-coming {
    background-color: #ffc400;
    color: #111;
    padding: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 10px;
}

.raffle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.raffle-card .raffle-info {
    padding: 20px;
    text-align: left;
}

.raffle-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.raffle-card p {
    margin-bottom: 10px;
}

.raffle-card .price {
    font-size: 18px;
    margin-bottom: 20px;
}

.raffle-card .progress-bar {
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
    height: 10px;
    margin-bottom: 10px;
}

.raffle-card .progress-bar .progress {
    background-color: #ffc107;
    height: 100%;
}

.raffle-card .enter-now {
    background-color: #ffc107;
    color: #111;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.swiper-slide .caption .feature .feature-button button:hover,
.swiper-buttons .enter-now:hover,
.raffle-card .enter-now:hover {
    background-color: #e0a800;
}

/*---------------------------UPDATES-------------------------------*/
.raffle-card {
    background-color: #141628;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
}
.raffle-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.raffle-info {
    align-items: center;
}
.raffle-card .raffle-info h3{
    font-weight: 600;
}
.raffle-card .raffle-info p{
    color: #cbcbcb;
}
.raffle-card .enter-now {
    font-weight: 600;
    border-radius: 10px;
}
.raffle-card .price {
    background: #1c2033;
    border-radius: 6px;
    color: #121212;
    font-size: 1.4rem;
    margin: 24px 0 24px 0;
    padding: 2px 0 0;
    line-height: 1.3;
    width: 90px;
    text-align: center;
    font-weight: 600;
}
.raffle-card .countdown {
    background-color: #e63946;
    color: #fff;
    position: absolute;
    top: 1em;
    left: 1em;
    border-radius: 10px;
    padding: 8px 10px 8px 10px;
}
.raffle-card .auction {
    background-color: #132e52;
    color: #fff;
    position: absolute;
    top: 1em;
    left: 8em;
    border-radius: 10px;
    padding: 8px 10px 8px 10px;
}
.raffle-card .auction-bid {
    color: #ffcb04;
    font-size: 16px;
    margin-bottom: -10px;
}
.raffle-card .countdown-expired {
    background-color: var(--secondary-color);
    color: #fff;
    position: absolute;
    border-radius: 10px;
    top: 1em;
    left: 1em;
    padding: 8px 10px 8px 10px;
}

.raffle-card .countdown-coming {
    background-color: #ffc400;
    color: #111;
    position: absolute;
    top: 1em;
    left: 1em;
    border-radius: 10px;
    padding: 8px 10px 8px 10px;
}

.mobile-swiper-content {
    display: none;
}

@media (max-width: 600px) {
    .featured-competitions {
        padding-left: 17px;
    }
    .featured-competitions h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .swiper-container {
        position: relative;
        width: 85%;
        margin: 0 auto;
    }
    .swiper-slide .caption {
        padding: 25px 15px;
    }
    .swiper-slide .caption .feature .feature-content {
        margin: 10px 0;
    }
    .swiper-slide .caption .feature {
        display: none;
    }
    .mobile-swiper-content {
        display: block;
    }
    .mobile-swiper-content .inline-block {
        display: ruby;
    }
    .swiper-buttons .enter-now {
        background-color: #ffc107;
        color: #111;
        border: none;
        padding: 15px 15px;
        font-size: 16px;
        cursor: pointer;
        font-weight: 600;
        border-radius:5px;
    }
    .inline-mobile-elements {
        display: inline-flex;
    }
    .inline-mobile-elements .feature-content p {
        background: #7203a5;
        border-radius: 6px;
        color: #fff;
        font-size: 1rem;
        margin-left: 5px;
        padding: 15px 0;
        line-height: 1.3;
        width: 150px;
        text-align: center;
        font-weight: 500;
    }
    .swiper-button-next, .swiper-button-prev {
        top: 180px;
    }
}

/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
.categories-container {
    padding: 0 100px;
    margin-bottom: 50px;
}

.categories-wrapper {
    position: relative;
    margin: 20px 0;
    display: flex;
    justify-content: flex-start;
}

.categories {
    display: flex;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.categories::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.category {
    background-color: #1c2033;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    white-space: nowrap;
}

.category.active {
    background-color: #ffc107;
    color: #111;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
}

.scroll-left {
    left: 0;
    font-size: 1em;
    color: #0e1019;
    background: #ffc80a;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.scroll-right {
    right: 0;
    font-size: 1em;
    color: #0e1019;
    background: #ffc80a;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.filters-w-tittle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap;
}

.filter {
    width: fit-content;
}

.filter select {
    background-color: #1c2033;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 5px;
}

h1 {
    font-size: 36px;
    margin: 0;
}

.filters-grid-mobile {
    display: none;
}

.filters-grid {
    display: flex;
    gap: 20px;
}

.select {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 250px;
    height: 40px;
}

.option {
    padding: 0 30px 0 30px;
    min-height: 40px;
    display: flex;
    align-items: center;
    background: #1c2033;
    border-top: #222 solid 1px;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
    order: 2;
    transition: background .4s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    z-index: 100;
    justify-content: space-between;
}

.option:hover {
    background: #7203a5;
    color: #fff;
    min-height: 50px;
}

.filter .option .icon {
    color: #ffc107;
    font-size: 16px;
    background: #1c2033;
    border-radius: 6px;
    padding: 5px 6px;
    margin-left: 20px;
    border: 1px Solid #ffc107;
}

.filter .option .icon i {

}

.select:focus .option {
    position: relative;
    pointer-events: all;
}

input[type='radio'] {
    opacity: 0;
    position: absolute;
    left: -99999px;
}

input[type='radio']:checked+label {
    order: 1;
    background: rgb(254, 182, 7);
    background: linear-gradient(0deg, rgba(254, 182, 7, 1) 3%, rgba(253, 205, 8, 1) 76%);
    color: #111;
    border: 1px solid rgb(254, 182, 7);;
    border-radius: 6px;
    padding: 14px 28px;
    position: relative;
    z-index: 101;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

input[type='radio']:checked+label:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    /*border-top: 5px solid white;*/
    position: absolute;
    right: 15px;
    top: calc(50% - 2.5px);
    pointer-events: none;
    z-index: 3;
    border-radius: 0;
}

input[type='radio']:checked+label:before {
    position: absolute;
    right: 0;
    /*height: 40px;*/
    /*width: 40px;*/
    content: '';
    /*background: #1c2033;*/
}

.toggle-container {
    border-radius: 10px;
    border: 1px solid rgb(254, 182, 7);
    position: relative;
    box-sizing: border-box;
    background: #1c2033;
}

.toggler {
    position: absolute;
    background: rgb(254, 182, 7);
    top: 4px;
    border-radius: 8px;
    width: 0;
    height: calc(100% - calc(4px * 2));
    z-index: -1;
}

.toggler, ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.toggle li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius:8px;
}

.toggler,
li {
    --transition-duration: 300ms;
    --easing: ease-in-out;
    transition:
            left var(--easing) var(--transition-duration),
            color var(--easing) var(--transition-duration),
            width var(--easing) var(--transition-duration),
            background ease-in 150ms;
}

li:not(.active):hover {
    background: #0f1218;
    border-radius:8px;
}

li.active {
    color: #1c2033;
    background: rgb(254, 182, 7);
    background: linear-gradient(0deg, rgba(254, 182, 7, 1) 3%, rgba(253, 205, 8, 1) 76%);
}

.toggle li,
button {
    cursor: pointer;
}

.toggle button {
    font-size: 1rem;
    color: inherit;
    padding: 10px 28px;
    background: transparent;
    border: none;
    border-radius:8px;
}

@media (max-width: 768px) {
    .filters-w-tittle {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .filters-grid {
        display: none;
        gap: 20px;
    }

    .filters-grid-mobile {
        display: ruby;
        gap: 20px;
    }

    .filters-w-tittle h1 {
        font-size: 28px;
    }

    .filters-w-tittle div {
        width: auto;
    }

    .filter select {
        width: 100%;
    }

    .filter {
        width: fit-content;
        margin-bottom: 15px;
    }

    .categories-container {
        padding: 0 50px;
        margin-bottom: 40px;
    }

    .categories-wrapper {
        justify-content: center;
    }

    .raffle-card {
        width: 85%;
    }

    .toggle button {
        padding: 14px 20px;
    }
}

.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    background-color: #000000;
    border: 1px white solid;
    /*border: 0;*/
    line-height: 1.5em;
    font-size: 1em;
    border-radius: 5px;;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}
.custom-alert a {
    color: #f1c40f;
    text-decoration: underline;
}

.custom-alert a:hover {
    color: #e0a800;
}

.custom-alert button {
    background: none;
    color: rgb(148, 148, 148);
    border: 0;
}

.custom-alert button:hover {
    color: white;
}


.custom-alert.show {
    display: block;
}

@media screen and (max-width: 500px) {
    .custom-alert {
        width: 90vw;
    }
}