/*
==========================
        MAIN ROOT
==========================
*/
:root {
    --sidebar-width: 280px;

    --logo-gradient: linear-gradient(to right, var(--color-primary), var(--color-ordinary));
    --primary-gradient: linear-gradient(to right, var(--color-primary), var(--color-ordinary));

    --bg-primary: hsla(238, 49%, 12%, 1);
    --bg-primary-light: rgba(28, 29, 64);
    --bg-light: rgba(0, 201, 255, 0.2);

    --color-primary: #00c9ff;
    --color-ordinary: #92fe9d;
    --color-dark: #0f0c29;
    --color-white: #fff;
    --color-white-muted: #e0e0ff;
    --color-light: rgba(255, 255, 255, 0.1);
    --color-muted: rgba(255, 255, 255, 0.6);

    --color-green: #28a745;
    --color-red: #dc3545;

    --logo-shadow: 0 0 18px rgba(0, 201, 255, 0.6);
}

/* Universal Style */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-white);
    padding: 0;
    margin: 0;
    background: hsl(33.91deg 25.84% 82.55%) !important;
    overflow-x: auto;
    position: relative;
    /* Ensures ::before is positioned relative to body */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: radial-gradient(#fc7900 1px, #ded9cb 1px);
    background-size: 10px 10px;
    background-position: 0 0, 10px 10px;
    z-index: -1;
    /* Places ::before behind body content */
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    /*box-shadow: inset 0 0 5px #D4AF37;*/
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#e93c04, #ff7a00);
    border-radius: 5px;
}


* {
    text-decoration: none !important;
    list-style: none !important;
}

.main__body__wrap .left__body__wrap {
    width: 288px;
}

.main__body__wrap .right__body__wrap {
    width: calc(100% - 288px);
}

ul {
    padding-left: 0;
}


@media (max-width: 992px) {
    .left__body__wrap {
        display: none !important;
    }

    .main__body__wrap .right__body__wrap {
        width: 100%;
    }
}

@media (max-width: 485px) {
    section>.container-fluid {
        padding: 0 !important;
    }
}






/* --- SITE LOGO STARTS --- */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF8C7A, #FFD700);
    /* Light radish orange to gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 108, 92, 0.5);
    /* Soft radish-orange glow */
}

.logo-img i {
    font-size: 24px;
    color: #333333;
    /* Charcoal */
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffd504 40%, #d5d0a5 60%);
    /* Gold to muted beige */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: -1px -2px 0px rgba(102, 75, 75, 0.4);
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
}

/* --- SITE LOGO ENDS --- */

/* --- SIDEBAR CSS STARTS ---  */
.gaming-sidebar {
    background: #ded9cb;
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ff7a00;
}

.gaming-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/casino2.png) repeat;
    background-size: 100px 100px;
    z-index: -1;
    opacity: 0.2;
}

.sidebar-header {
    padding: 25px 15px;
    text-align: center;
    border-bottom: 1px solid var(--color-light);
    position: relative;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff7a00 50%, transparent);
}

.sidebar-menu {
    padding: 15px 10px;
    flex: 1;
    overflow-y: auto;

}

.menu-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 10px 8px;
    color: transparent;
    background: linear-gradient(90deg, #FFC107 40%, #FFC107 60%);
    background-clip: text;
    text-shadow: 0 0px 0px #e93c04;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 4px;
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s;
}

.menu-link:hover:not(.active) {
    background: rgba(233, 60, 4, 0.2);
    color: var(--color-white);
    transform: translateX(5px);
}

.menu-item:hover a {
    color: var(--text-white);
}

.menu-item.active {
    background: rgb(252 121 0);
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #F44336;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.menu-item.active .menu-link {
    color: var(--color-white);
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #e64c4c;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    border-radius: 6px;
}

.menu-item.active .menu-icon {
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    color: #fff !important;
}

.menu-text {
    flex: 1;
    white-space: nowrap;
}

.menu-badge {
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 8px;
}

.btn-group {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--color-light);
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    color: var(--color-dark);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.action-btn:hover {
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    color: #6c757d;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}


/* Main Content */
.main-content {
    flex: 1;
    padding: 30px;
    margin-left: 260px;
    min-height: 100vh;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .sidebar-header {
        padding: 20px 10px;
    }

    .menu-link {
        padding: 8px 10px;
        font-size: 13px;
    }

    .menu-icon {
        margin-right: 10px;
    }

    .main-content {
        margin-left: 220px;
    }
}

@media (max-width: 769px) {
    .main-content {
        margin-left: 260px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 15px;
    }

    .main-content {
        margin-left: 240px;
    }
}

/* --- SIDEBAR CSS ENDS --- */






/* --- HEADER CSS STARTS --- */
.wallet-icon[title="Deposit"] i {
    color: var(--color-green);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.wallet-icon[title="Withdraw"] i {
    color: var(--color-red);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Glassmorphism Header */
.glass-header {
    background: rgb(222 212 199) !important;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/*.glass-header::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 1px;*/
/*    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);*/
/*}*/

.glass-input {
    background: transparent !important;
    border: 1px solid #D4AF37 !important;
    color: var(--text-color) !important;
    backdrop-filter: blur(5px);
    padding: 8px;
    transition: all 0.3s ease;
    width: 200px;
}

.search__form {
    position: relative;
}

.search-icon-btn {
    position: absolute;
    right: 4px;
    padding: 6px;
    border: none;
    border-radius: 8px;
    color: var(--text-color);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
}

.search-icon-btn:hover {
    color: #e93c04;
}

.glass-avatar,
.glass-avatar-lg {
    background: linear-gradient(135deg, #FFC107, #FFFACD);
    border: 3px double #D4AF37;
    border-radius: 50%;
    padding: 3px;
    display: inline-block;
}

.glass-dropdown {
    background: rgb(222, 212, 199, 0.93);
    border: 1px solid #D4AF37;
    text-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.5),
        0.1em 0.1em 0.2em rgba(0, 0, 0, 0.4),
        0.15em 0.15em 0.3em rgba(0, 0, 0, 0.3);
}

.glass-menu-item {
    border-radius: 6px;
    padding: 8px 12px;
    margin: 3px 0;
    color: var(--text-color);
    transition: background 0.3s ease;
}

.glass-menu-item:hover {
    background: linear-gradient(to bottom, #ff7a00, #e93c04) !important;
    color: var(--text-color);
}

.logout-btn {
    background: var(--color-red) !important;
    max-width: max-content;
    color: white;
    border-radius: 5px;
    padding: 4px 10px !important;
}
.logout-btn:hover {
    color: white;
}

.glass-divider {
    opacity: 0.5;
    background: #D4AF37;
    height: 1px;
}

.glass-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--secondary-accent)) !important;
    backdrop-filter: blur(5px);
    /*border: 1px solid var(--color-primary) !important;*/
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.glass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.glass-btn-outline {
    background: rgba(255, 255, 255, 0.05) !important;
    /*border: 1px solid var(--color-primary) !important;*/
    color: var(--color-primary);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.glass-btn-outline:hover {
    background: var(--menu-item-hover) !important;
}

.glass-wallet {
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius) !important;
    color: var(--text-color);
}

.glass-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    /*border: 1px solid var(--color-primary);*/
    border-radius: 8px;
    padding: 6px;
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
    color: var(--text-color);
}

.glass-icon:hover {
    transform: translateY(-2px);
}

.glass-mobile-menu span {
    background: var(--text-color);
    height: 2px;
    width: 24px;
    display: block;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.copy-id-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-color);
}

.copy-id-btn:hover {
    transform: scale(1.1);
    color: #e93c04 !important;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
}

.header-section {
    width: 100%;
    background-color: var(--bg-primary-light);
    padding: 20px 0 20px;
    position: sticky;
    top: 0;
    z-index: 9;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/casino2.png) repeat;
    background-size: 100px 100px;
    z-index: -1;
    opacity: 0.2;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff7a00 50%, transparent);
}

.header-section .header-wrapper .logo-menu {
    display: none;
}

.header-section .header-wrapper .logo-menu img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.9s;
}

.header-wrapper .main-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -2px;
    display: none;
}

.header-wrapper .main-menu li {
    border-radius: 5px;
    padding: 4px;
    transition: all 0.4s;
    position: relative;
    background: linear-gradient(to right, #e93c04, #ff7a00);
}

.header-wrapper .main-menu li:hover {
    background: rgb(252 121 0);
    transition: all 0.4s;
}

.header-wrapper .main-menu li a {
    transition: all 0.3s;
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 9px;
}

.header-wrapper .main-menu li a span:nth-child(2) {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.5),
        0.1em 0.1em 0.2em rgba(0, 0, 0, 0.4),
        0.15em 0.15em 0.3em rgba(0, 0, 0, 0.3);
}

.header-wrapper .main-menu li a .icon {
    margin-top: -3px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff !important;
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
}

.header-wrapper .main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.header-wrapper .main-menu .cmn-grp {
    display: flex;
    align-items: center;
    gap: 20px;
    display: none;
}

.header-wrapper .main-menu .cmn-grp:hover {
    cursor: pointer;
}

.header-wrapper .mneu-btn-grp .language__wrap {
    position: relative;
}

.header-wrapper .mneu-btn-grp .language__wrap .flag {
    position: absolute;
    top: 7px;
    left: 0;
}

.header-wrapper .mneu-btn-grp .nice-select {
    padding: 8px 40px 9px 44px;
}

.header-wrapper .search__form form {
    position: relative;
}

.header-wrapper .search__form form input {
    width: 280px;
    border-radius: 5px;
    padding: 10px;
    outline: none;
}

.header-wrapper .search__form form .icon {
    position: absolute;
    left: 10px;
    top: 9px;
}

.header-wrapper .search__form form ::placeholder {
    color: #474242;
}

.header-wrapper .lang {
    opacity: 0;
}

.profile-dropdown .dropdown-toggle {
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 600;
}

.profile-dropdown .dropdown-menu a {
    font-size: 14px;
    padding: 6px 12px;
}

.profile-dropdown .dropdown-menu a:hover {
    /*background-color: #1A2030;*/
}

