:root {
    --dark-color: #111;
    --light-color: #fff;

    --gradient-1: #ED254E;
    --gradient-2: #660000;

    --primary-color: #ED254E;
    --secondary-color: #660000;
    --secondary-native-color: #F79D5C;
    --background-color: #293284;
    --text-color: #f4f4f4;


    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 1rem;
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

h1, h2, h3 {
    color: var(--text-color);
}

p {
    line-height: 1.6;
}

a {
    color: var(--secondary-native-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 3rem 0;
}

.section__title {
    font-size: 3rem;
    line-height: 1.25;
    text-align: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto 2rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 8px 0;
    margin: 0 auto;
    border-radius: 8px;
    transition: all .5s ease;
}

.btn:hover {
   transform: scale(1.1);
    text-decoration: none;
}

.flex {
    display: flex;
}

.header,
.responsible-gaming,
.footer {
    background: linear-gradient(270deg, #1C1018 0%, #42012c 100%);
}

/* HEADER SECTION */


.header {
    color: white;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #5D7CE8;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.header__inner > * {
    flex: 1 0 400px;
    max-width: 400px;
}



.logo img {
    max-width: 50px;
    display: block;
}

.age-restriction {
    max-width: 50px;

}

.header__text {
    max-width: 400px;
    text-align: right;
}

.text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.text-purple-400 {
    --tw-text-opacity: 1;
    color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.fill-current {
    fill: currentColor;
}

/* HERO SECTION */

.hero {
    background-image: url(../img/hero-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
}

.hero::before {
    position: absolute;
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .6);
    z-index: -1;    
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: 
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1));
    z-index: -1;
}

.hero__title {
    text-align: center;
    font-size: 4.5rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 2rem;
}

.hero__title span {
    background-image: linear-gradient(to right, var(--gradient-1), var(--gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text {
    text-align: center;
    font-size: 1.25rem;
    max-width: 700px;
    width: 100%;
    margin: 0 auto 1.5rem;
}

.hero__about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero__item {
    display: flex;
    gap: 0.5rem;
}


.hero__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    width: 100%;
    padding: 8px 0;
    margin: 0 auto;
    background-image: linear-gradient(to right, var(--gradient-1), var(--gradient-2));
}

/* OPERATORS SECTION */

.top-operators {
    position: relative;
    z-index: 10;
}

.top-operators::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,1));
    z-index: -1;
}


.operator__subtitle {
    max-width: 60%;
    font-size: 1.25rem;
    text-align: center;
    margin: 0 auto 2rem;
}

.operator__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.operator__card {
    border-radius: .5rem;
    flex: 0 1 calc(33% - 4rem);
    max-width: 100%;
    backdrop-filter: blur(12px);
    border: 1px solid #fff3;
}



.operator__head {
    position: relative;
    overflow: hidden;
    /* background-color: #1B1D2D; */
    background-color: rgba(0,0,0,0);
    color: var(--dark-color);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;

}

.operator__head img {
    max-width: 270px;
    width: 100%;
}

.operator__head .flex {
    position: absolute;
    top: 10px;
    left: 0;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding-left: 10px;
}

.operator__head span {
    padding: .25rem .75rem;
    border-radius: 9999px;
    font-size: 14px;
}

.operator__head span:nth-child(1) {
    background-color: var(--primary-color);
    font-weight: 700;
    
}

.operator__head span:nth-child(2) {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.operator__head span:nth-child(3) {
    margin-left: auto;
    
}

.operator__body {
    padding: 1.5rem;
    background-color: #ffffff1a;
}

.operator__card-title {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.operator__card-title h3 {
    color: var(--text-color);
}

.operator__rating {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.operator__rating li {
    display: inline-block;
    
}

.operator__rating li:not(:last-child) {
    line-height: 0;
}

.operator__rating svg {
    max-width: 16px;
}

.operator__rating li:last-child {
    line-height: 1;
    font-weight: 700;
}

.operator__rating li + li {
    margin-left: 3px;
}

.operator__bonus {
    padding: 1rem;
    background-image: linear-gradient(to right, rgb(250 204 21 / .2) , rgb(249 115 22 / .2));
    border: 1px solid #facc154d;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.operator__bonus svg {
    margin-right: 0.5rem;
}

.operator__feature {
    padding-left: 18px;
    margin-bottom: 1.5rem;
}

.operator__feature li::marker {
    color: var(--secondary-color);
}

.operator__btn {
    max-width: 100%;
    gap: 2rem;
    background-image: linear-gradient(to right, var(--gradient-1) , var(--gradient-2));

}


/* INFO SECTION */

.info {
    border-bottom: 1px solid #5D7CE8;
}

.info__inner {
    padding: 1.5rem 2rem;
    border: 1px solid #611C91;
    background: #1C1018;    
    border-radius: 4px;
}

.info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info p {
    margin-bottom: 1.5rem;
}

.info h4 {
    margin-bottom: 0.5rem;
}

/* RESPONSIBLE GAMING */


.responsible-gaming__content {
    background-color: #7f1d1d33;
    border: 1px solid #ef44444d;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 3rem;
}

.text-red-400 {
    flex-shrink: 0;
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.responsible-gaming__description h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
}

.responsible-gaming__help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* FOOTER SECTION */


.footer {
    color: white;
    text-align: center;
    padding: 30px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer img {
    margin: 0 auto;
}

.footer__list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 2rem;
}

.footer__link {
    color: var(--primary-color);
}

.footer__disclaimer {
    margin-bottom: 2rem;
}



/* COOKIES START */

.cookies-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 1.5rem 1rem;
    text-align: center;
    z-index: 1000;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookies-banner__btns {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookies-banner__btns {
        flex-direction: column;
        align-items: center;
    }
}

.cookies-banner button {
    margin: 0 5px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: .375rem;
}

#accept-cookies {
    background-color: var(--primary-color); /* Green */
    color: white;
    transition: transform .5s ease;
}
#accept-cookies:hover {
    transform: scale(1.05); 
}

#reject-cookies {
    background-color: #f44336; /* Red */
    color: white;
}

#reject-cookies:hover {
    transform: scale(1.05); 
}

