@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --color-text-1: #fff;
    --color-text-2: #d9d9d9;
    --color-text-3: #989898;

    --color-bg-1: #01141a;
    --color-bg-2: #02232F;
    --color-bg-3: #098db9;
    --color-bg-4: #4d5b5f;
    --color-bg-5: #0e2c36;

    --color-blue-1: #098db9;

    --color-dark-green-1: #002103;

    --color-prim-1: #ffb322;
    --color-prim-2: #FFD369;
    --color-prim-3: #ffdc87;

    --color-green-1: #74d19e;

    --color-red-1: #B82727;
    --color-red-2: #c53d3d;

    --border-radius-sm: 6px;
    --border-radius-md: 8px;

    --color-glass-1: rgba(62, 62, 62, 0.58);

    --btn-color: #3c9f8b;
}

/*::-webkit-scrollbar-track {*/
/*    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
/*    background-color: #F5F5F5;*/
/*    border-radius: 10px;*/
/*}*/

::-webkit-scrollbar {
    width: 5px;
    height: 2px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--theme-color);
}


html {
    font-size: 16px;
    scroll-behavior: initial !important;
    overscroll-behavior: none !important;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--color-text-1);
    transition: color 0.3s, background-color 0.3s;
    min-height: 100vh;
    overflow-x: clip;
    line-height: 1.5;
    background: var(--color-bg-5);
    background-color: var(--color-bg-5);
}

p {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

header {
    background: var(--color-bg-5);
    padding: 1rem 3rem;
}

header .navbar {
    padding: 0;
}

header .navbar-brand {
    width: 120px;
    height: 60px;
}

header .navbar-brand img {
    width: 180px;
    height: 100%;
    object-fit: contain;
}

header .navbar .navbar-nav {
    gap: 1rem;
}

header .navbar .nav-item .nav-link {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

header .navbar .nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-text-1);
    height: 3px;
    /*transform-origin: left;*/
    transform: scaleX(0);
    transition: all 0.3s ease;
}

header .navbar .nav-item .nav-link:hover {
    color: var(--btn-color);
}

header .navbar .nav-item .nav-link:hover::before {
    transform: scaleX(1);
}

header .navbar-toggler {
    order: 3;
}

header .btnCont {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    order: 2;
}

header .themeBtn {
    text-transform: uppercase;
}

.themeBtn.holo {
    background: transparent;
    border: 1px solid var(--color-text-1);
}

.themeBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.875rem;
    padding: 0px 10px;
    font-weight: 600;
    height: 30px;
    color: var(--color-text-1);
    background-color: var(--btn-color);
    text-transform: capitalize;
    width: fit-content;
}

.bannerSec .swiper-slide img {
    width: 100%;
    object-fit: cover;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: var(--color-text-1);
    cursor: pointer;
    font-size: 20px !important;
    z-index: 111;
}

section {
    padding: 48px 0;
}

.secHeading {
    color: var(--color-text-1);
    font-family: Poppins, sans-serif;
    width: max-content;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.1;
    position: relative;
    padding-bottom: 16px;
}

.secHeading::after {
    content: "";
    width: 30%;
    height: 1.5px;
    background-color: var(--btn-color);
    position: absolute;
    bottom: 0px;
    left: 16px;
}

.prevBtn,
.nextBtn {
    width: 35px;
    height: 35px;
    background-color: var(--btn-color);
    border: none;
    outline: none;
    border-radius: 50%;
    overflow: hidden;
    margin: 0px;
    font-size: 0.875rem;
    color: var(--text-color);
}

.swiper-button-disabled {
    cursor: not-allowed;
}