.wallet-box {
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    border-radius: 5px !important;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.wallet-box .wallet-icon img {
    width: 25px;
    height: 25px;
    opacity: 0.9;
    transition: transform 0.2s ease;
}

.wallet-box .wallet-icon:hover img {
    transform: scale(1.1);
}

.header-icon-sm img {
    width: 25px;
    height: 25px;
    opacity: 0.9;
    transition: transform 0.2s ease;
}

@media (min-width: 991px) {
    .langDisplay {
        display: none !important;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    .header-wrapper .main-menu li {
        padding-left: 20px;
    }

    .header-wrapper .main-menu li a {
        font-size: 16px;
    }

    .header-wrapper .mneu-btn-grp .cmn--btn {
        font-size: 16px;
        padding: 8px 20px 11px;
    }
}


@media (max-width: 992px) {
    .menuDisplay {
        display: none !important;
    }

    .header-section {
        padding: 10px 0;
    }

    .header-section .header-wrapper .language__wrap {
        position: relative;
    }

    .header-section .header-wrapper .language__wrap .flag {
        position: absolute;
        top: 7px;
        left: 0;
    }

    .header-section .header-wrapper .nice-select {
        padding: 8px 40px 9px 44px;
    }

    .header-section .header-wrapper .logo-menu {
        display: block;
    }

    .header-section .header-wrapper .lang {
        opacity: 1;
    }

    .glass-header {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .glass-input {
        width: 150px;
    }

    .glass-input:focus {
        width: 180px;
    }

    .main-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        z-index: 999;
        padding: 8px;
        overflow-y: auto;
        border-radius: 10px;
        background: #DED4C7;
        transform-origin: top;
        display: inline !important;
        margin-top: 8px 0 !important;
        max-height: calc(100vh - 130px);
    }

    .main-menu:not(.active) {
        display: none !important;
        transition: all 2s;
    }

    .main-menu li {
        width: 100%;
        border-radius: 2px;
        padding-left: 10px !important;
        margin-right: 0 !important;
        margin-bottom: 7px;
    }

    .main-menu li a {
        display: block;
        padding: 8px 10px 9px;
        font-size: 17px;
    }

    .main-menu li .sub-menu {
        margin: 0px 10px 15px 20px !important;
    }

    .main-menu li .sub-menu li a {
        padding: 8px 15px !important;
    }

    .main-menu li .sub-menu li .sub-two {
        position: static !important;
        width: 100% !important;
        padding: 0 10px 20px 30px;
    }

    .main-menu li .sub-menu li .sub-two li a {
        display: block;
    }

    .main-menu .active a {
        color: var(--color-white);
    }

    .main-menu .cmn-grp {
        display: block !important;
        align-items: center;
        gap: 20px;
        padding-left: 0 !important;
        border: none;
    }

    .main-menu .cmn-grp .cmn--btn {
        padding: 8px 25px 11px;
        font-size: 16px;
        display: inline-block;
    }

    .main-menu .cmn-grp .cmn--btn2 {
        padding: 8px 25px 8px;
        display: inline-block;
    }

    .header-bar {
        position: relative;
        width: 31px;
        height: 20px;
    }

    .header-bar span {
        position: absolute;
        width: 100%;
        height: 2px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: var(--color-white);
    }

    .header-bar span:first-child {
        top: 0;
        background: var(--color-white);
    }

    .header-bar span:nth-child(2) {
        top: 44%;
        background: var(--color-white);
    }

    .header-bar span:last-child {
        bottom: 0;
        background: var(--color-white);
    }

    .header-bar.active span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }

    .header-bar.active span:nth-child(2) {
        opacity: 0;
    }

    .header-bar.active span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }

    .header-bar:hover {
        cursor: pointer;
    }

    .header-wrapper {
        flex-wrap: wrap;
    }

    .header-wrapper .main-menu {
        display: block;
    }

    .header-wrapper .mneu-btn-grp {
        display: none;
    }

    .header-wrapper .search__form {
        display: none;
    }

    .header-wrapper .dropShow .search__form {
        display: block;
    }
}



@media (max-width: 769px) {

    /*.logo-menu {*/
    /*    width: 120px;*/
    /*}*/
    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-img i {
        font-size: 16px;
    }

    .logo-text {
        font-size: 16px;
    }

    .langSelect,
    .asHide {
        display: none;
    }

    .asBlown img {
        width: 32px;
        height: 32px;
    }

    .asBlown {
        background-color: #17223b;
        padding: 6px;
        border-radius: 6px;
    }

    .wallet-box {
        font-size: 12px !important;
        padding: 5px 8px !important;
    }

    .language__wrap.cusLang {
        background-color: #17223b;
        padding: 2px;
        border-radius: 60px;
    }

    .search__form.searchShow {
        display: flex !important;
    }

    .language__wrap.cusLang img {
        margin-left: 10px;
    }

    .overlay-btn {
        padding: 7px 14px 7px;
        font-size: 16px;
        line-height: 18px;
        font-weight: 200;
    }

    .game-card-overlay {
        display: none !important;
    }
}

@media (max-width: 530px) {
    /*.logo-menu {*/
    /*    width: 100px;*/
    /*}*/

    .glass-input {
        width: 120px;
    }

    .glass-input:focus {
        width: 150px;
    }

    .search__form.searchShow input {
        width: 100px !important;
    }

    .language__wrap.cusLang .flag img {
        width: 25px;
    }

    .nice-select {
        font-size: 12px !important;
        padding: 8px 30px 9px 40px !important;
    }

    .nice-select .list {
        background: transparent !important;
    }

    .nice-select .list li {
        padding: 8px;
        height: 20px;
        display: flex;
        justify-content: start;
        align-items: center;
        align-content: center;
        background-color: #18233f;
    }

    .wallet-box .wallet-icon img {
        width: 20px;
        height: 20px;
    }

    .search__form form .icon {
        display: flex;
        align-items: center;
    }

    .search__form form .icon img {
        width: 18px;
        height: 18px;
        left: 5px;
        bottom: 5px;
    }

    .header-wrapper .search__form form input {
        font-size: 12px;
        padding: 8px 0 13px 35px;
    }

    .header-icon-sm img {
        width: 25px;
        height: 25px;
    }

    .header-bar {
        width: 20px !important;
    }

    .overlay-btn {
        padding: 2px 5px 2px;
        font-size: 12px;
        line-height: 10px;
        font-weight: 200;
    }

    .main-menu li {
        padding: 5px;
    }

    .main-menu li a {
        padding: 5px;
    }
}

/* --- HEADER CSS ENDS --- */










/*--- SAWAL ALERT CSS STARTS --- */
.swal2-toast {
    border-radius: 12px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 var(--color-light);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    padding: 1rem;
    width: 380px;
    max-width: 90%;
}

.swal2-container.swal2-top-end {
    padding: 20px;
}

.swal2-close {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-light);
    position: absolute;
}

.swal2-close:hover {
    transform: scale(1.1) rotate(90deg);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
}

.owl-nav {
    display: none;
}

.alert-container {
    text-align: left;
    padding: 5px;
    position: relative;
    z-index: 1;
}

.alert-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, #6A11CB 0%, #2575FC 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
    z-index: 2;
}

.alert-image-container {
    position: relative;
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-height: 120px;
}

.alert-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.alert-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    height: 40%;
    border-radius: 0 0 10px 10px;
}

.alert-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 15px 0 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.alert-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    line-height: 1.4;
}

.alert-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--color-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hero-text-white);
    border: 1px solid #D4AF37;
    margin-bottom: 10px;
}

.alert-progress {
    height: 3px;
    width: 100%;
    background: var(--color-light);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.alert-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #ff7a00, #e93c04);
    border-radius: 5px;
    animation: progressAnimation 8s linear forwards;
}

/* Styles for Coming Soon indicator */
.coming-soon-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 10px;
}

.coming-soon-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

@keyframes progressAnimation {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Responsive adjustments */
@media (max-width: 769px) {
    .swal2-toast {
        width: 320px;
        padding: 0.8rem;
    }

    .alert-title {
        font-size: 1.1rem;
    }

    .alert-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .swal2-toast {
        width: 280px;
        padding: 0.7rem;
    }

    .alert-title {
        font-size: 1rem;
    }

    .alert-description {
        font-size: 0.8rem;
    }

    .alert-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .alert-image-container {
        max-height: 100px;
    }
}

/*--- SAWAL ALERT CSS ENDS --- */













/* --- HERO CSS STARTS --- */
:root {
    /* Hero Font Colors */
    --hero-text-white: var(--color-white);
    --hero-text-light: var(--color-white-muted);
    --hero-text-dark: #111;
    --hero-badge-text: var(--color-primary);
    --hero-title-gradient: var(--logo-gradient);
    --hero-description-color: rgba(224, 224, 255, 0.8);
    /* Hero BGs */
    --hero-card-bg: var(--bg-primary-light);
    --hero-badge-bg: var(--bg-light);
    --hero-badge-border: var(--color-primary);
    --hero-bal-btn-bg: var(--logo-gradient);
    --hero-balance-btn-shadow: var(--bg-light);
    --hero-balance-btn-hover-shadow: rgba(0, 201, 255, 0.4);
    --hero-terms-btn-bg: var(--color-light);
    --hero-terms-btn-border: rgba(255, 255, 255, 0.2);
    --hero-terms-btn-hover-bg: rgba(255, 255, 255, 0.2);
    /* Nav Btns */
    --hero-nav-btn-bg: linear-gradient(to right, #00c6ff, #0072ff);
    --hero-nav-btn-border: var(--bg-primary);
    --hero-nav-btn-hover-bg: #0072ff;
    --hero-pagination-bullet: rgba(255, 255, 255, 0.3);
    --hero-pagination-bullet-active: var(--logo-gradient);
}

#home.hero-section .hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Carousel Container */
#home.hero-section .hero-container .hero-carousel {
    padding: 2rem 0 0;
}

/* Swiper Wrapper */
#home.hero-section .hero-container .hero-carousel .swiper-wrapper {
    margin-bottom: 20px;
    padding: 0.5rem 0;
}

/* Hero Card Styles */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card {
    position: relative;
    border-radius: 18px;
    padding: 2rem;
    color: var(--hero-text-light);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* Card Gradient Background */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    background: linear-gradient(#e93c04, #ff7a00);
    z-index: 1;
}

#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-svg {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    opacity: 0.20;
    background-repeat: repeat-x;
    /* mix-blend-mode: overlay; */
    background-size: 50% 100%;
    animation-name: arrowAnimation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    z-index: 2;
    animation-timing-function: linear;
    background-image: url(../img/banner/arrows.png);
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
    border-radius: 18px;
}

