/* COMMON CSS */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

:root {
    --bs-washed-black: rgba(20, 20, 20, 1);
    --bs-white: rgba(255, 255, 255, 1);
    --bs-purple-plam: #6C3483;
    --bs-light-purple: #F0E3F7;
    --bs-light-purple-plam-gradient: linear-gradient(135deg, #FDF6EA, #F5E6C5, #D8BFD8, #EAD6F4);
    --bs-purple-plam-gradient: linear-gradient(135deg, #F0E3F7, #EAD6F4, #D8BFD8);
    /* Aanya addition */
    --bs-form-gradient: linear-gradient(282.22deg, #F6F0E6 32.15%, #FBF7F3 67.85%);
    --bs-dark-purple: #3E1D4C;
    --bs-soft-warm: #F6E2B3;
    --bs-soft-purple: linear-gradient(148deg, rgba(245, 230, 197, 0.2), #FDF6EA);
    --bs-card-gradient: linear-gradient(107.97deg, #faf0fe 40%, rgba(240, 227, 247, 0.5) 100%);
}

::selection {
    background: #6C3483;
    color: #fff
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: #F0E3F7;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #6C3483;
}

body {
    font-family: "Varela Round", sans-serif !important;
}

/*heading view*/
.bordermain {
    border: 1px solid #6c3483;
}

.topheadingview h1 {
    font-size: 30px !important;
    font-weight: bold !important;
    margin: 12px 0;
}

.topheadingview br {
    display: none !important;
}

.topheadingview p {
    font-size: 16px !important;
    margin-bottom: 3px !important;
}

/*end*/
.bg-form {
    background: var(--bs-form-gradient);
}

.bg-light-purple-gradient {
    background: var(--bs-light-purple-plam-gradient);
}

.bg-purple-palm {
    background: var(--bs-purple-plam);
}

.bg-purple-gradient {
    background: var(--bs-purple-plam-gradient);
}

.bg-light-purple {
    background: var(--bs-light-purple) !important;
}

.bg-dark-purple {
    background: var(--bs-dark-purple) !important;
}

.bg-card-gradient {
    background: var(--bs-card-gradient);
}

.bg-soft-purple {
    background: var(--bs-soft-purple);
}

.bg-soft-warm {
    background: var(--bs-soft-warm) !important;
}

.light-purple-clr {
    color: var(--bs-light-purple) !important;
}

.dark-purple-clr {
    color: var(--bs-dark-purple) !important;
}

.soft-warm-clr {
    color: var(--bs-soft-warm) !important;
}

.bdr-purple {
    border: 1px solid var(--bs-purple-plam);
}

.bdr-clr {
    border-color: var(--bs-purple-plam)
}

.bdr-left {
    border-left: 4px solid var(--bs-purple-plam);
    border-radius: 12px 0px 0px 8px;
}

.exclusive-bg {
    background: linear-gradient(90deg, #C49000, #FFE4B5);
}

.feature-bg {
    background: linear-gradient(135deg, #F8F5F0, #EDE3D3, #D8C3A5);
    color: #4B3A26 !important;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 6px rgba(255, 169, 6, 0.35),
        0 0 12px rgba(255, 187, 69, 0.25);
    border: 1px solid rgba(255,255,255,.4);
    font-weight: 700;
    letter-spacing: .2px;
    animation: featureGlow 2s ease-in-out infinite alternate;
}

@keyframes featureGlow {
    from {
        box-shadow:
            0 2px 6px rgba(255,169,6,.35),
            0 0 8px rgba(255,187,69,.20);
    }

    to {
        box-shadow:
            0 4px 12px rgba(255,169,6,.50),
            0 0 18px rgba(255,187,69,.45);
    }
}

.feature-bg::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -150%;
    width: 35%;
    height: 140%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        rgba(255,255,255,.75),
        rgba(255,255,255,.25),
        transparent
    );
    transform: rotate(20deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }
    100% {
        left: 250%;
    }
}

.whatsapp-bg {
    background: #25D366;
}

.discord-bg {
    background: #404eed !important;
}

.insta-bg {
    background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important
}

.gmail-bg {
    background: #4285f4;
}

.google-bg {
    background: #db4a39;
}

.twitter-bg {
    background: #0f1419 !important;
}

.linkdin-bg {
    background: #0072b1 !important;
}

.fb-bg {
    background: #3b5998 !important;
}

.tele-bg {
    background: #0088cc !important;
}

.reddit-bg {
    background: #ff4500 !important;
}

.pinterest-bg {
    background: #c8232c !important;
}

.youtube-bg {
    background-color: #CD201F;
}

.slack-bg {
    background: linear-gradient(90deg, rgba(137, 211, 223, 1) 0%, rgba(236, 179, 45, 1) 34%, rgba(224, 26, 89, 1) 66%, rgba(99, 193, 160, 1) 100%);
}

.text-washed-black {
    color: var(--bs-washed-black);
}

.twitter-clr {
    color: #0f1419 !important;
}

.discord-clr {
    color: #404eed !important;
}

.linkdin-clr {
    color: #0072b1 !important;
}

.fb-clr {
    color: #3b5998 !important;
}

.tele-clr {
    color: #0088cc;
}

.youtube-clr {
    background-color: #CD201F;
}

.gmail-clr {
    color: #4285f4;
}

.whatsapp-clr {
    color: #25D366;
}

.insta-clr {
    color: #d6249f;
}

.purple-clr {
    color: var(--bs-purple-plam);
}

.box-shadow-md {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.share-modal-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin: 5px;
    text-decoration: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.small-icon {
    width: 25px;
    height: 25px;
    font-size: 12px;
    margin: 0px
}

.cursor-pointer {
    cursor: pointer;
}

.fs-12 {
    font-size: 12px;
}

.error {
    color: #dc3545;
}

.one-line-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.two-line-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.skeleton {
    background: linear-gradient(90deg, #fff0, #fff0, #eee0, #cccccc6e, #eee0, #fff0, #fff0);
    background-size: 200%;
    -webkit-animation: skeleton-animation 1s ease-out infinite;
    -moz-animation: skeleton-animation 1s ease-out infinite;
    animation: skeleton-animation 1s ease-out infinite;
    border-radius: 20px;
}

@keyframes skeleton-animation {
    0% {
        background-position: 200%;
    }

    100% {
        background-position: 0%;
    }
}

/* Header */
.nav-itm {
    margin: 6px 5px;
    text-align: center;
    position: relative
}

.animated-button1 span,
.btn-close,
.plane-position,
.search-drop {
    position: absolute
}

.nav-itm:hover .drop-menu {
    display: block;
    transform: rotateX(0)
}

.primery-menu {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-white);
    display: block;
    margin: auto;
    padding: 2px 13px;
    text-decoration: none;
    border-radius: 30px;
    transition: .3s ease-in-out
}

@media (max-width:1199px) and (min-width:992px) {
    .desktopview .fs-14 {
        font-size: 11px !important
    }

    .logo {
        width: 100px;
        height: 34px
    }

    .desktopview .imgkol {
        height: auto;
        width: 80px
    }

    .desktopview .nav-itm {
        margin: 6px 3px
    }

    .serch-prnt {
        width: 175px
    }

    .primery-menu {
        font-size: 11px;
        padding: 2px 7px
    }
}

@media (max-width:575px) {

    .primery-menu,
    .primerymenu_btm {
        font-size: 11px !important
    }

    .primery-menu .down-arrow {
        font-size: 10px !important
    }

    .social-icon-small {
        width: 20px;
        height: 20px;
        font-size: 10px
    }
}

.primery-menu .down-arrow {
    font-size: 12px;
    margin-left: 5px
}

.nav-itm:hover .primery-menu {
    color: var(--bs-soft-warm);
}

.active-navbar {
    color: var(--bs-soft-warm)
}

.primery-menu::after {
    margin-left: .1em;
    content: "";
}

.drop-item {
    font-size: 14px;
    color: var(--bs-purple-plam);
    padding: 4px 16px;
    display: block;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 20px
}

.drop-item:hover,
.opinion-poll .active i {
    color: var(--bs-light-purple);
}

.alphabates span.active,
.details-page table thead tr th,
.drop-item.active,
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    color: var(--bs-white);
    background: var(--bs-purple-plam);
}

.nav-itm:hover .primery-menu .down-arrow {
    transform: rotate(-180deg)
}

.dropdown-item.active,
.dropdown-item:active {
    display: inline;
    background-color: var(--bs-purple-plam);
    border-radius: 25px
}

@media (max-width: 1199px) and (min-width: 992px) {
    .header-logo {
        width: 150px;
        height: 45px;
    }

    .navbar-nav .nav-lnk {
        padding: 4px 13px !important;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .header-logo {
        width: 115px;
        height: 35px;
    }
}

/* Header */
/* FOOTER CSS */

.footersection ul {
    list-style: none;
    padding: 0;
}

.addressblock {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 15px;
    color: var(--bs-white);
}

.footerheading h5:after {
    content: "";
    width: 10%;
    height: 1px;
    background: #e1e1e1;
    position: absolute;
    display: block;
    margin-top: 2px;
}

.footerheading h5 {
    color: var(--bs-white);
    position: relative;
}

.userfullink ul {
    padding: 0;
}

.userfullink ul li a {
    color: var(--bs-white);
}

.userfullink ul {
    padding: 0;
}

.userfullink ul li a {
    color: var(--bs-white);
}

/* FOOTER CSS */

.small-btn {
    font-size: 12px !important;
    padding: 4px 10px !important;
}

.hover-card {
    transition: transform 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
}

.purple-btn {
    font-weight: 600;
    color: var(--bs-white);
    background: var(--bs-purple-plam);
    padding: 5px 16px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid var(--bs-purple-plam);
    border-radius: 30px;
    transition: all .3s ease-in-out;
}

.border-btn,
.border-hover-btn {
    font-weight: 600;
    color: var(--bs-purple-plam);
    padding: 5px 16px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid var(--bs-purple-plam);
    border-radius: 30px;
    transition: all .3s ease-in-out;
}

.border-hover-btn:hover {
    background: var(--bs-purple-plam);
    color: var(--bs-white);
}

.purple-bdr {
    padding: 5px;
    text-align: center;
    border: 1px solid var(--bs-purple-plam);
    border-radius: 30px;
    display: inline-block;
}

/* BREADCRUMB */
.brdcrumb ul {
    font-weight: 500;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 10px 0;
}

.brdcrumb ul li::before {
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    font-size: 14px;
    color: #000 !important;
    content: "\f0da" !important;
    margin: 0 8px;
}

.brdcrumb ul li:first-child::before {
    display: none;
}

.brdcrumb ul li:last-child {
    color: var(--bs-purple-plam);
    text-align: center;
    display: flex;
    align-items: center;
    cursor: default;
}

.brdcrumb {
    background: #fbf1ff;
}

.brdcrumb ul {
    display: flex;
    justify-content: center;
}

.brdcrumb ul li a {
    color: #000;
    text-decoration: none;
}

/* BREADCRUMB */

/* Tab */
.casino-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border: 1px solid transparent;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
}

.casino-tab:hover {
    background-color: #f8f9fa;
}

.casino-tab.active {
    background-color: #e8d7f4;
    border-bottom: 4px solid var(--bs-purple-plam) !important;
    color: var(--bs-purple-plam);
    font-weight: 600;
    border: 1px solid transparent;
}

/* Tabs */

/* Input Field */
.prf-int {
    width: 100%;
    display: block;
    padding: 5px 12px;
    background-color: var(--bs-white) !important;
    border-radius: 7px;
    border: 1px solid var(--bs-purple-plam);
}

.prf-int:focus-visible {
    border: 1px solid var(--bs-purple-plam);
    outline: 0 !important;
    box-shadow: 0 0 5px var(--bs-soft-warm);
}

.prf-lbl {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.choose-int {
    width: 120px;
    opacity: 0;
    border-radius: 30px;
    position: absolute;
    top: -3px;
}

.choose-file {
    color: var(--bs-purple-plam-gradient);
    font-weight: 600;
    padding: 5px 20px;
    display: inline-block;
    border: 1px solid var(--bs-purple-plam);
    border-radius: 30px;
}

.curve-input {
    width: 100%;
    display: block;
    padding: 5px 12px;
    background-color: var(--bs-white) !important;
    border-radius: 20px 20px 20px 20px;
    border: 0;
    border-left: 4px solid var(--bs-purple-plam);
    height: 32px;
}

.upload-box {
    height: auto !important;
}

/* Input Field */

.btn-close {
    align-self: flex-start;
    right: 13px;
    top: 13px;
}

.font-big {
    font-size: 35px;
}

.top-border {
    border-top: 3px solid var(--bs-dark-purple);
    border-radius: 12px;
}

/* Content */
.details-page img {
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 15px !important
}

.details-page h2,
.details-page h3,
.details-page h4,
.details-page h5,
.details-page h6 {
    color: var(--bs-washed-black);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2
}

.details-page li {
    color: #555;
    margin: 8px 0;
    padding-left: 5px;
    line-height: 1.5
}

.details-page a,
.details-page li a strong,
.details-page li::marker {
    font-weight: 600;
    color: var(--bs-purple-plam);
}

.details-page strong {
    font-weight: 600
}

.details-page p {
    color: #555;
    line-height: 1.5
}

.details-page table {
    max-width: 880px;
    width: 100%;
    overflow-x: auto;
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid #ddd
}

.details-page {
    word-wrap: break-word;
}

.details-page table td,
.details-page table th {
    padding: 5px 10px;
    border: 1px solid #ddd
}

/* Content */
/* Faq */
.accordion-container {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-button {
    background-color: #fff9f0 !important;
    border: 1px solid #fff9f0 !important;
    /* color: #6c757d !important; */
    font-weight: 500;
    padding: 15px 20px;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: #6C3483 !important;
    color: white !important;
    border-color: #6C3483 !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    background-image: none !important;
    content: "+" !important;
    font-size: 18px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #6C3483;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: "−" !important;
    transform: rotate(0deg) !important;
}

.accordion-button.collapsed::after {
    background-color: #6C3483;
    color: white;
}

.accordion-item {
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-item:last-of-type {
    margin-bottom: 0;
}

.accordion-body {
    background-color: #6C3483;
    color: white;
    padding: 20px;
    border-top: none;
}

.accordion-collapse {
    border-top: none !important;
}

@media (max-width: 768px) {
    .accordion-container {
        margin: 0 10px;
    }

    .accordion-button {
        padding: 12px 15px;
        font-size: 14px;
    }

    .accordion-button::after {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .accordion-body {
        padding: 15px;
        font-size: 14px;
    }
}

/* Home page */
/* Top Rated Card */
.tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.tag.highlight1 {
    background: #e8f5e8;
    color: #2d5a2d;
    box-shadow: 0px 3px 4px 0px #00000033 inset;

}

.tag.highlight {
    background: #FAF6FD !important;
    color: #622683 !important;
    box-shadow: 0px 2px 3px 0px #00000020 inset !important;
}

/* .tag.highlight3 {
    background: #e2e1ff;
    color: #2d2ad9;
    box-shadow: 0px 3px 4px 0px #00000033 inset;
    margin-bottom: 2px;
} */

/* Top Rated Card */

/* New Casino Card */
.new-badge {
    background: linear-gradient(135deg, #ffc800 0%, #ffed4e 100%);
    width: 90px;
    height: 26px;
    transform: rotate(50deg);
    top: 5px;
    right: -29px;
    color: #000000;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* .popular-badge {
    background: linear-gradient(135deg, #6e0000, #ff2200, #990000), radial-gradient(ellipse at 60% 40%, rgba(255, 80, 80, 0.3), transparent 60%);
    width: 100px;
    height: 30px;
    transform: rotate(50deg);
    top: 12px;
    right: -29px;
    color: #fff;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgb(255 18 18 / 40%);
} */

/* New Casino card */

/* Most Visited card */
.casino-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    background-color: white;
}

/* Most Visited Card */

/* Game card */
.game-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card img {
    width: 130px !important;
    height: 90px !important;
    display: block;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108,52,131,.12);
}

.divider-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 35px;
}

.divider-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e6dff0;
    z-index: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-purple-plam);
    color: #fff !important;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 6px 18px;
    min-width: 110px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(108, 52, 131, 0.25);
    transition: all .25s ease;
    z-index: 2;
    text-decoration: none;
}

.play-btn:hover {
    color: #fff !important;
    background: var(--bs-dark-purple);
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 20px rgba(108, 52, 131, 0.35);
}

.play-btn:active {
    transform: translate(-50%, -50%) scale(0.96);
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: left .6s ease;
}

.play-btn:hover::before {
    left: 140%;
}

.game-title {
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

/* Game card */

/* latest Review Card */
.user-icon {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.casino-logo {
    object-fit: cover;
    margin-left: 5px;
}

/* Review card */

.img-card {
    height: 160px;
    width: 100%;
}

/* Casino User review */
.big-icon {
    font-size: 80px;
}

/* Casino user review card */
.casino-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.user-casino-logo {
    width: 94px;
    height: auto;
    background: #000;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 8px;
    text-align: center;
    line-height: 1.1;
    flex-shrink: 0;
}

.casino-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    margin-bottom: 4px;
}

.star-rating {
    color: #ffc107;
    margin-bottom: 8px;
}

.star-rating .fa-star {
    font-size: 14px;
    margin-right: 1px;
}

.star-rating .fa-star.empty {
    color: #e9ecef;
}

.casino-description {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: auto;
}

.title-rating-section {
    flex: 1;
    min-width: 0;
}

@media (max-width: 576px) {
    .casino-card {
        padding: 12px;
    }

    .action-buttons {
        flex-direction: row;
        margin-left: 0;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .casino-title {
        font-size: 18px;
    }
}

.fs-18 {
    font-size: 18px;
}

/* Promo code */
.promo-code-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    width: 100%;
    max-width: 320px;
    border-left: 5px solid var(--bs-purple-plam);
}

.promo-code-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    outline: none;
}

.promo-code-button {
    background-color: var(--bs-purple-plam);
    border: none;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
}

.promo-code-button i {
    color: white;
    font-size: 1rem;
}

/* Promo code */
/* Ribbon Style */
.ribbon {
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: absolute;
    top: -5px;
    right: -5px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 120px;
    padding: 5px 0;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    top: 20px;
    right: -30px;
    font-size: 0.75rem;
}

/* Ribbon Style */

.payment-icons img {
    width: 50px;
    height: 30px;
    margin-right: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
}

.login {
    position: absolute;
    left: 41%;
    top: -25px;
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    text-align: center;
    color: #000000;
    text-shadow: 4px 0px 4px #F5E6C5, 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.modal-header {
    border: 0;
}

.progress-bar {
    background-color: #6C3483;
}

@media (max-width : 991px) {
    .primery-menu {
        color: black;
    }
}

.casino-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ebebeb;
}

/* Game card */
.badge-new {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: yellow;
    color: black;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 20;
}

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
}

.gamecard-img-top {
    height: 180px;
    object-fit: fill;
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.gamecard-body {
    position: relative;
    padding-top: 30px;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 15;
}

.card:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay .game-btn {
    margin: 5px 0;
    width: 70%;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    background: #3E1D4C;
}

.free-ribbon {
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -1px;
}

.free-ribbon span {
    position: absolute;
    display: block;
    width: 109px;
    padding: 1px 0;
    background-color: red;
    color: #fff;
    font-weight: bold;
    text-align: center;
    transform: rotate(-45deg);
    top: 14px;
    left: -30px;
    font-size: 0.75rem;
}

.feature {
    top: -31px;
}

/* Game Card */

/* Game Provider */
.provider-logo-box {
    width: 100%;
    margin: auto;
}

.provider-logo-box img {
    width: 100%;
    max-height: 100px;
    border-radius: 6px;
}

/* News */
.overlay-buttons {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    gap: 4px;
}

.news-icon-btn {
    background: #fff;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0;
    cursor: pointer;
}

/* News */

/* News- details */
.news-card-overlay {
    position: relative;
    border-radius: 12px;
}

.news-card-overlay img {
    width: 100%;
    display: block;
}

.news-card-text-overlay {
    position: absolute;
    bottom: -35px;
    right: 0;
    left: 0;
    margin-inline: auto;
    background-color: white;
    padding: 12px 14px;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 15%);
    max-width: 100%;
    width: 92%;
}

.news-card-text-overlay p {
    margin: 0;
    font-size: 0.85rem;
    color: #000;
    text-align: left;
}

/* News- details */
.interaction-icons {
    font-size: 14px;
    color: #555;
}

.interaction-icons i {
    margin-right: 5px;
}

.interaction-icons span {
    margin-right: 20px;
}

/* News */
.news-icon-btn {
    background: #fff;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0;
    cursor: pointer;
}

.ribbon.premiumbg span {
    background: #6c3483;
    color: #fff;
}

.ribbon.featurebg span {
    background: #2d5a2d;
    color: #fff;
}

.fs-11 {
    font-size: 11px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

/* News */

.likebtn {
    color: red;
    font-size: 11px;
    bottom: 24px;
    right: -28px;
    width: fit-content;
    text-wrap-mode: nowrap;
}

/* Game Detail*/
.game-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-70 {
    width: 70% !important;
}

.w-80 {
    width: 80% !important;
}

.w-90 {
    width: 90% !important;
}

.w-fit {
    width: fit-content;
}

@media (max-width: 1280px) {
    .btncondition {
        font-size: 13px !important;
        padding: 5px 10px !important;
    }
}

@media (max-width: 767px) {

    h1,
    .h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    h2,
    .h2 {
        font-size: 1.4rem;
        line-height: 1.35;
    }

    h3,
    .h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    h4,
    .h4 {
        font-size: 1.1rem;
        line-height: 1.45;
    }

    h5,
    .h5 {
        font-size: 1rem;
        line-height: 1.5;
    }

    h6,
    .h6 {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .fs-1 {
        font-size: 1.6rem !important;
    }

    .fs-2 {
        font-size: 1.4rem !important;
    }

    .fs-3 {
        font-size: 1.25rem !important;
    }

    .fs-4 {
        font-size: 1.1rem !important;
    }

    .fs-5 {
        font-size: 1rem !important;
    }

    .fs-6 {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 992px) {
    .mobileviewmenu {
        flex-direction: column;
    }

    .w-m-100 {
        width: 100% !important;
    }

    .bg-purple-palm {
        background: #6a357d;
    }

    /* Desktop */
    .navbar-nav .nav-link {
        color: #fff;
        font-weight: 500;
    }

    .navbar-nav .nav-link:hover {
        color: #ffdd9a;
    }

    /* Mobile */
    .mobile-menu {
        display: block;
        padding: 14px 18px;
        color: #6a357d;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        font-weight: bold;
    }

    .mobile-menu:hover {
        background: rgba(255, 255, 255, .1);
    }

    .tophomebox img {
        width: 50px;
        height: 50px;
    }
}

.h-fit {
    height: fit-content;
}

.profilesticky {
    background: linear-gradient(282.22deg, rgba(212, 180, 131, 0.2) 32.15%, rgba(212, 180, 131, 0.1) 67.85%);
    border: 1px solid #F5E6C5;
}

.profilesticky .nav-pills .nav-link.active {
    color: white;
    background-color: #6a357d;
}

.profilesticky .nav-pills .nav-link {
    color: black;
    font-weight: 600;
}

.share-referral {
    right: 24px;
    bottom: 6px;
}

.w-lg-60 {
    width: 60%;
}

@media (max-width: 992px) {
    .w-lg-60 {
        width: 100%;
    }
}

.top-10 {
    top: 10%;
}

.bottomstickybanner {
    position: fixed;
    bottom: 80px;
    right: 40px;
    z-index: 99999
}

.bottomstickybanner .close-btn {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    padding: 0;
    line-height: 0;
    background-color: #fff0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    right: -18px;
    top: -10px
}

.bottomstickybanner img {
    box-shadow: 0 0 10px #aaa;
    border-radius: 15px;
    width: 200px;
    height: 200px;
}

@media (max-width:1350px) {
    a.nav-link {
        font-size: 14px
    }
}

@media (max-width:767px) {
    .bottomstickybanner img {
        height: 90px;
        width: 90px;
    }

    .bottomstickybanner {
        bottom: 85px;
        right: 47px;
    }

    .bottomstickybanner .close-btn {
        font-size: 22px;
        right: -1px
    }
}

.skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.news-box .likebtn {
    bottom: -10px;
}

.pr-box .likebtn {
    bottom: 20px;
}

.games-like .likebtn {
    bottom: 3px;
    right: 4px;
}

.heading {
        font-size: 14px;
        font-weight: 600;
    }

    .form-check-input {
        width: 20px;
        height: 20px;
        /* background: linear-gradient(107.97deg, #FFFFFF 40%, rgba(240, 227, 247, 0.5) 99.99%); */
        border: 1px solid rgba(108, 52, 131, 0.5);
    }

    .form-check-input:checked {
        background-color: #6C3483;
        border-color: #6C3483;
    }

    .golden-btn {
        padding: 8px 14px;
        background: #E0BC74;
        border-radius: 12px;
        border: 1px;
        color: #FFFFFF;
        font-weight: 600;
        box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.5);
    }

    .add {
        width: 24px !important;
        height: 24px;
    }

    .model {
        display: flex;
        justify-content: space-between;
    }

    .selectmultiple .select2-container--default .select2-selection--multiple {
        width: 100%;
        display: block;
        padding: 1px 5px;
        background-color: var(--bs-white) !important;
        border-radius: 20px 20px 20px 20px;
        border: 0;
        border-left: 4px solid var(--bs-purple-plam);
    }

    @media (max-width : 470px) {
        .model {
            flex-direction: column;
        }
    }

    .ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-focused,
    .ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-blurred {
        height: 200px !important;
        overflow: auto;
    }

    .method img {
        max-height: 50px !important;
    }

    /* Fixed height container with vertical scroll */
    .select2-container--default .select2-selection--multiple {
        display: flex !important;
        flex-wrap: wrap !important;
        min-height: 38px !important;
        max-height: 38px !important;
    }

    /* rendered area also scrolls */
    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px;
        padding: 0px 6px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        max-height: 38px !important;        /* slightly less than container */
        width: 100%;
        margin-bottom: 0 !important;
    }

    /* tags stay on one line each */
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        margin-top: 2px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* thin styled scrollbar */
    .select2-container--default .select2-selection--multiple::-webkit-scrollbar {
        width: 4px;
    }
    .select2-container--default .select2-selection--multiple::-webkit-scrollbar-track {
        background: transparent;
    }
    .select2-container--default .select2-selection--multiple::-webkit-scrollbar-thumb {
        background-color: #b0b0b0;
        border-radius: 4px;
    }

    .select2-search.select2-search--inline {
        line-height: normal;
    }

    .uploaded-ss {
        height: 70px !important;
    }

    .glimpse-img {
        height: 340px !important;
    }

    .light-bg {
        background: #FAF6FD;
    }

    .thread-box {
        background: #FDFBF5;
        border: 1px solid #F6EEDB;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
    }

    .thread-circle {
        width: 56px;
        height: 56px;
        background: linear-gradient(90.09deg, #F9E29C 0.08%, #E0B859 40.02%, #C89E37 69.97%, #BC9026 99.92%);
    }

.stroke {
    border: 1px solid rgba(108, 52, 131, 0.6);
}

.provider-box {
    background: linear-gradient(107.97deg, #FFFFFF 40%, rgba(240, 227, 247, 0.5) 99.99%);
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.certification {
    background: linear-gradient(90deg, #1A6B4A 0%, #0D4A34 100%);
    color: #D2FFED;
}

.certification2 {
    background: linear-gradient(90deg, #E8F5EE 0%, #C0E8D5 100%);
    color: #085041;
}

.new-pagination .page-link {
    color: #6C3483 !important;
}

.new-pagination .page-item.active .page-link {
    background-color: #6C3483 !important;
    border-color: #6C3483 !important;
    color: white !important;
}

.new-pagination .page-item:first-child .page-link,
.new-pagination .page-item:last-child .page-link {
    color: var(--bs-purple-plam);
    background: #f1f1f1;
}

.casino {
    width: 280px !important;
    height: 140px;
}

.star {
    width: 16px !important;
    height: 16px;
}

.social {
    width: 30px !important;
    height: 30px;
}

.socials {
    justify-content: end;
    margin-top: 8px;
}

.menu {
    border: 1px solid #F5E6C5;
}

.jump {
    text-decoration: none;
    font-weight: 600;
    color: black;
    font-size: 18px;
    padding-block: 4px;
}

.jump i {
    color: #000000;
    width: 24px !important;
    height: 24px;
}

.jump-active {
    text-decoration: none;
    font-weight: bold;
    color: white;
    font-size: 18px;
    padding-block: 4px;
    border-radius: 16px;
    background-color: #5B2C6F;
}

.jump-active i {
    color: white;
    width: 24px !important;
    height: 24px;
}

.games {
    padding: 5px;
    background: #FFFFFF;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    text-align: center;
}

.provider {
    width: 24px !important;
    height: 24px;
}

.provider_name {
    font-size: 16px;
    font-weight: bold;
    white-space: pre-line;
}

.bonus {
    border: 1px solid rgba(202, 202, 202, 0.3);
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.exclusive {
    padding: 3px 10px;
    background: linear-gradient(90deg, #C49000 0%, #FFE4B5 100%);
    border-radius: 30px;
    line-height: 1.2;
}

.diamond {
    width: 20px !important;
    height: 20px;
}

.exclusive span {
    font-size: 12px;
    font-weight: 700;
}

.free {
    padding: 4px 12px;
    background: rgba(112, 197, 226, 0.1);
    box-shadow: inset 0px 3px 4px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.free span {
    font-size: 12px;
    font-weight: 700;
    color: #1F5E73;
}

.welcome {
    padding: 4px 12px;
    background: rgba(247, 231, 206, 0.3);
    box-shadow: inset 0px 3px 4px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.welcome span {
    font-size: 12px;
    font-weight: 700;
    color: #A26769;
}

.method {
    padding: 8px;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
}

.block {
    padding-inline: 5px;
    margin-top: 12px;
}

.currency {
    border: 1px solid;
    border-image: linear-gradient(31deg, rgba(108, 52, 131, 0.3) 0%, rgba(108, 52, 131, 0.8) 100%) 1;
    padding: 4px 20px;
    text-align: center;
}

.currency span {
    color: #3E1D4C;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.feedback {
    width: 20px !important;
    height: 20px;
}

 @media (max-width : 991px) {
    .owner {
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .owner_details {
        margin-top: 12px;
    }
}

@media (max-width : 767px) {
    .details {
        text-align: center;
    }

    .rating {
        justify-content: center;
    }

    .owner {
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .owner_details {
        margin-top: 12px;
    }
}

.dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 8px;
    z-index: 100;
    width: max-content;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.filter-toggle-btn i {
    font-size: 18px;
}

/* Filter Panel */
.filter-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-top: 0.5rem;
    animation: slideDown 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1296px;
    top: 100%;
}

.filter-panel.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Form */
.filter-form-group {
    margin-bottom: 0;
}

.filter-form-group select,
.filter-form-group input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-form-group select:focus,
.filter-form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1);
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
}

.search-input-group input {
    flex: 1;
}

.search-btn {
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background: var(--hover-bg);
    border-color: #d1d5db;
}

.search-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .nav-btn {
        padding: 0.75rem 0.75rem;
        font-size: 13px;
    }

    .filter-toggle-btn {
        padding: 0.75rem 1rem;
        font-size: 13px;
        margin-left: 0.5rem;
    }

    .filter-panel {
        padding: 1rem;
    }

    .filter-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Accessibility */
.filter-toggle-btn:focus,
.search-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.stats {
    text-transform: capitalize;
    letter-spacing: 2.4px;
    font-size: 26px;
    font-weight: bold;
}

.number {
    font-size: 50px;
    line-height: 50px;
    font-weight: bolder;
}

.quoted {
    font-size: 100px;
    line-height: 100px;
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hand {
    height: 24px !important;
}

.section-padding {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.quote {
    width: 64px !important;
    height: 64px;
}

.top {
    width: fit-content;
    margin-inline: auto;
}

@media (max-width : 768px) {
    .value {
        width: 64px !important;
        height: 64px;
    }

    .trust {
        width: 80px !important;
        height: 80px;
    }

    .number {
        font-size: 44px;
        line-height: 44px;
        font-weight: bolder;
    }
}

.user {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover;
}