/* PAGES */

.page {
    border-bottom: 1px solid #5D7CE8;
}

.page__inner {
    padding: 1.5rem 2rem;
    border: 1px solid #611C91;
    background: rgba(27, 29, 45, .3);
    border-radius: 4px;
    backdrop-filter: blur(12px);
}

.page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.4rem;
}

.page ul {
    padding-left: 18px;
    margin-bottom: 1.5rem;
    margin-top: 0.3rem;
}


.breadcrumbs {
    text-align: center;
    margin-top: 3rem;
}

.breadcrumbs__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    position: relative;
}


.breadcrumbs__link {
    color: var(--text-color);
}

.breadcrumbs__info span {
    opacity: .5;
}

.breadcrumbs__page {
    color: var(--secondary-color);
}


/* MEDIA QUERIES */

@media (max-width: 992.98px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .header__inner {
        align-items: center;
        text-align: center;
        flex-wrap: wrap ;
        gap: 1rem;
    }

    .header__inner > * {
    flex-basis: unset;
    max-width: unset;
}

.age-restriction {
    max-width: 50px;
}

    .header__text {
        max-width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }

    .hero__title {
        font-size: 2.5rem;
        max-width: 90%;
    }

    .hero__text {
        font-size: 1rem;
        max-width: 90%;
    }

    .hero__btn {
        max-width: 180px;
    }

    .section__title {
        font-size: 2rem;
    }

    .operator__subtitle {
        max-width: 90%;
        font-size: 1rem;
    }

    .operator__list {
        gap: 1.5rem;
    }

    

    .info__inner {
        padding: 1rem;
    }

    .responsible-gaming__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .responsible-gaming__help {
        gap: 2rem;
    }

    .footer__list {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .footer__disclaimer {
        font-size: 0.9rem;
    }
}
@media (max-width: 768.98px) {
    .hero__about {
        flex-direction: column;
        gap: 1rem;
    }

    .operator__list {
        grid-template-columns: 1fr;
    }

    .operator__card {
        max-width: 100%;
    }
}

@media (max-width: 375.98px) {
    .container {
        padding: 0 10px;
    }

    .header__inner {
        gap: 0.5rem;
    }

    .logo img, .age-restriction {
        max-width: 40px;
    }

    .header__text {
        font-size: 0.8rem;
    }

    .hero__title {
        font-size: 1.8rem;
        max-width: 100%;
    }

    .hero__text {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .hero__btn {
        max-width: 150px;
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .operator__subtitle {
        font-size: 0.9rem;
    }

    .operator__head {
        height: 150px;
    }

    .operator__head span {
        font-size: 12px;
        padding: 0.2rem 0.5rem;
    }

    .operator__card-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .operator__card-title h3 {
        font-size: 1.2rem;
    }

    .operator__rating svg {
        max-width: 14px;
    }

    .operator__bonus {
        padding: 0.75rem;
    }

    .operator__feature {
        font-size: 0.9rem;
    }

    .operator__btn {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .info h3 {
        font-size: 1.2rem;
    }

    .info p {
        font-size: 0.9rem;
    }

    .responsible-gaming__description h4 {
        font-size: 1rem;
    }

    .responsible-gaming__description p {
        font-size: 0.9rem;
    }

    .responsible-gaming__help img {
        max-width: 250px;
    }

    .footer__disclaimer, .footer__copy {
        font-size: 0.8rem;
    }

    .cookies-banner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .cookies-banner p {
        font-size: 0.8rem;
    }

    .cookies-banner button {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