@keyframes arrowAnimation {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: 0px center;
    }
}

@keyframes blinkHero {
    0% {
        filter: brightness(0.7);
    }

    50% {
        filter: brightness(1.1);
    }

    100% {
        filter: brightness(0.7);
    }
}


/* Card Pattern Image */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-pattern {
    position: absolute;
    top: -25px;
    right: 0;
    width: 180px;
    height: 100%;
    min-height: 318px;
    z-index: 2;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

/*#home.hero-section .hero-container .hero-carousel .swiper-slide.swiper-slide-active .card-pattern,*/
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card:hover .card-pattern {
    filter: brightness(1);
}

/* Text Content Container */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .text-content {
    position: relative;
    z-index: 3;
}

/* Badge Styles */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--hero-terms-btn-bg);
    backdrop-filter: blur(5px);
    border: 1px solid #D4AF37;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--hero-text-light);
}

/* Card Title */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: transparent;
    background: linear-gradient(90deg, #e93c04 40%, #e93c04 60%);
    background-clip: text;
    text-shadow: 0 -3px 0px #FFC107;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Card Description */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-description {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.5),
        0.1em 0.1em 0.2em rgba(0, 0, 0, 0.4),
        0.15em 0.15em 0.3em rgba(0, 0, 0, 0.3);
}

/* Button Group */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-btn-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Button Styles */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-btn i {
    font-size: 0.9rem;
}

/* Balance Button */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .balance-btn {
    background: linear-gradient(135deg, #FFC107, #FFFACD);
    color: var(--hero-text-dark);
}

#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .balance-btn:hover {
    color: var(--hero-text-white);
    background: linear-gradient(#FFD700, #FFFACD 0%, #FFD700 100%);
    box-shadow: 0 4px 15px #FFD700;
}

/* Terms Button */
#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .terms-btn {
    background: var(--hero-terms-btn-bg);
    backdrop-filter: blur(5px);
    color: #fff !important;
    border: 1px solid #D4AF37;
}

#home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .terms-btn:hover {
    background: var(--hero-terms-btn-hover-bg);
    color: var(--hero-text-white);
}

/* Navigation Buttons */
#home.hero-section .hero-container .cusPrevForHero,
#home.hero-section .hero-container .cusNextForHero {
    position: absolute;
    width: 45px;
    height: 45px;
    display: flex;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 7;
    color: #000;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    border: 5px solid #ded6c9;
}

#home.hero-section .hero-container .cusNextForHero:hover,
#home.hero-section .hero-container .cusPrevForHero:hover {
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    color: #fff;
}

#home.hero-section .hero-container .cusPrevForHero {
    top: 45%;
    left: -20px;
}

#home.hero-section .hero-container .cusNextForHero {
    top: 45%;
    right: -20px;
}

/* Navigation Button Decorations */
#home.hero-section .hero-container .cusPrevForHero::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 105%;
    background-color: transparent;
    z-index: 9;
    right: 0px;
    border-radius: 88px 0 0 0;
    box-shadow: -10px 0px 0 0 #ded6c9;
}

#home.hero-section .hero-container .cusPrevForHero::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 105%;
    background-color: transparent;
    z-index: 9;
    right: 0px;
    border-radius: 0 0 0 88px;
    box-shadow: -10px 0px 0 0 #ded6c9;
}

#home.hero-section .hero-container .cusNextForHero::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 105%;
    background-color: transparent;
    z-index: 9;
    left: 0px;
    border-radius: 0 88px 0 0;
    box-shadow: 10px 0px 0 0 #ded6c9;
}

#home.hero-section .hero-container .cusNextForHero::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 105%;
    background-color: transparent;
    z-index: 9;
    left: 0px;
    border-radius: 0 0 88px 0;
    box-shadow: 10px 0px 0 0 #ded6c9;
}

/* Pagination Styles */
#home.hero-section .hero-container .swiper-pagination {
    position: relative;
    width: auto;
}

#home.hero-section .hero-container .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    opacity: 1;
    transition: all 0.3s ease;
}

#home.hero-section .hero-container .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background: linear-gradient(#e93c04, #ff7a00);
}

/* Responsive Breakpoints */
@media (max-width: 1025px) {
    #home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card {
        min-height: 240px;
        padding: 1.5rem;
    }

    #home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-pattern {
        width: 150px;
        min-height: 268px;
    }
}

@media (max-width: 769px) {
    #home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card {
        min-height: 240px;
        padding: 1rem;
    }

    #home.hero-section .hero-container .hero-carousel .swiper-slide.swiper-slide-active .hero-card .card-pattern {
        animation: 2s infinite blinkHero ease-in-out;
    }

    #home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-title {
        font-size: 1.3rem;
    }

    #home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-description {
        font-size: 0.85rem;
        max-width: 60%;
    }

    #home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    #home.hero-section .hero-container .cusPrevForHero,
    #home.hero-section .hero-container .cusNextForHero {
        display: none;
    }
}

@media (max-width: 465px) {}

@media (min-width: 769px) {
    #home.hero-section .hero-container .hero-carousel .swiper-slide {
        width: calc(50% - 12px);
    }

    #home.hero-section .hero-container .swiper-pagination {
        display: none;
    }
}

@media (min-width: 992px) {
    #home.hero-section .hero-container .hero-carousel .swiper-slide {
        width: calc(33.333% - 13.33px);
    }
}

@media (min-width: 1300px) {
    #home.hero-section .hero-container .hero-carousel .swiper-slide .hero-card .card-description {
        max-width: 60%;
    }
}

@media (min-width: 1200px) {
    #home.hero-section .hero-container .hero-carousel .swiper-slide {
        width: calc(25% - 15px);
    }
}

/* HERO SECTION CSS ENDS */










/*---- MARQUEE CSS STARTS ----*/
:root {
    --marquee-text-color: var(--color-white-muted);
    --marquee-border: #3a3a70;
}

.announcement-bar {
    background: linear-gradient(135deg, #FFC107, #FFFACD, #c29201);
    color: var(--marquee-text-color);
    padding: 10px;
    margin: 12px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #d4b34a94;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: scroll-left 25s linear infinite;
    will-change: transform;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    padding-right: 50px;
    flex-shrink: 0;
    color: #e93c04;
}

@media(max-width: 485px) {
    .announcement-bar {
        margin: 0;
    }
}

/* --- MARQUEE CSS ENDS ---  */









/* --- PREMIUM WINNERS CSS STARTS ---  */
.premium-winners {
    --premium-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --premium-silver: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    --premium-bronze: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
    --premium-dark: #0F1020;
    --premium-darker: #0A0B16;
    --premium-accent: #4A3AFF;
    --premium-text: var(--color-white);
    --premium-text-light: rgba(255, 255, 255, 0.8);
    --premium-text-lighter: var(--color-muted);
    --premium-card-bg: linear-gradient(152deg, #1A1B35 0%, #131428 100%);
    --premium-card-border: rgba(74, 58, 255, 0.2);
    --premium-card-hover: linear-gradient(152deg, #23244B 0%, #191A38 100%);
    --premium-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --premium-glow: rgba(74, 58, 255, 0.1);
    --verified-badge: #039487;
    --live-badge: #ff1e1e;
}

.premium-winners .section-header {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid 1px solid #d4b34a94;
}

.premium-winners .animated-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--premium-accent);
    opacity: 0.6;
    animation: cornerFlow 8s infinite linear;
}

.premium-winners .animated-corner.top-left {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
    animation-delay: 0s;
}

.premium-winners .animated-corner.top-right {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
    animation-delay: 2s;
}

.premium-winners .animated-corner.bottom-left {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
    animation-delay: 4s;
}

.premium-winners .animated-corner.bottom-right {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
    animation-delay: 6s;
}

@keyframes cornerFlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

.premium-winners .icon-wrapper i {
    font-size: 28px;
    background: linear-gradient(to left, #e93c04, #ff7a00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-winners .section-title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: transparent;
    background: linear-gradient(90deg, #FFC107 40%, #FFC107 60%);
    background-clip: text;
    text-shadow: 0 0px 0px #e93c04;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.premium-winners .title-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--premium-accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.premium-winners .section-heading:hover .title-underline {
    transform: scaleX(1);
}

.premium-winners .status-badge {
    background: rgba(255, 46, 46, 0.15);
    border: 1px solid var(--live-badge);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    font-size: 12px;
}

.premium-winners .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--live-badge);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 rgba(255, 46, 46, 0.7);
}

.premium-winners .badge-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 5px;
}

.premium-winners .signal-bars {
    display: flex;
    align-items: flex-end;
    height: 12px;
    gap: 2px;
}

.premium-winners .signal-bars .bar {
    width: 3px;
    background: var(--live-badge);
    animation: signalBars 1.5s infinite ease-in-out;
}

.premium-winners .signal-bars .bar:nth-child(1) {
    height: 4px;
    animation-delay: 0.1s;
}

.premium-winners .signal-bars .bar:nth-child(2) {
    height: 8px;
    animation-delay: 0.3s;
}

.premium-winners .signal-bars .bar:nth-child(3) {
    height: 12px;
    animation-delay: 0.5s;
}

@keyframes signalBars {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.premium-winners .btn-premium {
    position: relative;
    background: linear-gradient(135deg, var(--premium-accent) 0%, #6A5ACD 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74, 58, 255, 0.3);
}

.premium-winners .btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 58, 255, 0.4);
}

.premium-winners .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-winners .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.8s;
}

.premium-winners .btn-premium:hover .btn-shine {
    left: 100%;
}

/* Winner Cards */
.premium-winners .winner-box {
    position: relative;
    background: linear-gradient(to top, #e93c04, #ff7a00);
    border: 1px solid var(--premium-card-border);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 15px;
}

.premium-winners .winner-box:hover {
    transform: translateY(-4px);
    /*background: var(--premium-card-hover);*/
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.4);
}

.premium-winners .winner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--premium-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.premium-winners .winner-box:hover .winner-glow {
    opacity: 1;
}

.premium-winners .winner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    background-size: 10px 10px;
    opacity: 0.2;
}

