:root {
    --primary-color: rgb(255 201 63);
    --body-color: rgb(18 21 30);
    --white-color: #FFFFFF;
    --black-color: #000000;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: var(--white-color);
    background-color: var(--body-color);
}

/* utils */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.button {
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: 0;
}

.button.primary-button {
    color: var(--body-color);
    background-color: var(--primary-color);
}

.btn {
    padding: 1.1em 3em;
    background: none;
    border: 2px solid #fff;
    font-size: 15px;
    color: #131313;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 50px;
    background-color: #ecd448;
    font-weight: bolder;
    box-shadow: 0 2px 0 2px #000;
}

.btn:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 120%;
    background-color: #ff6700;
    top: 50%;
    transform: skewX(30deg) translate(-150%, -50%);
    transition: all 0.5s;
}

.btn:hover {
    background-color: #4cc9f0;
    color: #fff;
    box-shadow: 0 2px 0 2px #0d3b66;
}

.btn:hover::before {
    transform: skewX(30deg) translate(150%, -50%);
    transition-delay: 0.1s;
}

.btn:active {
    transform: scale(0.9);
}

/* utils ends */
/* landing page */
.logo {
    height: 50px;
}

header,
footer {
    background-color: #080a12;
}

.winshark-games {
    color: var(--white-color);
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all .3s ease;
    height: 100%;
    position: relative;
}

.winshark-games :is(img, video) {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.winshark-games:hover {
    border-color: var(--primary-color);
}

.winshark-games .winshark-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1;
}

.winshark-games .winshark-content h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
}

.winshark-games .winshark-content::before {
    content: '';
    background: linear-gradient(0deg, #000000ba, #00000000);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40%;
    width: 100%;
}

.winshark-games:hover .winshark-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* landing page ends */
/* footer */
.footer-pay-icons img {
    height: 30px;
}

/* footer ends */

/* inner page */
.inner-game {
    position: relative;
    border: 0;
}

.inner-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, .75);
}

.inner-game .inner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    text-align: center;
}

.inner-game .inner-content>img {
    max-width: 320px;
    border-radius: 10px;
}

/* inner page ends */
@media (width <=575px) {
    .btn {
        padding: 10px 25px;
    }

    .inner-content>img {
        display: none;
    }
}

.icon-overlay {
    background: #000000cf;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.loading-icon {
    position: absolute;
    z-index: 99999;
    left: 50%;
    top: 0;
    width: 100%;
    max-width: 50px;
    object-fit: contain !important;
    display: none;
    margin-bottom: 0px !important;
}

ol,
ul {
    padding-left: 2rem !important;
}

ol li,
ul li {
    margin-bottom: 10px;
}

.inner-game .inner-content>img {
    max-width: 320px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

.inner-game :is(img, video) {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-list li {
    margin: 0;
}

@media (max-width: 767px) {
    .menu-list {
        position: fixed;
        flex-direction: column;
        height: 100%;
        text-align: start;
        top: 0;
        left: 0;
        background: #080a12;
        transform: translateX(-100%);
        z-index: 999;
        align-items: start !important;
        gap: 0px !important;
        padding: 20px 0 !important;
        transition: all .3s ease;
    }
    .menu-list.open {
        transform: translateX(0);
    }
    .menu-list li {
        width: 100%;
    }

    .menu-list li a {
        display: block;
        padding: 6px 12px;
    }
}

.d-flex.dark-bg {
    background: rgb(255 201 63);
    color: #000;
    text-align: center;
    padding: 5px;
    justify-content: center !important;
    margin-top: 20px;
}

.footer ul li {
    margin-bottom: 0px;
}

.footer .d-flex.mt-3{
    align-items: center !important;
}

.dark-bg a {
    color: #000;
    text-decoration: underline;
}