@import "../includes/_imports.css";
main {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(-60deg, #002d5c, #003f81);
    overflow-x: hidden;
    position: relative;
}


/* Shapes */

.shape-1 {
    position: absolute;
    width: 200px;
    top: 500px;
    right: -100px;
}


/* Featured Bonuses Section */

.featured-bonuses {
    width: 100%;
    padding: 100px 0px;
    display: flex;
    justify-content: center;
}

.featured-bonuses .container {
    width: 1100px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.featured-bonuses .container h1 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.featured-bonuses .container h1 span {
    font-weight: 600;
    color: var(--primary-color);
}

.featured-bonuses .container .featured-bonuses-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-bonuses .container .featured-bonuses-wrapper .bonus {
    width: 800px;
    background: linear-gradient( rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    display: grid;
    align-items: center;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
}

.featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left {
    padding: 50px;
}

.featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    text-transform: uppercase;
}

.featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-right {
    width: 100%;
    background: linear-gradient( 180deg, rgba(12, 72, 117, 0.1), rgba(12, 72, 117, 0.01));
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-right img {
    width: 100%;
}


/* Text Section */

.text-section {
    width: 100%;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    position: relative;
}

.text-section .container {
    width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-section .container h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.text-section .container p {
    font-size: 18px;
    line-height: 30px !important;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.text-section .container h2 span {
    color: var(--primary-color);
}

.text-section .container button {
    margin-top: 40px;
    padding: 15px 40px;
    background: var(--primary-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.text-section .container button:hover {
    opacity: 0.8;
}

.text-section .container a {
    margin-top: 40px;
    padding: 15px 40px;
    background: #9147ff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.text-section .container a:hover {
    opacity: 0.8;
}

.text-section .container a i {
    margin-right: 5px;
}


/* Bonuses Section */

.bonuses {
    width: 100%;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    position: relative;
}

.bonuses .container {
    width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonuses .container h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.bonuses .container h2 span {
    color: var(--primary-color);
}

.bonuses .container .bonuses-wrapper {
    width: 100%;
}

.bonuses .container .bonuses-wrapper .bonus {
    width: 100%;
    background: linear-gradient( rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    border-radius: 10px;
    margin-bottom: 20px;
}

.bonuses .container .bonuses-wrapper .bonus:last-child {
    margin-bottom: 0px;
}

.bonuses .container .bonuses-wrapper .bonus .bonus-top {
    width: 100%;
    height: 110px;
    padding: 0px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonuses .container .bonuses-wrapper .bonus .bonus-top h3 {
    font-size: 20px;
    font-weight: 500;
}

.bonuses .container .bonuses-wrapper .bonus .bonus-top .cta-btn {
    width: 160px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 5px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bonuses .container .bonuses-wrapper .bonus .bonus-top .cta-btn:hover {
    opacity: 0.5;
}

.bonuses .container .bonuses-wrapper .bonus .bonus-top .cta-btn.danger {
    width: 240px;
    background: red;
    box-shadow: none;
}

.bonuses .container .bonuses-wrapper .bonus .bonus-top span {
    margin-left: 10px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
}

.bonuses .container .bonuses-wrapper .bonus .bonus-top span.danger {
    color: red;
}

.bonuses .container .points {
    margin-top: 100px;
    width: fit-content;
    padding: 20px 40px;
    background: var(--primary-color);
    box-shadow: 0px 0px 200px var(--primary-color);
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}


/* Responsive */


/* Featured Bonuses Section (Responsive) */

@media only screen and (max-width: 1350px) {
    .featured-bonuses .container {
        width: 85%;
    }
}

@media only screen and (max-width: 1024px) {
    .featured-bonuses .container .featured-bonuses-wrapper .bonus {
        width: 300px !important;
        grid-template-columns: 1fr;
    }
    .featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left {
        order: 2;
    }
    .featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left h2 {
        text-align: center;
    }
    .featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left span {
        text-align: center;
    }
    .featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left .desc {
        text-align: center;
    }
}

@media only screen and (max-width: 550px) {
    .featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left {
        padding: 30px;
    }
    .featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left h2 {
        font-size: 25px;
    }
    .featured-bonuses .container .featured-bonuses-wrapper .bonus .bonus-left .info {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}


/* Bonuses Section (Responsive) */

@media only screen and (max-width: 1350px) {
    .bonuses .container {
        width: 85%;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-top .img-container {
        width: 195px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-top .img-container img {
        width: 195px;
    }
}

@media only screen and (max-width: 1080px) {
    .bonuses .container .filters {
        flex-direction: column;
    }
    .bonuses .container .filters .filters-left {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin-bottom: 20px;
    }
    .bonuses .container .filters .filters-left .all-offers-btn {
        width: 100%;
        margin-right: 0px;
    }
    .bonuses .container .filters .filters-left .sort-by-select {
        width: 100%;
    }
    .bonuses .container .filters .filters-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .bonuses .container .filters .filters-right .bonus-type-select {
        width: 100%;
        margin-right: 0px;
    }
    .bonuses .container .filters .filters-right .deposit-options-select {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .bonuses .container .bonuses-wrapper .bonus .bonus-top {
        height: fit-content;
        flex-direction: column;
        padding-right: 0px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-top .img-container {
        width: 100%;
        height: 300px;
        border-radius: 10px 10px 0px 0px;
        margin-bottom: 20px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-top .img-container img {
        width: 100%;
        height: 300px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-top .info-part {
        margin-bottom: 20px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-top .info-part:last-child {
        margin-bottom: 0px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-top .details-btn-rating-wrapper {
        margin-bottom: 20px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-top .cta-btn {
        margin-bottom: 20px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom.active {
        border-radius: 0px 0px 10px 10px;
    }
}

@media only screen and (max-width: 850px) {
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom .bonus-bottom-top {
        grid-template-columns: 1fr;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom .bonus-bottom-top .bonus-bottom-top-part {
        border-right: none;
        border-bottom: 1px solid rgba(0, 158, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom .bonus-bottom-top .bonus-bottom-top-part:last-child {
        border-bottom: none;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom .bonus-bottom-top .bonus-bottom-top-part .license img {
        width: 100px;
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom .bonus-bottom-top .bonus-bottom-top-part .availability .countries {
        grid-template-columns: repeat(6, 1fr);
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom .bonus-bottom-top .bonus-bottom-top-part .deposit .deposit-methods {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media only screen and (max-width: 550px) {
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom .bonus-bottom-top .bonus-bottom-top-part .availability .countries {
        grid-template-columns: repeat(4, 1fr);
    }
    .bonuses .container .bonuses-wrapper .bonus .bonus-bottom .bonus-bottom-top .bonus-bottom-top-part .deposit .deposit-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 520px) {
    .bonuses .container .filters .filters-left {
        grid-template-columns: 1fr;
    }
    .bonuses .container .filters .filters-right {
        grid-template-columns: 1fr;
    }
}