/* Podium Effects */
.premium-winners .podium-first {
    border-top: 3px solid #FFD700;
}

.premium-winners .podium-second {
    border-top: 3px solid #C0C0C0;
}

.premium-winners .podium-third {
    border-top: 3px solid #CD7F32;
}

.premium-winners .winner-rank {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 400;
    color: white;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.premium-winners .winner-box:hover .winner-rank {
    transform: scale(1.1) rotate(10deg);
}

.premium-winners .winner-rank.gold {
    background: var(--premium-gold);
}

.premium-winners .winner-rank.silver {
    background: var(--premium-silver);
}

.premium-winners .winner-rank.bronze {
    background: var(--premium-bronze);
}

.premium-winners .winner-rank.champion {
    width: 50px;
    height: 50px;
    font-size: 24px;
    background: var(--premium-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.premium-winners .medal-shine {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    border-radius: 50%;
    animation: medalShine 3s infinite;
}

@keyframes medalShine {

    0%,
    100% {
        transform: rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: rotate(180deg);
        opacity: 0.2;
    }
}

.premium-winners .winner-info {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.premium-winners .winner-icon {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
}

.premium-winners .winner-box:hover .winner-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.premium-winners .avatar-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-light);
    border-radius: 16px;
    pointer-events: none;
}

.premium-winners .winner-avatar {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    pointer-events: none;
    overflow: hidden;
}

.premium-winners .winner-icon .winner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.premium-winners .winner-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--verified-badge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 2px;
    font-size: 7px !important;
    transition: all 0.3s;
}

.premium-winners .winner-box:hover .winner-verified {
    transform: scale(1.2);
}

.premium-winners .winner-details {
    flex-grow: 1;
    min-width: 0;
}

.premium-winners .winner-details h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--premium-text);
    max-width: 90%;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.premium-winners .winner-location {
    font-size: 12px;
    color: var(--premium-text-lighter);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-winners .category-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 9;
}

.premium-winners .main-category {
    font-size: 12px;
    font-weight: 500;
    color: #E93C04;
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    padding: 3px 8px;
    border-radius: 4px;
}

.premium-winners .sub-category {
    font-size: 11px;
    color: var(--premium-text-light);
}

.premium-winners .separator {
    color: var(--premium-text-lighter);
}

.premium-winners .winner-earnings-display {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.premium-winners .earning-amount {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #35C31E;
    margin-bottom: 5px;
}

.premium-winners .earning-label {
    font-size: 12px;
    color: var(--premium-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-winners .win-date {
    position: absolute;
    top: 55%;
    right: 10px;
    font-size: 10px;
    color: var(--premium-text-lighter);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
}

.premium-winners .winner-stats-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.premium-winners .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.premium-winners .stat-icon {
    width: 24px;
    height: 24px;
    background: rgba(74, 58, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-accent);
    font-size: 12px;
}

.premium-winners .stat-progress {
    flex-grow: 1;
    height: 6px;
    background: var(--color-light);
    border-radius: 3px;
    overflow: hidden;
}

.premium-winners .progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--premium-accent), #8A2BE2);
    border-radius: 3px;
}

.premium-winners .stat-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--premium-text-light);
    width: 20px;
    text-align: right;
}

/* Empty State */
.premium-winners .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.premium-winners .sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.premium-winners .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: sparkleAnimation 3s infinite;
}

.premium-winners .sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0.5s;
}

.premium-winners .sparkle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1.5s;
}

.premium-winners .sparkle:nth-child(3) {
    top: 30%;
    left: 50%;
    animation-delay: 2.5s;
}

@keyframes sparkleAnimation {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
        box-shadow: 0 0 10px white;
    }
}

.premium-winners .default-winner-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    color: var(--premium-gold);
    font-size: 30px;
    border-radius: 14px;
}

.premium-winners .call-to-action {
    margin-top: 20px;
    text-align: center;
}

.premium-winners .call-to-action p {
    font-size: 14px;
    color: var(--premium-text-light);
    margin-bottom: 10px;
}

.premium-winners .cta-button {
    background: linear-gradient(135deg, var(--premium-accent) 0%, #6A5ACD 100%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(74, 58, 255, 0.3);
}

.premium-winners .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 58, 255, 0.4);
}

/* Custom Carousel Navigation */
.premium-winners .custom-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.premium-winners .custom-prev,
.premium-winners .custom-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(74, 58, 255, 0.2);
    border: 1px solid var(--premium-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.premium-winners .custom-prev:hover,
.premium-winners .custom-next:hover {
    background: rgba(74, 58, 255, 0.4);
    transform: scale(1.1);
}

.premium-winners .carousel-dots {
    display: flex;
    gap: 8px;
}

.premium-winners .owl-stage {
    padding: 5px 0;
}

.premium-winners .carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.premium-winners .carousel-dots .dot.active {
    background: var(--premium-accent);
    transform: scale(1.2);
}

/* Tooltips */
[data-tooltip] {
    position: relative;
    display: inline-block;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 400;
    margin-bottom: 5px;
    white-space: nowrap;
    z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .premium-winners .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .premium-winners .view-all-winners {
        width: 100%;
    }

    .premium-winners .btn-premium {
        width: 100%;
        text-align: center;
    }
}

@media (max-width:769px) {
    .premium-winners .section-title {
        font-size: 18px;
    }

    .premium-winners .icon-wrapper i {
        font-size: 24px;
    }


    .premium-winners .winner-details h6 {
        font-size: 16px;
    }

    .premium-winners .earning-amount {
        font-size: 18px;
    }

    .premium-winners .winner-earnings-display {
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .premium-winners .winner-icon {
        width: 60px;
        height: 60px;
    }

    .premium-winners .icon-wrapper i {
        font-size: 20px;
    }

    .premium-winners .pulse-dot {
        width: 6px;
        height: 6px;
    }

    .premium-winners .badge-text {
        font-size: 10px;
    }

    .premium-winners .signal-bars {
        height: 10px;
        gap: 2px;
    }
}

.owl-carousel .owl-item .animated.hinge {
    animation-duration: 2s !important;
    animation-delay: 0s !important;
    transform-origin: top left !important;
}

/* --- PREMIUM WINNERS CSS ENDS ---  */










/* === FADE EFFECT CSS STARTS === */
:root {
    --blur: #DED6C9;
}

.swiper-blur-container::before,
.swiper-blur-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-blur-container::before {
    left: 0;
    background: linear-gradient(to right, var(--blur), transparent);
}

.swiper-blur-container::after {
    right: 0;
    background: linear-gradient(to left, var(--blur), transparent);
}

.show-left-blur::before {
    opacity: 1;
}

.show-right-blur::after {
    opacity: 1;
}

/* === FADE EFFECT CSS ENDS === */












/* --- SEARCH GAMES MODAL CSS Starts --- */
:root {
    --sm-border: #3a3a70;
    --sm-tab-border: #5757a6;

    --text-white: var(--color-white);
    --sm-font-blue: #abb7e0;
    --sm-close-btn: #8282ee;

    /* Gradient Colors */
    --sm-badge-gradient: linear-gradient(180deg, #66A615 0%, #15A64F 100%);

    --sm-tab-bg: var(--bg-primary-light);
    --sm-tab-active-bg: radial-gradient(#3a3a70, #1c1d40);
    --sm-background: var(--bg-primary);

    --sm-card-overlay: linear-gradient(181.17deg, rgba(0, 6, 22, 0) 1%, rgba(1, 17, 57, 0.78) 100.27%);
    --sm-fun-card-btn: linear-gradient(to right, #8e2de2, #4a00e0);

    --sm-shadow-purple: rgba(142, 45, 226, 0.4);
    --sm-shadow-black: rgba(0, 0, 0, 0.2);
}

#searchModal .btn-close-custom {
    background: transparent;
    border: none;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

#searchModal .btn-close-custom:hover {
    opacity: 1;
    transform: rotate(90deg);
    color: #e93c04;
}

#searchModal .btn-close-custom .fa-times {
    font-size: 22px;
}

#searchModal .modal-body {
    padding: 8px 12px;
    overflow-y: none !important;
}

#searchModal .modal-dialog {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: 99vh;
}



#searchModal .modal-content {
    height: 100vh;
    padding: 5px;
    background: #ded6c9;

}

/* Close Button */
#searchModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 10;
}

#searchModal .btn-close:hover {
    opacity: 1;
}

/* Search Bar */
#searchModal .search-bar-container .input-group {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #D4AF37 !important;
}

#searchModal .search-bar-container .input-group-text {
    color: #fff;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    font-size: 14px;
    border: none;
    border-radius: 8px 0 0 8px;
}

#searchModal .search-bar-container .form-control {
    background-color: #DED2C5;
    color: #474242;
    padding: 12px;
    border: none;
    outline: none;
    box-shadow: none;
}

#searchModal .search-bar-container .form-control::placeholder {
    color: #47424285;
    opacity: 0.7;
}

/* Navigation Tabs */
#searchModal .nav-scroll-container,
#libGames .nav-scroll-container {
    position: relative;
    padding: 2px;
}

#searchModal .snSwiper {
    overflow: hidden;
    border-bottom: none;
}

#searchModal .swiper-wrapper {
    border-bottom: none;
}

#searchModal .snSwiper .swiper-slide {
    max-width: max-content;
}

#searchModal .snSwiper .nav-link {
    background-color: var(--sm-tab-bg);
    color: var(--sm-font-blue);
    border-radius: 8px;
    padding: 8px 16px;
    border: 1px solid transparent;
    white-space: nowrap;
    font-size: 14px;
    transition: all 0.3s ease;
}

#searchModal .snSwiper .nav-link.active {
    border: 1px solid var(--sm-tab-border);
    background: var(--sm-tab-active-bg);
    color: var(--text-white) !important;
}

#searchModal .snSwiper .nav-link:hover {
    border: 1px solid var(--sm-tab-border);
    color: var(--text-white) !important;
}

/* Game Cards */
#searchModal .search-games-container {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

#searchModal .search-game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--sm-shadow-black);
    transition: all 0.3s ease;
}

#searchModal .search-game-img {
    width: 10px !important;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}

#searchModal .search-game-card:hover .search-game-img {
    transform: scale(1.05);
}

#searchModal .search-game-card .search-game-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 1;
    transition: all 0.3s ease;
}

