html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    color: #fff;
    font-family: "Poppins", sans-serif;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
/*ol, ul {*/
/*    list-style: none;*/
/*}*/
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol {
    padding-left: 20px;
}
ul {
    padding-left: 15px;
    ul, ol {
        padding-left: 15px;
    }

    li {
        line-height: 20px;
        p {
            line-height: 20px;
        }
    }
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
    background: #110D0D;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;

    @media(max-width: 1200px) {
        padding: 0 25px;
    }

    @media(max-width: 920px) {
        padding: 0 15px;
    }

    @media(max-width: 768px) {
        padding: 0 15px;
    }
}

.head-block {
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;

    @media(max-width: 768px) {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

.head-block-subtitle {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;

    @media(max-width: 768px) {
        font-size: 23px;
        line-height: 27px;
        margin-bottom: 15px;
        margin-top: 15px;
    }
}

.text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.screen-container {
    width: 100%;
    height: 100%;
    max-height: 600px;
    margin: 0 auto 20px;

    img {
        width: 100%;
        height: 100%;
        max-height: 600px;
        object-fit: contain;
    }
}

:root {
    --nav-bg: #03000e;
    --main-clr: dodgerblue;
    --nav-shadow: 0px 3px var(--main-clr);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    width: 100%;
    background: #03000e;
    box-shadow: var(--nav-shadow);
    z-index: 2;
}

nav .logo {
    color: #fff;
    text-decoration-color: var(--main-clr);
    font-size: 22px;
    font-family: "Playfair Display", serif;
    font-weight: 100;
}

nav ul {
    --padding: 20px;
    --font-size: 17px;

    list-style: none;
    display: flex;
    align-items: center;
    font-size: var(--font-size);
    overflow-y: hidden;
    transition: 1s cubic-bezier(.68,-0.55,.27,10.55);
    box-shadow: var(--nav-shadow);
}

nav ul li {
    padding: var(--padding);
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

nav ul li a::after {
    content: "";
    width: 0%;
    height: 1.7px;
    border-radius: 99px;
    background: var(--main-clr);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav .menu {
    width: 22px;
    height: 16px;
    cursor: pointer;
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin: 20px;
}

nav .menu span {
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transition: 0.3s ease;
    transform-origin: left;
}

.container-logo a {
    display: inline-block;
    width: 150px;
    height: 35px;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;

        &:nth-child(1) {
            display: inline-block;
        }
        &:nth-child(2) {
            display: none;
        }

        @media(max-width: 768px) {
            &:nth-child(1) {
                display: none;
            }
            &:nth-child(2) {
                display: inline-block;
            }
        }
    }
}

nav .menu.active span {
    background: var(--main-clr);
}

nav .menu.active span:nth-child(1) {
    transform: rotate(40deg);
}

nav .menu span:nth-child(3) {
    transform-origin: left;
}

nav .menu.active span:nth-child(3) {
    transform: rotate(-40deg);
}

nav .menu.active span:nth-child(2) {
    transform: scale(0);
}

@media (max-width: 910px) {
    nav .menu {
        display: flex;
    }

    nav ul {
        --height: 0px;

        flex-direction: column;
        background: var(--nav-bg);
        position: absolute;
        z-index: 5;
        width: 100%;
        left: 0;
        top: 56px;
        height: var(--height);
        transition: 1s cubic-bezier(.68,-0.55,.27,1.55);
    }
    nav ul.active {
        --height: calc(
                (((var(--padding) * 2) + (var(--font-size) * 1.5))) * var(--childenNumber)
        );
        transition: 1s ease;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }
    nav ul li a {
        width: 100%;
        text-transform: capitalize;
    }
}

/*Header-banner*/

header {
    position: relative;
    z-index: 5;
}

.header-banner {
    position: relative;
    padding-top: 180px;
    z-index: 2;

    @media(max-width: 1024px) {
        padding-top: 130px;
    }

    .header-banner__content {
        background: #2E1A1A;
        padding: 55px 25px;
        position: relative;
        border-radius: 25px;
        margin-bottom: 80px;


        &:after {
            content: '';
            position: absolute;
            width: 59%;
            height: 166%;
            background: url(../assets/images/main-banner.webp) no-repeat 0 0;
            background-size: contain;
            right: 0;
            top: -26%;
            z-index: 1;

            @media(max-width: 1024px) {
                width: 70%;
                top: -15%;
            }

            @media(max-width: 768px) {
                display: none;
            }
        }
    }

    .header-banner__title {
        font-size: 32px;
        line-height: 36px;
        text-align: left;
        max-width: 500px;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    .header-banner__subtitle {
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        max-width: 500px;
        margin-bottom: 45px;
        position: relative;
        z-index: 2;
    }

    .header-banner__button {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 500px;

        @media(max-width: 1024px) {
            justify-content: flex-start;
        }

        .button {
            display: inline-block;
            font-size: 18px;
            line-height: 22px;
            color: #563E3E;
            background: #fed98d;
            text-decoration: none;
            padding: 10px 40px;
            border-radius: 25px;
            font-weight: 600;
        }
    }
}

/*top-games*/

.top-games {
    margin-bottom: 40px;

    .top-games__container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .top-game__item {
        width: 100%;
        max-width: 25%;
        padding: 0 10px;
        margin-bottom: 25px;

        @media(max-width: 768px) {
            max-width: 50%;
        }
    }

    .top-game {
        margin-bottom: 15px;

        img {
            border-radius: 25px;
            width: 90%;
            height: 100%;
            object-fit: cover;

            @media(max-width: 1024px) {
                width: 100%;
            }
        }
    }

    .top-game__name {
        margin-bottom: 15px;
    }

    .top-game__button {
        padding: 0 5px;

        a {
            display: inline-block;
            width: 100%;
            padding: 15px 10px;
            background: #fed98d;
            border-radius: 25px;
            color: #563E3E;
            text-decoration: none;
            text-align: center;
            font-size: 18px;
            font-weight: 500;

            @media(max-width: 1024px) {
                font-size: 13px;
                padding: 13px 10px;
            }
        }
    }
}

/*Section text*/

.section-text {
    margin-bottom: 40px;

    .section-text__text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px
    }
}


/*app-block*/

.app-block {
    margin-bottom: 40px;

    .app-block-container {
        width: 100%;
        max-width: 860px;
        margin: 0 auto;
        background: #2E1A1A;
        padding: 25px;
        border-radius: 25px;
        display: flex;
        justify-content: space-between;
    }

    .left-content {
        width: 100%;
        max-width: 50%;
        position: relative;

        @media(max-width: 640px) {
            max-width: 100%
        }
    }

    .casino-verify {
        display: flex;
        background: #492D2D;
        width: max-content;
        padding: 5px 10px;
        border-radius: 10px;
        margin-bottom: 20px;

        .logo-verify {
            width: 29px;
            height: 29px;
            margin-right: 15px;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }

    .text-verify-container {
        .text-verify {
            font-size: 14px;
            line-height: 18px;
            margin-bottom: 5px;
        }
    }

    .verify-green {
        margin-left: 10px;
        font-size: 12px;
        line-height: 14px;
        padding: 3px 15px;
        background: green;
        border-radius: 10px;
        height: max-content;
    }

    .title-verify {
        font-size: 22px;
        line-height: 27px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .text-verify {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .button-verify {
        background: #fed98d;
        display: inline-block;
        border-radius: 15px;

        a {
            display: inline-block;
            text-decoration: none;
            text-align: center;
            padding: 10px 25px;
            border-radius: 15px;
            color: #563E3E;
            font-weight: 500;
        }
    }

    .right-content {
        position: relative;
        bottom: -25px;

        @media(max-width: 640px) {
            display: none;
        }
    }
}
/*STARS*/

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 15px;
    height: 15px;
    display: inline-block;
    background-color: gold;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%,
    68% 57%, 79% 91%, 50% 70%,
    21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.half {
    background: linear-gradient(to right, gold 50%, transparent 50%);
}

.footer {
    padding: 25px 0;
    background: #24252a;

    .copyright-text {
        font-size: 14px;
        color: #444444;
    }
}

.container-scroll-table {
    @media (max-width: 990px) {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.table-two-column {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;

    th, td {
        border: 1px solid #fff;
        padding: 20px 10px;
        text-align: left;
    }
    th {
        background-color: #2d1d1d;
    }
    td {
        background-color: #3c2a2a;
    }
}

.accordion {
    background-color: #412626;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: background-color 0.4s;
    border-radius: 15px;

    @media (max-width: 990px) {
        font-size: 15px;
    }
}
.accordion:hover,
.accordion.active {
    background: #412626FF;
}
.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: white;
    margin-bottom: 10px;
    border-radius: 15px;

    p {
        font-size: 18px;
        line-height: 27px;
        padding: 25px 0;
        color: #000;

        @media (max-width: 990px) {
            font-size: 15px;
            line-height: 24px;
            padding: 20px 0;
        }
    }
    ul {
        li {
            color: #000
        }
         b {
             color: #000
         }
    }
}