.headingCont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.headingCont .btnCont {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.prodCard {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.prodCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s;
}

.prodCard:hover img {
    transform: scale(1.1);
}

.prodCard + h3 {
    color: var(--color-text-1);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
}

.providerSwiper {
    height: 60px;
    background-color: var(--color-bg-2);
    border-radius: 16px;
    margin-bottom: 32px;
    padding: 0px 16px;
    overflow: hidden;
}

.providerSwiper .swiperSlide,
.providerSwiper .swiperSlide ~ * {
    width: max-content !important;
}

.providerSwiper .item {
    min-width: 70px;
    height: 100%;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.providerSwiper .item img {
    width: 45px;
    height: auto; /* Changed 'max-content' to 'auto' for CSS compatibility */
    object-fit: cover;
}

.providerSwiper .item:hover {
    background-color: var(--color-bg-5);
    border-bottom: 4px solid var(--color-text-1);
}

.providerSwiper .item.active {
    border-bottom: 4px solid var(--btn-color);
}

.providerSwiper .swiper-wrapper {
    height: 100%;
}

.gameSlider {
    overflow: hidden;
}

.gameSlider .swiperSlide,
.gameSlider .swiperSlide ~ * {
    width: max-content !important;
}

@media (max-width: 768px) {
    /* Assuming "phone" refers to mobile screens */
    .gameSlider {
        display: none;
    }
}

.StyledSwiper .swiper-wrapper {
    padding-left: 16px; /* Add padding at the start */
}

.chip {
    width: max-content;
    height: 40px;
    font-size: 14px;
    padding: 0 18px;
    border-radius: 50px;
    background: var(--color-bg-2);
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}

.chip:hover {
    background-color: var(--color-text-1);
    color: #000;
    font-weight: 600;
}

.chip.active {
    background-color: var(--btn-color);
    color: var(--color-text-1);
    font-weight: 600;
}

.gameWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    padding: 24px 0;
}

@media (max-width: 768px) {
    /* Assuming "phone" refers to mobile screens */
    .gameWrapper {
        gap: 8px;
        grid-template-columns: 1fr 1fr;
    }
}

.Empty {
    text-align: center;
    grid-column: 1 / -1;
}

footer {
    background: var(--color-dark-green-1);
    padding: 32px 16px;
}

footer .content {
    font-size: 14px;
    color: var(--color-text-3);
    line-height: 1.6;
}

footer .images p {
    color: var(--color-text-1);
    margin-bottom: 16px;
}

footer .images-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

footer .images-wrapper img {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
}

footer .styled-footer {
    border-top: 1px solid var(--color-text-3);
    padding-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

footer .nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

footer .item {
    font-size: 14px;
    color: var(--color-text-3);
}

footer .copyright {
    color: var(--color-text-3);
    font-size: 14px;
    text-align: center;
    grid-column: 1 / -1;
}

footer .logo img {
    width: 130px;
}

footer .images {
    margin-top: 2rem;
}

footer .social-media {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 16px;
    margin: 2rem 0;
}

footer .social-media a {
    display: flex;
}

footer .social-media svg, footer .social-media i {
    font-size: 1.5rem;
    color: var(--color-text-3);
}

.trendingSec .content p + p {
    margin-top: 1rem;
}

.trendingSec .contentImg img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.filter ul {
    display: flex;
    flex-direction: column;
    border-block: 1px solid #fff;
}

.filter ul li + li {
    border-top: 1px solid #fff;
}

.filter ul li a p {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.filter ul li {
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.filter ul li:hover,
.filter ul li.active {
    background: var(--color-bg-2);
}

.filter ul li:hover a p,
.filter ul li.active a p {
    color: var(--color-prim-1);
}

.filter h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

#paginationControls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#paginationControls button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    background: var(--color-bg-1);
    color: var(--color-text-1);
    border: none;
    box-shadow: 0 0 2px var(--color-blue-1);
    transition: all 0.3s ease;
}

#paginationControls button.active,
#paginationControls button:hover {
    background: var(--btn-color);
    font-weight: 600;
}

.videoSec iframe {
    width: 100%;
    height: 768px;
}

.testiCard {
    border: 2px solid var(--btn-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 10px var(--btn-color);
}

.testiCard .info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testiCard .info figure {
    background: var(--color-bg-2);
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 100%;
}

.testiCard .info figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testiCard .info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
}

.testiCard .info p {
    background: #000;
    padding: 0.375rem 1rem;
    font-weight: 700;
    color: var(--color-red-1);
    border: 2px solid var(--color-red-1);
    border-radius: 30px;
    text-shadow: 0 0 15px var(--color-red-1);
    margin: 0;
    font-size: 1rem;
}

.testiCard p {
    font-size: 0.875rem;
    line-height: 1.8;
    text-align: center;
    margin: 1rem 0 0;
}

.blogCard {
    background: var(--color-bg-2);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.blogCard figure {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.blogCard figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogCard .content {
    padding-top: 10px;
}

.blogCard .content h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.blogCard .content p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogCard .content .lineBtn {
    color: var(--color-prim-1);
    font-weight: 600;
    font-size: 16px;
    margin: 10px 0 0;
    display: block;
}

.blogsSec .row {
    gap: 1.5rem 0;
}

.blogCard:hover {
    box-shadow: 0 0 15px #000;
}

.blogListSec img {
    width: 200px;
    height: 100%;
    object-fit: cover;
}

.blogListSec table {
    background: var(--color-bg-2);
}

.blogListSec table th, .blogListSec table td {
    color: #fff;
    white-space: nowrap;
    vertical-align: middle;
}

.blogListSec table th:nth-child(3), .blogListSec table td:nth-child(3) p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

.blogListSec .btnCont {
    flex-direction: column;
    display: flex;
    gap: 10px;
}

.loginSec {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.contentSec h2 {
    font-size: 2.25rem;
    margin: 0;
    font-weight: 700;
}

.contentSec p {
    margin: 0;
    font-size: 1rem;
}

.contentSec p strong {
    font-weight: 700;
    font-size: 1.125rem;
}

.contentSec p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0 0 0.5rem;
}

.contentSec h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1rem 0 0;
}

.contentSec ul li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0;
}

.contentSec ul li + li {
    margin-top: 0.5rem;
}

.contentSec ul li span {
    font-weight: 600;
}

.contentSec ul {
    padding-left: 20px;
    list-style: disc;
}

.blogDetailCard figure img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.blogDetailCard h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0 3rem;
}

.blogDetailCard .content p + * {
    margin: 1.5rem 0 0.5rem;
}

.blogDetailCard .content p {
    font-size: 1.125rem;
    line-height: 1.8rem;
}

.commentBox {
    border-bottom: 1px solid #fff8;
    border-inline: 1px solid #fff8;
    position: relative;
}

.commentBox .user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 0.5rem;
    border-bottom: 1px solid #fff8;
    padding: 0 1rem 0.5rem;
}