#searchModal .search-game-card:hover .search-game-badge {
    left: 8px;
}

#searchModal .search-game-card .search-game-badge .badge {
    background: linear-gradient(to left, #e93c04, #ff7a00);
    backdrop-filter: blur(5px);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: max-content;
    display: block;
    text-align: center;
    z-index: 1;
    color: #fff;
    /*border: 1px solid #D4AF37;*/
    padding: 4.5px 13px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#searchModal .search-game-card:hover .search-game-badge .badge {
    border-radius: 4px;
    transform: skew(-20deg);
}

#searchModal .search-game-card .game-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 4px;
    color: ;
    border: 1px solid #FFFACD;
    background: radial-gradient(#fff173e6, #FFD700);
    display: flex;
    justify-content: center;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;
}

#searchModal .search-game-card .game-title p {
    color: #E93C04;
    font-size: 11px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

#searchModal .search-game-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    inset: 0 0 -100% 0;
    border-radius: 10px;
    background: var(--sm-card-overlay);
    opacity: 0;
    transition: all 0.4s;
}

#searchModal .search-game-card:hover .search-game-overlay {
    opacity: 1;
}

#searchModal .search-game-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20%;
}

#searchModal .search-play-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

#searchModal .search-play-btn:hover {
    transform: scale(1.1);
}

#searchModal .search-play-btn img {
    width: 100%;
    height: auto;
}

#searchModal .search-play-fun-btn {
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 600 !important;
    line-height: 20px;
    display: inline-block;
    color: var(--color-white);
    border: 1px solid #D4AF37;
    text-transform: capitalize;
    font-family: "Jost", sans-serif;
    transition: all 0.3s;
    text-align: center;
    background: transparent;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

#searchModal .search-play-fun-btn::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    height: 100%;
    width: 0px;
    transition: all 0.4s;
    z-index: -1;
}

#searchModal .search-play-fun-btn:hover {
    color: #e93c04 !important;
}

#searchModal .search-play-fun-btn:hover::before {
    width: 100%;
}

#searchModal .search-game-card {
    width: 140px;
    height: 200px;
}


/* Search Modal Styles */
.search-modal {
    backdrop-filter: blur(16px) saturate(200%);
    border-radius: 12px !important;
    border: 1px solid rgba(0, 201, 255, 0.2) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3),
        0 0 16px rgba(0, 201, 255, 0.15) !important;
    color: var(--text-color, #ffffff) !important;
}

.search-modal .modal-header {
    border-bottom: 1px solid #D4AF37;
    padding: 12px;
    position: relative;
}

.search-modal .modal-header .modal-title {
    font-size: 24px;
    color: transparent;
    background: linear-gradient(90deg, #FFC107 40%, #FFC107 60%);
    background-clip: text;
    text-shadow: 0 0px 0px #e93c04;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.search-modal .modal-body {
    padding: 12px;
    /*overflow-y: auto;*/
    /*max-height: 65vh;*/
}

.search-modal .btn-close-custom {
    color: rgba(224, 224, 255, 0.8);
    font-size: 1.2rem;
    position: absolute;
    right: 8px;
    top: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    padding: 6px;
}

.search-modal .btn-close-custom:hover {
    color: var(--accent-color, #00C9FF);
    transform: rotate(90deg);
}

.search-modal .search-bar-container {
    margin-bottom: 10px;
}

.search-modal .form-control {
    background: rgba(0, 0, 0, 0.25);
    color: white;
    border-radius: 0 8px 8px 0;
    padding: 10px;
    font-size: 0.9rem;
}

.search-modal .form-control:focus {
    border-color: var(--accent-color, #00C9FF);
    box-shadow: 0 0 0 3px rgba(0, 201, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    outline: none;
}

.search-modal .search-suggestions {
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: rgba(224, 224, 255, 0.85);
    font-size: 0.85rem;
}

.search-modal .search-suggestions p {
    margin: 0;
}

.search-modal .suggestion-term {
    color: var(--accent-color, #00C9FF);
    font-weight: 600;
}

.search-modal .suggestion-type {
    color: #6A11CB;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 5px;
}

.search-modal .suggestion-type:hover {
    color: var(--accent-color, #00C9FF);
}

.search-modal .nav-tabs {
    border-bottom: none;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.search-modal .nav-tabs::-webkit-scrollbar {
    display: none;
}

.search-modal .nav-link {
    color: #e93c04;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-modal .nav-link.active {
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    border: none;
    color: #000;
}

.search-modal .nav-link:hover {
    border: none;
    color: #000;
}

.search-modal .search-games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 10px;
}

.search-modal .search-game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
}

.search-modal .search-game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 201, 255, 0.3);
}

.search-modal .search-game-img {
    width: 179px !important;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.search-modal .search-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.search-modal .search-game-card:hover .search-game-overlay {
    opacity: 1;
}

.search-modal .search-game-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.search-modal .search-play-btn,
.search-modal .search-play-fun-btn {
    background: linear-gradient(135deg, var(--accent-color, #00C9FF), var(--secondary-accent, #6A11CB));
    color: #0f0c29;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.search-modal .search-play-btn:hover,
.search-modal .search-play-fun-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 201, 255, 0.4);
}

.search-modal .search-play-btn img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.search-modal .search-game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
}

.search-modal .badge {
    background: linear-gradient(135deg, #6A11CB, #2575FC);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.search-modal .no-games {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    color: #474242;
    border: 1px solid #D4AF37;
    font-size: 0.9rem;
}

.search-modal .no-games i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(to left, #e93c04, #ff7a00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-modal .loading-spinner {
    display: flex;
    justify-content: center;
    gap: 10px align-items-center text-align: center;
    padding: 1.5rem;
    color: #474242;
    font-size: 0.9rem;
}

/* Animation Enhancements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-modal .modal-content {
    animation: fadeIn 0.3s ease-out forwards;
}

@media (min-width: 991px) {
    #searchModal .modal-dialog {
        max-width: 946px;
        /* height: auto; */
        max-height: 684px;
        margin: 1.75rem auto;
    }

    #searchModal .modal-content {
        height: 90vh;
        overflow: hidden;
        border-radius: 16px;
        border: 1px solid #D4AF37 !important;
    }
}

@media (max-width: 992px) {
    #searchModal .search-game-card {
        width: 135px;
        height: 185px;
    }

    #searchModal .search-games-container {
        max-height: calc(100vh - 200px);
    }

    .search-modal .modal-header .modal-title {
        font-size: 22px;
    }
}

/* Responsive Adjustments */
@media (max-width: 769px) {
    .search-modal .modal-header .modal-title {
        font-size: 18px;
    }

    #searchModal .search-games-container {
        max-height: calc(100vh - 160px);
    }

    #searchModal .search-game-card .search-game-badge::before {
        width: 25px;
    }

    #searchModal .search-game-card .search-game-badge .badge {
        font-size: 8px;
        z-index: 1;
    }

    #searchModal .search-game-card .game-title {
        padding: 0 4px;
    }

    #searchModal .search-game-overlay {
        display: none;
    }

    #searchModal .search-bar-container .form-control {
        font-size: 12px;
        padding: 8px;
    }

    #searchModal .search-game-card {
        width: 130px;
        height: 180px;
    }

    #searchModal .search-games-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #searchModal .search-games-container::-webkit-scrollbar {
        display: none;
    }

    .search-modal .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: 100vh;
    }

    .search-modal .modal-content {
        border-radius: 0 !important;
    }

    .search-modal .modal-body {
        max-height: 80vh;
        padding: 10px;
    }

    .search-modal .search-games-container {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .search-modal .search-game-img {
        height: 100px;
    }

    .search-modal .nav-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .search-modal .search-suggestions {
        font-size: 0.8rem;
        padding: 6px;
    }
}

@media (max-width: 576px) {
    #searchModal .search-game-card {
        width: 115px;
        height: 150px;
    }

    #searchModal .search-game-btns {
        gap: 6px;
    }

    #searchModal .search-play-btn {
        width: 30px;
        height: 30px;
    }

    #searchModal .search-play-fun-btn {
        padding: 4px 8px;
        font-size: 10px;
    }

    #searchModal .snSwiper .nav-link {
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .search-modal .modal-header {
        padding: 8px;
    }

    .search-modal .modal-body {
        padding: 8px;
    }

    .search-modal .search-games-container {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .search-modal .search-game-img {
        height: 80px;
    }

    .search-modal .nav-link {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .search-modal .search-play-btn,
    .search-modal .search-play-fun-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 466px) {
    #searchModal .search-games-container {
        gap: 8px;
    }

    #searchModal .search-game-card {
        width: 105px;
        height: 140px;
    }
}

/* --- SEARCH GAMES MODAL CSS Ends --- */













/* --- EVERY GAME CARD OVERLAY CSS STARTS --- */
:root {
    --card-badge-bg: var(--bg-primary);
    --card-title-blue: #abb7e0;
    --card-item-border: #5757a6;
    --card-title-bg: radial-gradient(#3a3a70, #1c1d40);
    --card-overlay: linear-gradient(181.17deg, rgba(0, 6, 22, 0) 1%, rgba(1, 17, 57, 0.78) 100.27%);
    --card-btn-fill: linear-gradient(to right, rgb(2, 174, 221), #35cf45 87%);
}

.main-game-card .game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    transition: all 0.3s ease;
}

.main-game-card:hover .game-badge {
    left: 8px;
}

.main-game-card .game-badge .badge {
    background: linear-gradient(to left, #e93c04, #ff7a00);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    text-align: center;
    z-index: 1;
    color: #fff;
    /*border: 1px solid var(--card-item-border);*/
    padding: 4.5px 13px 5px;
    border-radius: 25px;
    transform: skew(0deg);
    transition: all 0.3s ease;
}

.main-game-card:hover .game-badge .badge {
    border-radius: 4px;
    transform: skew(-20deg);
}

.main-game-card .game-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 4px;
    border: 1px solid #D4AF37;
    background: radial-gradient(#fff173e6, #FFD700);
    display: flex;
    justify-content: center;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;
}

.main-game-card .game-title p {
    color: #E93C04;
    font-size: 11px;
    font-weight: 600 !important;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.main-game-card .game-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    inset: 0 0 -100% 0;
    border-radius: 10px;
    background: var(--card-overlay);
    opacity: 0;
    transition: all 0.4s;
}

.main-game-card .game-card-overlay .overlay-btn-grp {
    display: grid;
    gap: 10px;
    align-items: center;
    margin-bottom: 35px;
}

.main-game-card .game-card-overlay .overlay-btn-grp .allvideo {
    display: block;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    transition: all 0.4s;
}

.main-game-card .game-card-overlay .overlay-btn-grp .allvideo img {
    width: 100%;
    height: 100%;
}

.main-game-card .game-card-overlay .overlay-btn-grp .overlay-btn {
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    padding: 5px 20px;
    overflow: hidden;
}

.main-game-card:hover .game-card-overlay {
    inset: 0 0 -100% 0;
    opacity: 1;
}

.overlay-btn {
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    display: inline-block;
    color: var(--color-white);
    border: 1px solid #D4AF37;
    text-transform: capitalize;
    font-family: "Jost", sans-serif;
    transition: all 0.3s;
    text-align: center;
    background: transparent;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.overlay-btn::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    height: 100%;
    width: 0px;
    transition: all 0.4s;
}

.overlay-btn:hover::before {
    width: 100%;
}

.overlay-btn:hover span {
    color: #e93c04;
}

.overlay-btn span {
    z-index: 1;
    position: relative;
    transition: all 0.4s;
}

/* --- EVERY GAME CARD OVERLAY CSS ENDS --- */









/* === MAIN ROOT FOR ALL main__body__wrap SECTIONS === */
:root {
    /* Gradient Colors */
    --gradient-purple-pink: linear-gradient(90deg, #622fe3, #f805af);
    --gradient-blue-cyan: linear-gradient(180deg, #aa00ff, #00e1ff);
    --gradient-dark-blue: linear-gradient(145deg, #13153b, #0a0c24);
    --gradient-dark-purple: linear-gradient(45deg, #6c5ce7, #a29bfe);
    --gradient-light-purple: linear-gradient(45deg, #a29bfe, #6c5ce7);
    --gradient-overlay: linear-gradient(181.17deg, rgba(0, 6, 22, 0) 1%, rgba(1, 17, 57, 0.78) 100.27%);
    --gradient-footer: linear-gradient(to top, var(--bg-primary-light), var(--bg-primary));

    /* Solid Colors */
    --color-dark-bg: #000616;
    --color-white: white;
    --color-purple: #622fe3;
    --color-light-purple: #8b86f4;
    --color-dark-purple: #642fe3;
    --color-pink: #f805af;
    --color-neon-pink: #ff00ae;
    --color-gold: #ffd700;
    --color-dark-blue: #0a0c24;
    --color-darker-blue: #000616;
    --color-nav-border: #3a3a70;
    --color-nav-hover: #3a3a70;
    --color-nav-active: #5050a0;
    --color-border-purple: #5757a6;
    --color-bullet-inactive: rgb(104, 94, 119);
    --color-bullet-active: #642fe3;

    /* Transparent Colors */
    --transparent-black: rgba(0, 0, 0, 0.6);
    --transparent-black-light: rgba(0, 0, 0, 0.5);
    --transparent-black-lighter: rgba(0, 0, 0, 0.4);
    --transparent-black-dark: rgba(0, 0, 0, 0.7);
    --transparent-white-border: rgba(255, 255, 255, 0.05);
    --transparent-white-light: var(--color-light);
    --transparent-white-medium: rgba(255, 255, 255, 0.2);
    --transparent-pink-border: rgba(255, 0, 174, 0.15);
    --transparent-pink-glow: rgba(255, 0, 174, 0.4);
}

/* --- ALL GAMES NAV CAROUSEL CSS Starts ---  */
:root {
    --an-cus-border: #3a3a70;
    --an-tab-bg: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    --an-tab-active-bg: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    --an-tab-border: #5757a6;
    --an-font-blue: #abb7e0;
}

.cusSearch {
    color: #e93c04;
    border: 1px solid #D4AF37;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
}

.cusSearch:hover {
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
}

.cusSearch i {
    font-size: 16px;
}

.anSwiper .nav-scroll-container {
    padding: 2px 0;
}

.anSwiper .nav-item {
    padding: 0;
    max-width: max-content;
}

.anSwiper .nav-link {
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    color: #e93c04;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.anSwiper .nav-link:hover {
    border: 1px solid #D4AF37;
    color: #000;
}

.anSwiper .nav-link.active {
    border: 1px solid #D4AF37;
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    color: #000;
}

@media (max-width: 769px) {
    .cusSearch span {
        display: none;
    }

    .anSwiper .nav-link {
        font-size: 12px;
    }
}

/* --- ALL GAMES NAV CAROUSEL CSS Ends --- */









/* --- ALL GAMES CSS STARTS --- */
.ag-cards-container .agSwiper .swiper-slide {
    width: max-content;
    margin-right: 0 !important;
}

@media (min-width: 769px) {
    .ag-cards-container .agSwiper {
        padding-right: 90px;
    }
}

.main-game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 170px;
    height: 220px;
}

.main-game-card img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: all 0.4s;
    object-fit: fill;
}

.main-game-card:hover img {
    scale: 1.1;
}

.exploreAllGamesPapa {
    margin: 20px auto 0;
    width: max-content;
    padding: 1px;
    border-radius: 25px;
    background: linear-gradient(#e93c04, #ff7a00);
}

.exploreAllGamesPapa:hover {
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    text-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.5),
        0.1em 0.1em 0.2em rgba(0, 0, 0, 0.4),
        0.15em 0.15em 0.3em rgba(0, 0, 0, 0.3);
}

.exploreAllGames {
    padding: 5px 48px;
    border-radius: 25px;
    background: #DED4C7;
    color: #E93C04 !important;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    border: none;
}

.exploreAllGames a {
    color: #E93C04 !important;
    transition: all 0.3s ease;
}

.exploreAllGames:hover a {
    color: var(--color-white) !important;
}

@media (max-width: 1024px) {
    .main-game-card {
        width: 155px;
        height: 200px;
    }
}

@media (max-width: 769px) {
    .exploreAllGames {
        padding: 5px 40px;
        font-size: 14px;
    }

    .main-game-card {
        width: 130px;
        height: 180px;
    }

    .winner__usdt__items .content .name__wrap .nametext {
        font-weight: 400;
        font-size: 18px;
    }

    .main-game-card .game-badge::before {
        width: 25px;
    }

    .main-game-card .game-badge .badge {
        font-weight: 100;
        font-size: 8px;
    }

    .main-game-card .game-title {
        padding: 0 4px;
    }

    .main-game-card .game-title p {
        font-size: 10px;
        line-height: 22px;
    }
}

/*@media (max-width: 466px) {*/
/*    .main-game-card {*/
/*        width: 105px;*/
/*        height: 150px;*/
/*    }*/

/*    .main-game-card .game-badge .badge {*/
/*        font-weight: 100;*/
/*        font-size: 7px;*/
/*        padding: 3.5px 9px 4px;*/
/*    }*/

/*    .main-game-card .game-title p {*/
/*        font-size: 10px;*/
/*        line-height: 18px;*/
/*    }*/
/*}*/

/* --- ALL GAMES CSS ENDS --- */








/* --- POPULAR GAMES CSS STARTS --- */
.sectionTitle div div i {
    font-size: 28px;
    background: linear-gradient(to left, #e93c04, #ff7a00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sectionTitle div div h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 30px;
    margin: 0;
    color: transparent;
    background: linear-gradient(90deg, #FFC107 40%, #FFC107 60%);
    background-clip: text;
    text-shadow: 0 0px 0px #e93c04;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* section nav */
.sectionTitle .sectionNav {
    display: flex;
    justify-content: center;
    gap: 1px;
    align-items: center;
    color: var(--color-white);
    border-radius: 24px;
}

.sectionTitle .sectionNav div {
    font-size: 14px;
    padding: 6px 12px;
    border: 2px solid #fccc30ad;
    background: #fbe9cc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sectionTitle .sectionNav div a {
    background: linear-gradient(to left, #e93c04, #ff7a00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.sectionTitle .sectionNav div.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.sectionTitle .sectionNav div:hover {
    border-color: #D4AF37;
    box-shadow: 0 0 6px #D4AF37;
}

.sectionTitle .sectionNav div:active {
    transform: scale(0.95);
}

.sectionTitle .sectionNav div i {
    font-size: 14px;
}

.sectionTitle .sectionNav div:first-child {
    border-right: none;
    border-radius: 20px 0 0 20px;
    padding: 6px 16px;
}

.sectionTitle .sectionNav div:last-child {
    border-left: none;
    border-radius: 0 20px 20px 0;
    padding: 6px 16px;
}

/* cards container */
.pg-cards-container .pgSwiper .swiper-slide {
    width: max-content;
    margin-right: 0 !important;
}

@media (max-width: 769px) {
    .sectionTitle .sectionNav div {
        padding: 4px 12px;
        font-size: 12px;
    }

    .sectionTitle .sectionNav div:first-child {
        padding: 4px 12px;
        font-size: 12px;
    }

    .sectionTitle .sectionNav div:last-child {
        padding: 4px 12px;
        font-size: 12px;
    }

    .sectionTitle div div i {
        font-size: 24px;
    }

    .sectionTitle div div h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .sectionTitle .sectionNav div {
        padding: 4px 12px;
        font-size: 10px;
    }

    .sectionTitle .sectionNav div:first-child {
        padding: 4px 12px;
        font-size: 10px;
    }

    .sectionTitle .sectionNav div:first-child i {
        font-size: 10px;
    }

    .sectionTitle .sectionNav div:last-child {
        padding: 4px 12px;
        font-size: 10px;
    }

    .sectionTitle .sectionNav div:last-child i {
        font-size: 10px;
    }

    .sectionTitle div div i {
        font-size: 20px;
    }

    .sectionTitle div div h2 {
        font-size: 18px;
        font-weight: 500;
    }
}

@media (min-width: 769px) {
    .pg-cards-container .pgSwiper {
        padding-right: 90px;
    }
}

/* --- POPULAR GAMES CSS ENDS --- */










/* --- TOT WEEK SECT STARTS --- */
.totCard {
    position: relative;
    max-width: 240px;
    height: 280px;
}

.totCard .totCardMainImage {
    width: 190px;
    height: 280px;
    margin-left: auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}


.totCard>span {
    position: absolute;
    bottom: 0;
    left: 5px;
    font-size: 150px;
    line-height: 140px;
    font-weight: 800;
    z-index: 2;
    color: #fbe9cc;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: transparent;
    background: linear-gradient(to top, #e93c04, #ff7a00);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    margin-top: 100px;
}

.totCard:hover .totCardMainImage {
    z-index: 2;
}

.totCard:hover .totCardMainImage img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.totCard:hover span {
    transition: all 0.3s ease-in-out;
    z-index: 1;
    opacity: 0.4;
}

.totCard .game-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    inset: 0 0 -100% 0;
    border-radius: 10px;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: all 0.4s;
}

.totCard .game-card-overlay .overlay-btn-grp {
    display: grid;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.totCard .game-card-overlay .overlay-btn-grp .allvideo {
    display: block;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    transition: all 0.4s;
}

.totCard .game-card-overlay .overlay-btn-grp .allvideo img {
    width: 100%;
    height: 100%;
}

.totCard .game-card-overlay .overlay-btn-grp .overlay-btn {
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #3BE41F;
    border-radius: 5px;
    padding: 5px 20px;
}

.totCard:hover .game-card-overlay {
    inset: 0 0 -100% 0;
    opacity: 1;
}

@media(max-width: 769px) {
    .totCard .totCardMainImage {
        width: 175px;
        height: 280px;
    }
}

/* --- TOT WEEK SECT ENDS --- */











/* --- POOL FUN CSS STARTS --- */
.pfCard {
    max-width: 300px;
    background: var(--gradient-dark-blue);
    border-radius: 16px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    border: 1px solid #d4b34a94;
    position: relative;
}

.pfCard:hover {
    box-shadow: 0 5px 5px var(--transparent-black-light);
}

.pfCardMainImage {
    position: relative;
    overflow: hidden;
}

.pfCardBanner {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.pfCard:hover .pfCardBanner {
    transform: scale(1.1);
}

.pfCardFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: linear-gradient(to top, #e93c04, #ff7a00);
    border-top: 1px solid var(--transparent-white-border);
}

.pfCardInfo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pfCardThumbnail {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
    filter: brightness(0.7);
    border: 2px solid var(--transparent-white-light);
    box-shadow: 0 2px 8px var(--transparent-black-light);
    transition: all 0.3s ease;
}

.pfCard:hover .pfCardThumbnail {
    filter: brightness(1);
}

.pfCardTitle {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 3px var(--transparent-black-light);
    letter-spacing: 0.5px;
    max-width: 130px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pfCardPlayBtn {
    background: transparent;
    color: var(--color-white);
    border: 1px solid #D4AF37;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #ffcb00, 0 0 10px #ffcb00 inset;
    animation: neonBorderPulse 3s infinite;
}

@keyframes neonBorderPulse {
    0% {
        box-shadow: 0 0 4px #ffcb00, 0 0 8px #ffcb00 inset;
    }

    50% {
        box-shadow: 0 0 8px #ffcb00, 0 0 16px #ffcb00 inset;
    }

    100% {
        box-shadow: 0 0 4px #ffcb00, 0 0 8px #ffcb00 inset;
    }
}

.pfCardPlayBtn:hover {
    background: #D4AF37;
    box-shadow: 0 6px 20px var(--transparent-pink-glow);
}

.pfCardPlayBtn:active {
    transform: translateY(0);
}

.pfCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e93c04, transparent);
    z-index: 2;
}

.pfCardBadge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--transparent-black-dark);
    color: var(--color-neon-pink);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

/* other stylings  */
.pfCard .game-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    inset: 0 0 -100% 0;
    border-radius: 10px;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: all 0.4s;
}

.pfCard .game-card-overlay .overlay-btn-grp {
    display: grid;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.pfCard .game-card-overlay .overlay-btn-grp .allvideo {
    display: block;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    transition: all 0.4s;
}

.pfCard .game-card-overlay .overlay-btn-grp .allvideo img {
    width: 100%;
    height: 100%;
}

.pfCard .game-card-overlay .overlay-btn-grp .overlay-btn {
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    padding: 5px 20px;
}

.pfCard:hover .game-card-overlay {
    inset: 0 0 -100% 0;
    opacity: 1;
}

.pf-cards-container .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    opacity: 1;
    border-radius: 50%;
    margin: 0 4px;
    transition: background 0.3s;
}

.pf-cards-container .swiper-pagination-bullet:hover {
    background: linear-gradient(#e93c04, #ff7a00);
}

.pf-cards-container .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background: linear-gradient(#e93c04, #ff7a00);
}

@media (max-width: 1100px) {
    .pfCardTitle {
        max-width: 100px;
    }
}

@media (max-width: 1024px) {
    .pfCardTitle {
        max-width: 140px;
    }
}

@media (max-width: 769px) {
    .pfCardTitle {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .pfCardTitle {
        max-width: 140px;
    }
}

/* --- POOL FUN CSS ENDS --- */













/* --- THE FISHING ROD SECT STARTS --- */
#tfrGames .tfr-cards-container {
    position: relative;
    height: 100%;
}

.tfr-cards-container .swiper {
    width: 100%;
    padding-top: 20px;
}

.tfr-cards-container .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d4b34a94;
    border-radius: 15px;
}

.tfr-cards-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 400px !important;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 15px;
}

.tfr-cards-container .swiper-slide-active {
    margin-bottom: 25px;
    opacity: 1;
    height: 90% !important;
}

.tfr-cards-container .swiper-slide-active img {
    opacity: 1;
}

.tfrCard .game-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    inset: 0 0 -100% 0;
    border-radius: 15px;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: all 0.4s;
}

.tfrCard .game-card-overlay .overlay-btn-grp {
    display: grid;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.tfrCard .game-card-overlay .overlay-btn-grp .allvideo {
    display: block;
    width: 35px;
    height: 35px !important;
    margin: 0 auto;
    transition: all 0.4s;
}

.tfrCard .game-card-overlay .overlay-btn-grp .allvideo img {
    width: 100%;
    height: 100% !important;
}

.tfrCard .game-card-overlay .overlay-btn-grp .overlay-btn {
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    padding: 5px 20px;
}

.tfrCard.swiper-slide-active .game-card-overlay {
    inset: 0 0 -100% 0;
    opacity: 1;
}

.tfr-cards-container .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    opacity: 1;
    border-radius: 50%;
    margin: 0 4px;
    transition: background 0.3s;
}

.tfr-cards-container .swiper-pagination-bullet:hover {
    background: linear-gradient(#e93c04, #ff7a00);
}

.tfr-cards-container .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background: linear-gradient(#e93c04, #ff7a00);
}

@media (max-width:769px) {
    .tfrCard .game-card-overlay {
        display: grid !important;
    }
}

/* --- THE FISHING ROD SECT ENDS --- */












/* --- JACKPOT SECT STARTS --- */
.sectionTitle button {
    background: linear-gradient(#FFD700, #FFFACD 0%, #FFD700 100%);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sectionTitle button a {
    color: #e64c4c !important;
}

.sectionTitle button:hover a {
    color: #fff !important;

}

.sectionTitle button:hover {
    transition: all 0.3s ease;
    background: linear-gradient(#ffcb00, #e2a413 60%);
    box-shadow: 0 4px 15px #FFD700;
}

.jp-section-bg {
    background: linear-gradient(var(--transparent-black), var(--transparent-black)),
        url('../img/banner.jpg') center/cover no-repeat;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px var(--transparent-black-light);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

/* Header Styles */
.jackpot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #d4b34a94;
    padding-bottom: 1rem;
}

.jackpot-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.jackpot-amount {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    animation: jackpotPulse 2s infinite;
}

.jpCard {
    position: relative;
    width: 140px !important;
    height: 180px !important;
    border-radius: 8px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.jpCard:hover {
    box-shadow: 0 12px 24px var(--transparent-black-light);
}

.jpCard .jpCardMainImage {
    width: 120px !important;
    height: 160px !important;
    position: relative;
    border-radius: 8px !important;
    overflow: hidden;
}

.jpCard .jpCardMainImage .jpCardBanner {
    border-radius: 8px !important;
    width: 120px !important;
    height: 160px !important;
    object-fit: cover;
    opacity: 0.9;
}

.jpCard:hover .jpCardBanner {
    scale: 1.1;
    transition: all 0.3s ease;
}

.jpCardTitle {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 4px;
    background: var(--transparent-black-light);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.jp-cards-container .swiper {
    max-width: 528px;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.jp-cards-container .swiper.jpSwiper {
    max-width: 528px;
    margin-left: 0 !important;
    margin-right: auto;
}

.jp-cards-container .jpSwiper .swiper-wrapper {
    width: 100% !important;
}

.jp-cards-container .swiper-slide {
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d4b34a94;
}

.jp-cards-container .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    opacity: 1;
    border-radius: 50%;
    margin: 0 4px;
    transition: background 0.3s;
}

.jp-cards-container .swiper-pagination-bullet:hover {
    background: linear-gradient(#e93c04, #ff7a00);
}

.jp-cards-container .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background: linear-gradient(#e93c04, #ff7a00);
}

/* othersssss */
.jpCard .game-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    inset: 0 0 -100% 0;
    border-radius: 10px;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: all 0.4s;
}

.jpCard .game-card-overlay .overlay-btn-grp {
    display: grid;
    gap: 10px;
    align-items: center;
    margin-bottom: 60px;
}

.jpCard .game-card-overlay .overlay-btn-grp .allvideo {
    display: block;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    transition: all 0.4s;
}

.jpCard .game-card-overlay .overlay-btn-grp .allvideo img {
    width: 100%;
    height: 100%;
}

.jpCard:hover .game-card-overlay {
    inset: 0 0 -100% 0;
    opacity: 1;
}

@media (max-width: 769px) {
    .sectionTitle button {
        padding: 6px 14px;
        font-size: 12px;
    }

    .jp-section-bg {
        padding: 1rem 0.7rem;
    }

    .jackpot-title {
        font-size: 1.5rem;
    }

    .jackpot-amount {
        font-size: 1rem;
    }
}

@media (max-width: 769px) {
    .jpCard {
        width: 120px !important;
        height: 160px !important;
    }
}

/* --- JACKPOT SECT ENDS --- */









/* --- PROVIDERS CSS STARTS --- */
.game-providers {
    --provider-card-bg: linear-gradient(152deg, #1A1B35 0%, #131428 100%);
    --provider-card-border: rgba(74, 58, 255, 0.2);
    --provider-card-hover: linear-gradient(152deg, #23244B 0%, #191A38 100%);
    --provider-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --provider-glow: rgba(74, 58, 255, 0.1);
    --provider-accent: #4A3AFF;
    --provider-text: var(--color-white);
    --provider-text-light: rgba(255, 255, 255, 0.8);
    --provider-text-lighter: var(--color-muted);
}

.providers-carousel-container {
    padding: 0 40px;
    position: relative;
}

.provider-card {
    padding: 10px;
    height: auto;
    transition: all 0.3s ease;
}

.provider-inner {
    background: linear-gradient(to top, #e93c04, #ff7a00);
    border: 1px solid #d4b34a94;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.provider-card:hover .provider-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    background-size: 10px 10px;
    opacity: 0.2;
    z-index: 0;
}

.provider-card:hover .provider-inner {
    /*background: var(--provider-card-hover);*/
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.provider-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.provider-badge .badge-premium,
.provider-badge .badge-trending,
.provider-badge .badge-new,
.provider-badge .badge-popular {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.provider-badge .badge-premium {
    background: var(--premium-gold);
}

.provider-badge .badge-trending {
    background: var(--premium-accent);
}

.provider-badge .badge-new {
    background: #FF3E6C;
}

.provider-badge .badge-popular {
    background: #00C4A3;
}

.provider-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.provider-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.provider-card:hover .provider-logo img {
    transform: scale(1.05);
}

.logo-shine {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(74, 58, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.provider-card:hover .logo-shine {
    opacity: 1;
}

.provider-info {
    margin-bottom: 20px;
    text-align: center;
}

.provider-name {
    color: var(--provider-text);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.provider-name:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    border-radius: 2px;
}

.provider-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.provider-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--provider-text-light);
}

.provider-stats .stat-item i {
    font-size: 10px;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.provider-action {
    text-align: center;
}

.btn-provider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-provider:hover {
    background: #3A2AFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 58, 255, 0.3);
}

.btn-provider:active {
    transform: translateY(0);
}

.provider-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(74, 58, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.provider-card:hover .provider-glow {
    opacity: 1;
}

/* Swiper Navigation */
.provider-prev,
.provider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #e93c04;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.provider-prev {
    left: 0;
}

.provider-next {
    right: 0;
}

.provider-prev:hover,
.provider-next:hover {
    background: linear-gradient(90deg, #ffcb00 40%, #e2c313 60%);
    color: #fff;
    border: 1px solid #d4b34a94;
}

.provider-prev:after,
.provider-next:after {
    font-size: 16px;
    font-weight: bold;
}

.provider-pagination {
    position: relative;
    margin-top: 20px;
    bottom: auto;
}

.provider-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    opacity: 1;
    transition: all 0.3s ease;
}

.provider-pagination .swiper-pagination-bullet:hover {
    background: linear-gradient(#e93c04, #ff7a00);
}

.provider-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 10px;
    background: linear-gradient(#e93c04, #ff7a00);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .providers-carousel-container {
        padding: 0 30px;
    }

    .provider-inner {
        padding: 15px;
    }

    .provider-logo {
        height: 70px;
    }
}

@media (max-width: 991px) {
    .providers-carousel-container {
        padding: 0 20px;
    }

    .provider-name {
        font-size: 16px;
    }

    .provider-stats {
        gap: 10px;
    }
}

@media (max-width: 769px) {
    .providers-carousel-container {
        padding: 0;
    }

    .provider-prev,
    .provider-next {
        display: none;
    }

    .provider-card {
        padding: 5px;
    }

    .provider-inner {
        padding: 15px 10px;
    }

    .provider-logo {
        height: 60px;
        margin-bottom: 15px;
    }

    .provider-name {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .provider-stats .stat-item {
        font-size: 11px;
    }

    .btn-provider {
        padding: 6px 15px;
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .provider-pagination {
        margin-top: 15px;
    }

    .provider-stats {
        flex-direction: column;
        gap: 5px;
    }
}

/*--- PROVIDERS CSS ENDS ---*/




















/* --- Back To Top CSS STARTS --- */
.neo-back-to-top {
    --neo-primary: var(--primary-color);
    --neo-secondary: var(--secondary-color);
    --neo-text: var(--text-color);
    --neo-shadow: 0 4px 30px var(--shadow-medium);

    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-red-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: var(--neo-shadow);
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neo-back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.neo-back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px var(--shadow-gold);
}

.neo-arrow-container {
    position: relative;
    width: 24px;
    height: 24px;
}

.neo-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    stroke: var(--neo-text);
}

.neo-arrow-shadow {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-red-gold);
    filter: blur(4px);
    opacity: 0.5;
    z-index: 1;
    border-radius: 50%;
}

.neo-back-to-top:hover .neo-arrow {
    transform: translateY(-4px);
}

.neo-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.6s, opacity 0.6s;
    border-radius: 50%;
}

.neo-back-to-top:hover .neo-ripple {
    opacity: 1;
    transform: scale(1.5);
}

/* Responsive adjustments */
@media (max-width: 769px) {
    .neo-back-to-top {
        width: 48px;
        height: 48px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .neo-arrow-container {
        width: 20px;
        height: 20px;
    }
}


/* --- Back To Top CSS ENDS --- */








/*--- SITE LOADER ---*/
.pl-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: hsl(33.91deg 25.84% 82.55%) !important;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    overflow: hidden;
    text-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.5),
        0.1em 0.1em 0.2em rgba(0, 0, 0, 0.4),
        0.15em 0.15em 0.3em rgba(0, 0, 0, 0.3);
}

.pl-preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: radial-gradient(#fc7900 1px, #ded9cb 1px);
    background-size: 10px 10px;
    background-position: 0 0, 10px 10px;
    z-index: -1;
}

.pl-slot-container {
    position: relative;
    width: 320px;
    height: 140px;
    perspective: 1000px;
    margin-bottom: 40px;
    z-index: 2;
}

.pl-slot-reel {
  position: absolute;
  width: 90px;
  height: 140px;
  transform-style: preserve-3d;
  animation: pl-spin 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


.pl-reel-1 {
    left: 10px;
}

.pl-reel-2 {
    left: 37%;
}

.pl-reel-3 {
    right: 10px;
}

.pl-slot-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    font-weight: 700;
    color: var(--color-white);
    /* Soft White from --text-color */
    backface-visibility: hidden;
    background: linear-gradient(135deg, #e93c04 0%, #ff7a00 100%);
    /* Matches --gradient-cream */
    border-radius: 10px;
    border: 2px solid rgba(230, 57, 70, 0.3);
    /* Updated to use --secondary (red) */
    box-shadow: inset 0 0 15px rgba(230, 57, 70, 0.1);
    /* Updated to use red variant */
}

.pl-slot-item:nth-child(1) {
    transform: rotateX(0deg) translateZ(70px);
}

.pl-slot-item:nth-child(2) {
    transform: rotateX(72deg) translateZ(70px);
}

.pl-slot-item:nth-child(3) {
    transform: rotateX(144deg) translateZ(70px);
}

.pl-slot-item:nth-child(4) {
    transform: rotateX(216deg) translateZ(70px);
}

.pl-slot-item:nth-child(5) {
    transform: rotateX(288deg) translateZ(70px);
}

.pl-jackpot-burst {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

.pl-burst-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E63946;
    /* Vibrant Crimson */
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5), 0 0 20px rgba(230, 57, 70, 0.3), 0 0 30px rgba(230, 57, 70, 0.1);
}

.pl-dollar-sign {
    position: absolute;
    font-size: 80px;
    color: #F1C40F;
    /* Sleek Gold */
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.5), 0 0 20px rgba(230, 57, 70, 0.3), 0 0 30px rgba(230, 57, 70, 0.1);
    /* Updated to use red glow */
    opacity: 0;
    transform: scale(0.5);
    z-index: 3;
}

.pl-winusd-logo {
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 42px;
    opacity: 0; 
    font-weight: 800;
    margin-top: 30px;
    transition: opacity 0.3s ease-out;
    z-index: 3;
}

.pl-win-text {
    display: inline-block;
     color: transparent;
    background: linear-gradient(90deg, #e93c04 40%, #e93c04 60%);
    background-clip: text;
    text-shadow: 0 -3px 0px #FFC107;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.pl-usd-text {
    display: inline-block;
     color: transparent;
    background: linear-gradient(90deg, #e93c04 40%, #e93c04 60%);
    background-clip: text;
    text-shadow: 0 -3px 0px #FFC107;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.pl-coin-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.pl-coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #E63946 0%, #F1C40F 100%);
    /* Updated to emphasize red-to-gold gradient */
    border-radius: 50%;
    opacity: 0;
    animation: pl-fall linear forwards;
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.3);
    /* Updated to use red variant */
}

.pl-loading-text {
    position: absolute;
    bottom: 20%;
    color: #e93c04;
    /* Vibrant Crimson */
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0;
    z-index: 3;
}

.pl-loading-dots::after {
    content: '.';
    animation: pl-dots 0.5s steps(5, end) infinite;
}

@keyframes pl-spin {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(720deg);
    }
}

@keyframes pl-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.5;
    }
}

@keyframes pl-burst {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

@keyframes pl-dots {

    0%,
    20% {
        content: '.';
    }

    40% {
        content: '..';
    }

    60%,
    100% {
        content: '...';
    }
}

@keyframes pl-cardFlip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

@keyframes pl-dollarFly {
    0% {
        transform: translateY(50px) rotate(-15deg);
        opacity: 0;
    }

    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

@media (max-width: 769px) {
    .pl-slot-container {
        width: 260px;
        height: 120px;
    }

    .pl-slot-reel {
        width: 70px;
        height: 120px;
    }

    .pl-slot-item {
        font-size: 60px;
    }

    .pl-win-text,
    .pl-usd-text {
        font-size: 36px;
    }

    .pl-winusd-logo {
        font-size: 36px;
    }

    .pl-dollar-sign {
        font-size: 70px;
    }
}

/*--- SITE LOADER ---*/