.commentBox .user h6 {
    margin: 0 0 0 auto;
    font-size: 12px;
    font-weight: 700;
}

.commentBox .user h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.commentBox .comment p {
    font-size: 14px;
}

.commentBox .comment {
    padding: 0.5rem 1rem;
}

.commentBox.reply {
    width: 98%;
    margin: 0 0 0 auto;
    border: none;
}

.commentBox + .commentBox {
    margin-top: 2rem;
}

.commentBox .commentBox + .commentBox {
    margin-top: 1rem;
}

.inputCont input:not([type="file"]),
.inputCont textarea,
.inputCont select {
    outline: none;
    display: block;
    padding: 0.25rem 1rem;
    color: #fff;
    background: none;
    border: 1px solid #fff8;
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
}


.inputCont input::placeholder, .inputCont textarea::placeholder {
    color: var(--black);
    text-transform: capitalize;
}

.addComment {
    margin: 2rem 0 0;
}

.addComment .secHeading {
    text-align: left;
    margin: 0 0 1rem;
}

.addComment .row {
    gap: 1.25rem 0;
}

.inputCont.disclaimer {
    border: none;
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inputCont.disclaimer input {
    width: 20px;
}

.addComment .btnCont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.25rem 0 0;
}

.replyModal .inputCont input, .replyModal .inputCont textarea {
    border: 1px solid #0005;
    color: #000;
}

.replyModal .inputCont.disclaimer span {
    color: #000;
    font-size: 14px;
}

.replyModal .btnCont {
    flex-direction: column;
    gap: 1rem;
}

.replyModal .headingCont {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.replyModal .headingCont h3 {
    color: #000;
    font-size: 1.5rem;
    margin: 0;
}

.replyModal .headingCont button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #0008;
    color: #fff;
    border-radius: 100%;
}

.blogSwiperSec .swiper {
    padding: 0 0 3rem;
}

.blogSwiperSec {
    padding: 5rem 0 2rem;
}

.linkingSec {
    background: var(--color-bg-2);
    padding: 1rem 0;
}

.linkingCont {
    display: flex;
    align-items: center;
    gap: 0;
}

.linkingCont li:not(:last-child):after {
    color: var(--color-text-3);
    content: "\f0da";
    font-family: "Font Awesome 5 Pro", sans, serif;
    font-weight: 900;
    margin: 0 1rem;
}

.linkingCont li a, .linkingCont li span {
    color: var(--color-text-3);
    font-weight: 700;
    text-transform: capitalize;
}

.linkingCont li span {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-prim-1);
}

.filter .blogCard figure {
    height: 150px;
}

.filter .blogCard {
    margin: 1rem 0;
    box-shadow: 0 0 15px 5px rgb(9 141 185 / 25%);
}

.filter .blogCard .content h2 {
    font-size: 14px;
}
.pagesHeading {
    margin-bottom: 1rem;
}
div#content-div p {
    margin-bottom: 1rem;
}


/*#div_editor1, */
/*#div_editor1 * {*/
/*    color: white !important;*/
/*}*/

/*#div_editor1 {*/
/*    color: white !important; */
/*}*/

/*#div_editor1 * {*/
/*    color: white !important; */
/*}*/

/*#div_editor1 h1 {*/
/*    color: white !important; */
/*}*/

/*#div_editor1 p,*/
/*#div_editor1 span,*/
/*#div_editor1 div {*/
/*    color: white !important; */
/*}*/

   







