/* Local font: coloca los archivos de fuente en public/fonts/ (recomendado: .woff2/.woff para producción) */
@font-face {
    font-family: "Bahnschrift";
    src: local("Bahnschrift"), url("../fonts/BAHNSCHRIFT.woff2") format("woff2"),
        url("../fonts/BAHNSCHRIFT.woff") format("woff"),
        url("../fonts/BAHNSCHRIFT.TTF") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --base-sans: "Bahnschrift", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;

    /* Light Mode Variables (Default) */
    --bg-body: #dfe2f0;
    --bg-card: #dfe2f0;
    --bg-secondary: #ffffff;
    --bg-navbar: #dfe2f0;
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-color: #dee2e6;
    --input-bg: #ffffff;
    --input-text: #000000;
    --bg-footer: #dfe2f0;
    --button-color: #fb9021;
    --container-borders: 2px solid #fdab01;
    --footer-border: #c0c1c8;
    --des-container: #dfe2f0;
    --info-box: #d2d2d2ed;
    --shadow: #8d8b8bb3;

    --profile-show: #edededc2;
    --profile-info:#8d8b8bb3 ;
}

/* Dark Mode Variables */
.dark {
    --bg-body: #0f0f0f;
    --bg-card: #0f0f0f;
    --bg-secondary: #101010;
    --bg-navbar: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #1b1919;
    --input-bg: #100f0f;
    --container-borders: 2px solid #fdab01;
    --input-text: #ffffff;
    --bg-footer: #a3a3a3;
    --footer-border: #000;
    --bg-footer: #010101;
    --button-color: #fbca21;
    --des-container: #000;
    --info-box: #0a0a0ac2;
    --profile-show:#191919;
    --shadow: #000000b3;
    --profile-info: #0a0a0ab3;
}

/* Estilos para ocultar las flechas de los input Number */
.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
.mobile {
    display: none;
}
.offcanvas {
    background: var(--bg-card);
    width: 100% !important;
}
.logo-offcanvas {
    width: 70%;
}
.logo-img {
    width: 90%;
    display: flex;
    justify-content: center;
}
.offcanvas-header {
    display: flex;
    justify-content: inherit !important;
}
.offcanvas-body .nav .nav-link {
    gap: 10px;
    height: 45px;
    color: var(--text-primary);
    width: 100%;
    line-height: 1;
    font-size: 15px;
    text-transform: uppercase;
    padding: 4px;
    font-family: Bahnschrift;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    margin: 7px 0px;
    border-radius: 10px;
    font-weight: 500;
}
.offcanvas-body .nav {
    padding: 0px 10px;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 145, 0, 0.466);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(255, 145, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 145, 0, 0);
    }
}
.btns-deposit {
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 500;
}
.btn-close {
    filter: invert(1);
}
.new-apart {
    color: black;
    background: orange;
    padding: initial;
    font-size: 13px;
    animation: pulse 2s infinite;
    height: 25px;
    position: absolute;
    display: flex;
    width: 55px;
    border-radius: 13px;
    line-height: 1;
    text-align: center;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    right: 58px;
}
.flex-column .nav-link i {
    margin: 2px 7px;
    padding-top: 3px;
    font-size: 30px;
    display: flex;
    width: 40px;
    justify-content: center;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--base-sans);
}
.btn-acordion {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    border: none;
}
#btn_deposit span {
    line-height: 1;
}

.opciones-user {
    flex-direction: row;
    flex-wrap: nowrap;
}
#btn_withdraw_menu {
    display: none;
}

.accordion-collapse {
    font-size: 1.2rem;
    margin: -1px 18px;
    gap: 3px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.accordion-button:not(.collapsed) {
    color: var(--text-primary);
    background: transparent;
    box-shadow: none;
    font-weight: 500;
}
.accordion-item {
    border: none;
}
.accordion {
    margin-top: 20px;
    display: none;
}

.card {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

#main-content {
    min-height: calc(100vh - 67px - 311px);
    background: var(--bg-body);
}

/* Estilos para Spinner de carga */

.spinner-container {
    position: fixed;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1100;
}
.spinner-container .spinner-border {
    width: 7rem;
    height: 7rem;
    border-width: 0.5rem;
}

/* Sportsbook loading screen */
.sportsbook-loading {
    min-height: calc(100vh - 67px - 311px);
    display: grid;
    place-items: center;
    padding: 40px 16px;
    text-align: center;
}

.sportsbook-loading > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sportsbook-loading__ring {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 8px solid rgba(255, 171, 1, 0.2);
    border-top-color: #ffab01;
    border-right-color: #ff8a00;
    animation: sportsbook-spin 1.2s linear infinite;
    box-shadow: 0 0 24px rgba(255, 145, 0, 0.25);
}

.sportsbook-loading__text {
    margin-top: 18px;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.sportsbook-loading__subtext {
    margin-top: 6px;
    font-size: 1.05rem;
    opacity: 0.85;
}

@keyframes sportsbook-spin {
    to {
        transform: rotate(360deg);
    }
}
.products-1 {
    gap: 9%;
    justify-content: center;
}
.profile-data{
        margin-bottom: 10px;
}
/* Estilos generales */

html::-webkit-scrollbar {
    -webkit-appearance: none;
}

html::-webkit-scrollbar:vertical {
    width: 7px;
}

html::-webkit-scrollbar-button:increment,
html::-webkit-scrollbar-button {
    display: none;
}

.container-desc::-webkit-scrollbar:horizontal {
    height: 10px;
}

.container-desc::-webkit-scrollbar-thumb {
    background-color: #ff9310;
    box-shadow: 0 2 3 red;
    border-radius: 20px;
    border: 2px solid rgb(255, 179, 0);
}

.container-desc::-webkit-scrollbar {
    -webkit-appearance: none;
}

.container-desc::-webkit-scrollbar:vertical {
    width: 7px;
}

.container-desc::-webkit-scrollbar-button:increment,
.container-desc::-webkit-scrollbar-button {
    display: none;
}
.container-desc::-webkit-scrollbar:horizontal {
    height: 10px;
}
.container-desc::-webkit-scrollbar:horizontal {
    height: 10px;
}
.container-desc::-webkit-scrollbar-track {
    border-radius: 10px;
}
html::-webkit-scrollbar-thumb {
    background-color: #ff9310;
    box-shadow: 0 2 3 red;
    border-radius: 20px;
    border: 2px solid rgb(255, 179, 0);
}
.header-modal {
    display: flex;
    padding: 5px 0px 0px 0px;
    justify-content: center;
    border-bottom: 0px solid #1b1919;
    flex-direction: column;
}
.footer-modal {
    border-top: 2px solid #1b1919;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.modal-dialog-centered {
    justify-content: center;
}
html::-webkit-scrollbar-track {
    border-radius: 10px;
}
.text-on-modal {
    margin-bottom: 0.4rem;
}
.title-bets {
    padding: 0px 50px;
    text-transform: uppercase;
    color: var(--text-primary);
    font-size: 20px;
}
/* ...existing code... */

.slider-card {
    position: relative;
    overflow: visible;
    border-radius: 8px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

/* imagen dentro de la tarjeta */
.slider-card .product-img {
    display: block;
    width: 100%;
    border: 2px solid #ffc107;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* overlay centrado (invisible por defecto) */
.promo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    background: #000000a3;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    pointer-events: none;
    border: 2px solid #ffcc00;
    opacity: 0;
    transition: opacity 0.18s ease;
}
.promo-badge {
    position: absolute;
    top: 10px;
    left: 12px;
    background: #ffcc00;
    color: #111;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    pointer-events: auto;
}

.promo-cta {
    pointer-events: auto;
    background: #ffcc00;
    color: #111;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 10px 2px #ffcc00;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

/* efecto hover: levantar, escalar y resplandor amarillo */
.slider-card:hover,
.slider-card:focus-within {
    transform: translateY(-8px) scale(1.03);
    z-index: 30;
}

/* mostrar overlay y boton al hover */
.slider-card:hover .promo-overlay,
.slider-card:focus-within .promo-overlay {
    opacity: 1;
}

.slider-card:hover .promo-cta,
.slider-card:focus-within .promo-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar personalizado: aplicar la clase .custom-scrollbar al contenedor deseado */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #ff9310 transparent;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #ff9310;
    box-shadow: 0 2 3 red;
    border-radius: 20px;
    border: 2px solid rgb(255, 179, 0);
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #ff9310;
}

.title-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 2px solid #ffc107;
}

.tittles-contents {
    font-size: 30px;
    margin-top: 20px;
    line-height: 1.1;
    margin-bottom: 0rem;
    border-bottom: none;
}
.containers {
    margin-top: 35px;
}
.modal-form {
    background: var(--bg-secondary);
    color-scheme: light;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    
}

.navbar {
    background: var(--bg-navbar);
}
.user-panel .card {
    background-color: var(--bg-secondary);
}

.body-panel {
    background-color: var(--bg-secondary);
    border-radius: 25px;
    border: 2px solid goldenrod;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #ffd12b;
    color: black;
}

.dropdown-toggle::after {
    display: none;
}

.title-sections .see-more {
    background: linear-gradient(45deg, #f83700, #faca22);
    color: white;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 0.4rem;
    font-size: 21px !important;
    color: white;
    line-height: 1.2;
    gap: 6px;
    display: flex;
    align-items: center;
    margin: 12px;
}
.iti {
    display: table-cell;
    --iti-path-flags-1x: url("/images/flags.png");
    --iti-path-flags-2x: url("/images/flags@2x.png");
    --iti-path-globe-1x: url("/images/globe.png");
    --iti-path-globe-2x: url("/images/globe@2x.png");
}
.iti .selected-flag {
    z-index: 4;
}
.iti .country-list {
    z-index: 5;
}
.input-group .iti .form-control {
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 4px;
}

#button-w {
    z-index: 1000;
}

.wcs_popup_input input {
    color: var(--input-text);
    background-color: var(--input-bg);
}


/* Header y Navbars */

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
    margin-left: 1rem;
    padding: 0.4rem 0.9rem;
    font-weight: 700;
    position: relative;
    display: flex;
    width: 180px;
    background-clip: padding-box;
    transition: transform 180ms ease, color 180ms ease;
    --menu-grad-a: #ff9310;
    --menu-grad-b: #ffd167;
    --menu-border-thickness: 3px;
    justify-content: center;
}

.navbar-expand-lg .navbar-nav .nav-link.sports-lnk {
    color: #fff;
}

.logo-home {
    width: 80%;
}

.products-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logout-elements,
.logged-elements,
.deskmenu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.logout-elements,
.logged-elements {
    justify-content: flex-end;
}

.header-dropdowns .logout-elements .btn {
    font-weight: bold;
    height: 40px;
}

.header-dropdowns .logout-elements .btn:not(:last-child) {
    margin-right: 1rem;
}

.header-dropdowns .logout-elements .login-btn {
    background: #ffffff00;
    color: var(--text-primary);
    border: 2px solid gold;
}
.img-login {
    width: 70%;
}

.header-dropdowns .logout-elements .login-btn:hover {
    background: #00990000;
    border: 2px solid rgb(255, 145, 0);
}

.dropdown-menu.show {
    margin-top: 4px;
    border: 1px solid #ffd167;
}

.header-dropdowns .dropdown-menu .dropdown-item {
    font-weight: 600;
    font-size: 14px;
    color: #212529;
}

.minimenu .dropdown-toggle {
    background-color: #ffde67;
    padding: 0 0.5rem;
}

.minimenu .dropdown-toggle i {
    font-size: 1.5rem;
}

#dropdown-profile .dropdown-toggle,
#dropdown-currency .dropdown-toggle {
    --dropdown-after-color: #ffde67;
}

#dropdown-profile .dropdown-toggle:hover,
#dropdown-currency .dropdown-toggle:hover {
    --dropdown-after-color: #d1af4f;
}
.tittles-contents {
    color: var(--text-primary);
}
#dropdown-profile .dropdown-toggle::after,
#dropdown-currency .dropdown-toggle::after {
    display: inline-block;
    color: var(--dropdown-after-color);
}

.logged-elements .btn-deposit {
    --bs-btn-color: #1fd331;
    --bs-btn-border-color: #1fd331;
    display: flex;
    flex-wrap: nowrap;
}

.logged-elements .btn-deposit span {
    color: white;
}

.logged-elements .dropdown .user-menu {
    display: inline;
}

.logged-elements .notification-badge {
    font-size: 0.8rem;
    font-weight: normal;
    padding: 2px 5px;
    position: absolute;
    right: 7px;
}

.navbar .nav-transa-btns {
    display: flex;
    column-gap: 0.5rem;
    padding-top: 2%;
}

.navbar .nav-transa-btns .btn {
    display: flex;
}

.navbar .nav-transa-btns .btn-sm {
    font-size: 0.8rem;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.3rem;
}

.navbar .balance-container {
    text-decoration: none;
    color: var(--text-primary);
    text-transform: uppercase;
}

.navbar .balance-container h6 {
    font-size: 12px;
}

.navbar .user-balance {
    display: flex;
    align-items: center;
    margin: 0.1rem 0 0 0;
    white-space: nowrap;
}

.navbar .user-balance .cash-icon {
    display: none;
    font-size: 1.5rem;
    color: #d1af4f;
    padding: 0 0.5rem 0.2rem 0;
}
.navbar .user-balance .balance-number {
    display: inline-block;
    color: var(--text-primary);
    border-radius: 0.325rem;
    padding: 0 0.5rem;
    font-style: italic;
    font-size: 0.95rem;
}
.balance-number i {
    display: none;
}

.navbar .user-balance .USD {
    background-color: #ababab00;
    padding: 5px 12px;
    box-shadow: inset 0 0 5px #009717;
}

.navbar .user-balance .VES {
    background-color: #ababab00;
    padding: 5px 12px;
    box-shadow: inset 0 0 5px #22c9c9;
}

.navbar .user-balance .COP {
    background-color: #ababab00;
    padding: 5px 12px;
    box-shadow: inset 0 0 5px #ffde67;
}

.navbar .user-balance .CLP {
    background-color: #ababab00;
    padding: 5px 12px;
    box-shadow: inset 0 0 5px #da0505;
}

.navbar .user-balance .PEN {
    background-color: #ababab00;
    padding: 5px 12px;
    box-shadow: inset 0 0 5px #13ffb8;
}

.navbar .user-balance .PYG {
    background-color: #ababab00;
    padding: 5px 12px;
    box-shadow: inset 0 0 5px #154ce3;
}

.header-dropdowns .user-menu img {
    border-radius: 100%;
}

/* Modal de login */

.bs-icon {
    --bs-icon-size: 0.75rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: var(--bs-icon-size);
    width: calc(var(--bs-icon-size) * 2);
    height: calc(var(--bs-icon-size) * 2);
    color: var(--primary);
}

.bs-icon-xs {
    --bs-icon-size: 1rem;
    width: calc(var(--bs-icon-size) * 1.5);
    height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
    --bs-icon-size: 1rem;
}

.bs-icon-md {
    --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
    --bs-icon-size: 2rem;
}

.bs-icon-xl {
    --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
    color: white;
    background: linear-gradient(
        329deg,
        rgba(0, 0, 0, 1) 9%,
        rgb(61 3 4) 37%,
        rgb(75 34 9) 53%,
        rgb(69 56 7) 64%,
        rgba(0, 0, 0, 1) 91%
    );
}

.bs-icon.bs-icon-primary-light {
    color: var(--primary);
    background: rgba(0, 123, 255, 0.2);
}

.bs-icon.bs-icon-semi-white {
    color: var(--white);
    background: rgba(255, 255, 255, 0.5);
}

.bs-icon.bs-icon-rounded {
    border-radius: 0.5rem;
}

.bs-icon.bs-icon-circle {
    border-radius: 50%;
}

#reset_password_form .modal-dialog,
#login_form .modal-dialog {
    display: flex;
    justify-content: center;
}

#reset_password_form .modal-body,
#login_form .modal-body {
    padding: 1rem 3rem;
}

#reset_password_form .modal-content,
#login_form .modal-content {
    border-radius: 0.25rem;
    width: 25rem;
    height: 30rem;
}

#login_form .form-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login_form .form-title h3 {
    color: var(--text-primary);
}

#login_form p,
#register_form p {
    margin: 0;
}
.nav-link {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    padding: 5px;
}
.fa-futbol {
    --fa-primary-color: #000000;
    --fa-secondary-color: #ffffff;
    margin: 4px;
    --fa-secondary-opacity: 1;
}
#products .card-alt {
    position: relative;
    min-height: 595.5px;
    min-width: 305px;
}

.btn-volver-lobby {
    position: absolute;
    top: 60px;
    left: 10px;
    z-index: 99999999;
    display: flex;
    padding: 6px 12px;
    gap: 3px;
    width: 8%;
    font-size: 16px;
    background-color: #007bff33;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: capitalize;
    font-weight: 600;
    align-items: center;
}
.dropdown-item i {
    margin: 6px;
}
.btn-volver-lobby:hover {
    scale: 1.05;
    transition: all 500ms ease;
    box-shadow: 0px 0px 6px 1px #ffab00;
}
.img-btn-lobby {
    width: 27%;
}
.nav-link .fa-slot-machine {
    --fa-primary-color: #ff0000;
    --fa-secondary-color: #ffffff;
    margin: 4px;
    --fa-secondary-opacity: 1;
}
.nav-link .fa-cards {
    --fa-primary-color: #ffffff;
    --fa-secondary-color: #ff6060;
    margin: 4px;
    --fa-secondary-opacity: 1;
}
.fa-horse-saddle {
    --fa-primary-color: #a65406;
    --fa-secondary-color: #c5c5c5;
    margin: 4px;
    --fa-secondary-opacity: 1;
}
.fa-clover {
    color: green;
    margin: 4px;
}
/* Modal de registro */

#register_form .modal-dialog {
    display: flex;
    justify-content: center;
}

#register_form .modal-body {
    padding: 1.5rem 2.5rem;
}
.general-info {
    display: flex;
    margin-top: 20px;
    align-content: center;
    align-items: center;
    border-top: 2px solid #f83701;
}
#register_form .modal-content {
    display: flex;
    justify-content: center;
    width: 35rem;
    min-height: 30rem;
}

#register_form .btn-close {
    position: absolute;
}

#register_form h2,
#register_form h6 {
    color: var(--text-primary);
    text-align: center;
}

#register_form h6 {
    margin-bottom: 2rem;
}
.btn-register-div {
    display: flex;
}
#btnRegister {
    border-radius: 20px;
    width: 40%;
    text-transform: uppercase;
    color: #ff6702;
    margin: auto;
    font-weight: 500;
    background: transparent;
}
.form-control::placeholder,
.form-control-pill::placeholder {
    color: var(--text-primary);
    opacity: 1; /* for Firefox */
}
.form-control span {
    color: #989898;
}
#register_form .input-group-text {
    color: #ffc61d;
    background: transparent;
    border: 1px solid goldenrod;
}
.form-control {
    background: transparent;
    border: 1px solid goldenrod;
    color: var(--text-primary);
    border-radius: 0px 15px 15px 0px;
}
#register_form .iti,
#profile-panel .iti,
#payment-methods .iti,
#withdraw-methods .iti {
    width: calc(100% - 42px);
    color: black;
}


#register_form #phoneDiv .invalid-feedback,
#progile-panel #editPhoneDiv .invalid-feedback {
    display: block;
}

/* Separadores */

.separator {
    height: 0px;
    background: linear-gradient(301deg, #facc22, #f83600);
}

/* Carrusel */

.carousel-item {
    overflow: hidden;
    transition: transform 3s cubic-bezier(0.2, 0.32, 0.68, 0.73);
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: flex;
    justify-content: center;
}

/* iFrame */

.frame-container {
    height: 800px;
    overflow: hidden;
    position: relative;
}

.frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
}

/* Panel de Usuario */

.user-panel {
    padding: 1rem 1.5rem;
    color-scheme: light;
}

.user-panel .under-construction {
    margin: 3rem 0rem;
    padding: 2rem;
    width: 85%;
    display: flex;
    justify-content: center;
    background-color: #6a6d70;
    color: #eccd0c;
    border-radius: var(--bs-border-radius);
}

.user-panel .forms-card {
    border: none;
    background-color: #21252900;
}

.user-panel .forms-card .panel-menu {
    padding: 0.3rem 0.5rem;
    margin-bottom: 1.5rem;
}

.panel-menu .profile-data {
    color: var(--text-primary);
}

.panel-menu .profile-data .profile-avatar {
    width: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.5rem;
}

.panel-menu .profile-data .profile-avatar img {
    width: 100%;
    height: auto;
}

.profile-data .profile-level h5 {
    text-align: center;
    text-transform: uppercase;
    color: #ffc300;
}

.panel-menu .menu-divider {
    margin: 1rem 1rem;
}

.menu-nav .nav-item {
    margin-bottom: 0.1rem;
}

.title-row {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1.5rem;
}
.carousel-item {
    border-radius: 2px;
}
.panel-filter .form-label {
    display: none;
}
.panel-title {
    text-align: center;
    color: white;
    background: linear-gradient(45deg, #f83c01, #ffc500);
    margin: 0 auto;
    padding: 0.3rem 1.5rem;
    width: 100%;
    max-width: 23rem;
    border-radius: 0.375rem;
}
#btnUpdateInfo {
    background-color: #ffb600;
    color: #000000;
    text-transform: uppercase;
    box-shadow: 0 0 6px #ffb600;
    font-weight: bold;
}

.panel-title h5 {
    margin: 0;
}

.title-row .panel-filter {
    position: absolute;
    width: 10rem;
    padding-right: 1rem;
    color-scheme: light;
}

.title-row .panel-filter .form-label {
    color: #ffde67;
}

#registerForm #birthdatePicker,
.title-row .panel-filter .form-control {
    display: flex;
    font-weight: 500;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.items-cards {
    display: flex;
    width: 80%;
    scale: 1;
    flex-direction: row;
    flex-wrap: nowrap;
}
.selector-desktop {
    width: 50px;
    margin: 4px 4px;
}
#registerForm #birthdatePicker {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.title-row .panel-filter .form-control span {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sliders-cards {
    display: flex;
}
.btn-sesion {
    width: 90px;
    font-size: 12px;
    font-family: "Bahnschrift";
}

.table {
    --bs-table-striped-bg: rgb(157 156 156 / 14%);
}
.table > :not(caption) > * > * {
    border-bottom-width: 0px;
}
.back-button{
    padding: 6px;
    background: linear-gradient(45deg, #f83700, #faca22);
    color: white;
    margin: 29px;
    font-size: 20px;
    border-radius: 20px;
}
.back-button i{
        margin-right: 5px;
}
.panel-content {
    padding: 0 1rem;
    color: var(--text-primary);
}

.panel-content label {
    font-weight: bold;
    margin: 0px;
}

.panel-table .dataTable_wrapper {
    padding: 1rem;
}

.panel-table .table-responsive::-webkit-scrollbar {
    background: #bdbdbd;
    height: 6px;
    border-radius: 7px;
}

.panel-table .table-responsive::-webkit-scrollbar-thumb {
    background: #797979;
    border-radius: 7px;
}

.panel-table .table-responsive {
    border-radius: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.panel-table .table {
    padding-top: 0.5rem;
    font-size: 14px;
}

/* Estilos específicos para la tabla dentro del panel */
.panel-table .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.panel-table .table thead th {
    background: #ffffff;
    color: #222222;
    font-weight: 700;
    padding: 10px 14px;
    text-transform: uppercase;
    font-size: 12px;
    border: none;
}
#history_table_info{
    justify-content: center;
}
.panel-table .table tbody td {
    background: #ffffff;
    color: #222222;
    padding: 10px 14px;
    vertical-align: middle;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.panel-filter .form-group .form-control {
    border-radius: 15px 15px 15px 15px;
}
.panel-table .table tbody tr:hover td {
    background: #f6f6f6;
}

/* Mantener las esquinas redondeadas visibles */
.panel-table .table thead th:first-child {
    border-top-left-radius: 8px;
}
.panel-table .table thead th:last-child {
    border-top-right-radius: 8px;
}
.panel-table .table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
.panel-table .table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

/* Estilos específicos para la tabla de historial */
.panel-table .table-responsive > #history_table {
    background: #ffffff;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.panel-table .table-responsive > #history_table thead {
    background-color: #f8f9fa;
}

.panel-table .table-responsive > #history_table thead th {
    color: #222;
    font-weight: 700;
    padding: 10px 14px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.panel-table .table-responsive > #history_table tbody td {
    padding: 10px 14px;
    color: #333;
    vertical-align: middle;
    background: transparent;
}

/* filas alternadas (zebra) sutil */
.panel-table .table-responsive > #history_table tbody tr:nth-child(even) td {
    background: #fbfbfb;
}

/* sombra y radio del contenedor (sobre-escribe inline si es necesario) */
.panel-table .table-responsive {
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.panel-table .table-responsive > #messages_table,
.panel-table .table-responsive > #history_table {
    min-width: 760px;
}

/* Asegurar esquinas en thead/tbody para el radio mayor */
.panel-table .table-responsive > #history_table thead th:first-child {
    border-top-left-radius: 12px;
}
.panel-table .table-responsive > #history_table thead th:last-child {
    border-top-right-radius: 12px;
}
.panel-table .table-responsive > #history_table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}
.panel-table .table-responsive > #history_table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

/* Compatibilidad fuera de .panel-table: clase dedicada para wrapper de historial */
.history-table-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.history-table-wrapper > #history_table {
    background: #ffffff;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.history-table-wrapper > #history_table thead {
    background-color: #f8f9fa;
}

.history-table-wrapper > #history_table thead th:first-child {
    border-top-left-radius: 12px;
}
.history-table-wrapper > #history_table thead th:last-child {
    border-top-right-radius: 12px;
}
.history-table-wrapper > #history_table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}
.history-table-wrapper > #history_table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

/* Responsive: convertir filas en tarjetas en móviles pequeños */
@media (max-width: 575px) {
    .history-table-wrapper {
        box-shadow: none;
        background: transparent;
        padding: 0 8px;
    }

    .history-table-wrapper > #history_table {
        border: none;
    }

    .history-table-wrapper > #history_table thead {
        display: none;
    }

    .history-table-wrapper > #history_table tbody tr {
        display: block;
        background: #ffffff;
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.04);
    }

    .history-table-wrapper > #history_table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        border-top: none;
    }

    .history-table-wrapper > #history_table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b6b6b;
        margin-right: 8px;
        flex: 0 0 auto;
    }

    .history-table-wrapper > #history_table tbody td .badge {
        font-size: 12px;
        padding: 4px 6px;
    }

    .history-table-wrapper > #history_table tbody td.text-danger,
    .history-table-wrapper > #history_table tbody td.text-success {
        text-align: right;
    }

    /* Ajustes de tipografía para evitar cortes */
    .history-table-wrapper > #history_table tbody td span.d-block { display: inline-block; }
}
.dataTables_filter label{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    margin-left: 6px;
    align-items: center;
}
.panel-table .dataTables_info,
.panel-table .dataTables_paginate,
.panel-table .dataTables_filter {
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
}

.panel-table .dataTables_filter input,
.panel-table .dt-buttons .dt-button {
    border-radius: var(--bs-border-radius);
}
.sliders-cards {
    margin: 10px;
    width: 90%;
}
.payment-container .methods-row {
    justify-content: space-evenly;
    gap: 3rem 1rem;
}

.payment-container .payment-content {
    background-color: #353e49e6;
    width: 300px;
    height: 150px;
    border-radius: 1.25rem;
    padding: 0;
}

.payment-container .dropdown-toggle::after {
    display: inline-block;
    color: var(--bs-body-color);
}

.payment-method {
    width: 100%;
    border-radius: 1.25rem;
}

.payment-method .payment-img {
    height: 100%;
    padding: 0.6rem;
    text-align: center;
}

.payment-method .payment-img img {
    height: inherit;
    border-radius: 1.25rem;
}

.payment-method .payment-img .binance-img {
    width: 189px;
    height: 47px;
    margin-top: 36px;
}

.payment-container .min-amount {
    color: black;
    padding: 0.25rem;
    text-align: center;
    border-radius: var(--bs-border-radius);
}

.payment-container .payment-details {
    text-align: center;
    margin-bottom: 1rem;
}

.payment-container .detail-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.25rem;
}

.payment-container .btn-copy {
    padding: 0.175rem 0.45rem;
    border: none;
    margin-left: 0.5rem;
}

.payment-container .whatsapp-btn {
    padding: 0.175rem 0.45rem;
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

#forms-container .modal-title {
    color: #ffde67;
}

#manualRecharge .payment-content {
    background-color: #455263;
}

/* Contenedor de Productos */
.footer-img {
    width: 10%;
    filter: drop-shadow(2px 4px 6px black);
}
.payment-info {
    margin-top: 1rem;
    gap: 3%;
    display: flex;
    justify-content: center;
}
#products .product-col {
    margin-top: 15px;
    width: 25%;
}
.contenedor-prods {
    display: flex;
    justify-content: center;
    padding: 0px 50px;
    align-items: center;
}
.logo-movil {
    display: none;
}

.titu-produ-2 {
    font-size: 24px;
    margin-bottom: 6px;
}
.playnow {
    background: #e95a15;
    padding: 5px;
    width: 80px;
    display: flex;
    color: black;
    margin-left: 4px;
    border: 2px solid #fed600;
    border-radius: 4px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    justify-content: center;
}
.product-col a {
    color: transparent;
}
#products .product-card:hover {
    box-shadow: 0 0 15px 2px #ff4a01;
}
.titu-produ {
    font-size: 24px;
    margin-bottom: 6px;
}

.banner-text-1 {
    top: 64%;
    position: absolute;
    left: 4.5%;
}
.logo-div {
    width: 90%;
    padding: 0px;
}
.large-product {
    height: 32rem;
}
.img-home {
    width: 17rem;
    position: absolute;
    top: -7%;
    left: 29%;
}

.banner-text-2 {
    top: 84%;
    position: absolute;
    left: 2%;
}
.user-options {
    background: none;
    color: gold;
    border: none;
    font-size: 23px;
}
/* Footer */

.footer {
    padding: 1rem 0;
    color: var(--bs-body-color);
}

.elements-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-footer {
    text-align: center;
}

.social-footer {
    font-size: 1.2rem;
    margin-bottom: 0rem;
}

.social-icons {
    text-decoration: none;
    color: #000;
}

.social-icons:not(:last-child) {
    margin-right: 10px;
}

.footer-text {
    color: #000;
    font-weight: 500;
    margin: 0;
}
.movil {
    display: none;
}

.drop-tipos {
    right: auto !important;
}
.btn-big-loto {
    height: 0px;
}
.accordion-button::after {
    filter: grayscale(1);
}
.carousel {
    scale: 1;
    border-radius: 0px;
}

.menu .btn-warning {
    background: var(--bg-body);
    color: var(--button-color);
    border: 2px solid var(--button-color);
    font-size: 19px;
    padding: 3px 10px;
}
.footer {
    margin-top: 20px;
    padding: 21px 5%;
    background-color: var(--bg-footer);
    border-radius: 20px 20px 0px 0px;
    align-items: center;
    justify-content: space-between;
    scale: 1;
    border: 2px solid var(--footer-border);
    gap: 1rem;
}

.carousel-item img {
    border-radius: 0px;
}
.small-text {
    display: flex;
    justify-content: center;
}
.big-text {
    display: flex;
    justify-content: center;
}

.other-containers {
    margin-top: 15px;
    border-radius: 20px;
}
.api-deportes {
    border-radius: 20px;
    box-shadow: 0px 0px 5px 2px #ffffff4f;
}
.part-1,
.part-2 {
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: center;
}

.container-bar {
    width: 100%;
    max-width: 50px;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 100;
}
.container-bar a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 39px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: all 500ms ease;
    color: #fff;
}
.container-bar a:hover {
    background: #1c1c1c;
}
.container-bar .fa-whatsapp {
    background: #007100;
    border-radius: 5px 0px 0px 0px;
}

.container-bar #title {
    position: absolute;
    background: #1c1c1c;
    padding: 0px 8px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
    font-size: 15px;
    top: 12px;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.container-bar a:hover #title {
    opacity: 1;
    visibility: visible;
    right: 57px;
}
.container-bar #title:after {
    position: absolute;
    content: "";
    border-left: 7px solid #1c1c1c;
    border-right: 6px solid transparent;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    left: 100%;
    top: 8px;
}
#btn-social {
    display: none;
}

.fa-user-headset {
    cursor: pointer;
    transition: all 0.4s;
    font-size: 2rem;
    left: 34%;
    margin-bottom: 5px;
    display: inline-block;
    transform: scaleX(-1);
    --fa-primary-color: #1f43b7;
    --fa-secondary-color: #1f5eb7;
    position: relative;
}

.icon-social {
    left: 20%;
    position: relative;
    transition: all 0.4s;
    transform: translateX(100%);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
}
#btn-social:checked ~ .icon-social {
    transform: translateX(0%);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0);
}
.img-sup {
    width: 40%;
}
.sep1 {
    height: 6px;
}
.whatsapp_chat_support .bi-whatsapp {
    font-size: 48px;
    position: relative;
    top: 5px;
    left: 1px;
}
.header-dropdowns {
    display: flex;
    flex-direction: row-reverse;
}
.copyright p {
    font-weight: 600;
    font-size: 16px;
    text-indent: 0px;
    color: var(--text-primary);
}

.controls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8%;
    align-items: center;
    width: 60vw;
}
.menufoot i {
    font-size: 25px;
    margin: 2px;
}
.options-general {
    color: var(--text-primary);
    text-decoration: none;
    margin: 5px 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 500ms ease;
}
.depositar-btn {
    background: linear-gradient(45deg, #f83700, #faca22);
    color: white;
    font-size: 17px !important;
    border: none;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 4px 8px !important;
    display: flex;
    align-items: center;
}
.options-general:hover {
    color: #ff9c21;
    scale: 1.04;
}
.widget-atlas {
    margin: 10px 0px;
}
.foot-img {
    width: 100%;
}
.footer {
    display: flex;
    flex-direction: column;
}
.sup-footer {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: nowrap;
}
.close-log {
    position: absolute;
    bottom: 91%;
    left: 90%;
    background: none;
    border: none;
    font-size: 24px;
    color: gold;
    text-shadow: 0px 2px 5px dimgrey;
}
.mini-menu-games {
    position: fixed;
    background: #2da4cd;
    padding: 7px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    top: 85%;
    left: 1%;
    cursor: pointer;
}
.mini-menu-games:hover {
    scale: 1.1;
    transition: all 500ms ease;
}
.principal-icon {
    z-index: 99999;
    position: relative;
    top: 6px;
    text-shadow: 0 0 5px black;
    color: white;
    left: 5px;
}
.principal a {
    font-size: 17.1px;
}
.principal .secondary-icon {
    position: absolute;
}

.si-1 {
    font-size: 18px;
    left: -9px;
    text-shadow: 0 0 2px black;
    top: -5px;
}
.si-2 {
    font-size: 21px;
    left: -5px;
    text-shadow: 0 0 2px black;
    top: -1px;
}
.icons-footer {
    color: black;
    padding: 8px;
    font-size: 18px;
}
.copyright {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
}
.foot-info {
    text-indent: 0px;
    margin: 0px;
}
.validation-control {
    border-radius: 10px;
}
.controls a {
    color: #ffab00;
    font-weight: 900;
    gap: 4px;
    display: flex;
    font-family: sans-serif;
    text-decoration: none;
    align-items: center;
}
.menufoot svg {
    color: black;
}

.slick-arrow {
    width: 30px;
    height: 30px;
    font-size: 1px;
    scale: 0.7;
    color: transparent;
    top: 9px;
    position: absolute;
}
.slick-dots {
    display: none;
}
.slick-prev {
    left: 0px;
    background: white url(../images/arrow.png);
    background-repeat: no-repeat;
    background-size: 79%;
    transform: rotate(-180deg);
    border-radius: 50%;
    border: 2px solid #ffc600;
    z-index: 99999;
    background-position: center;
}
.slick-next {
    right: 0px;
    background: white url(../images/arrow.png);
    background-repeat: no-repeat;
    background-size: 79%;
    border-radius: 50%;
    border: 2px solid #ffc600;
    background-position: center;
}

.slider .payment-info-mobile {
    display: flex;
    width: calc(200px * 6); /* Duplica la cantidad de elementos */
    animation: scroll 40s linear infinite;
}
.slider {
    overflow-x: hidden;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(
            calc(-200px * 3)
        ); /* Desplaza solo la mitad del contenido */
    }
}

/* When the slider is animated (auto scroll), make sure drag mode disables animation */
.drag-scroll.auto-scroll {
    animation: none !important;
}
/* Wrapper and arrow button styles */
.drag-scroll-wrapper,
.payment-info.pc-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    transition: background 150ms ease, transform 120ms ease;
    flex: 0 0 auto;
    line-height: 0px;
    border-radius: 50%;
    border: 2px solid goldenrod;
}

.drag-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}
.drag-btn:active {
    transform: translateY(0);
}

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

/* Ensure the inner list doesn't wrap so horizontal scroll is possible */
.drag-scroll > ul,
.drag-scroll > .nav,
.drag-scroll > .payment-info-mobile {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.drag-scroll > ul > li {
    flex: 0 0 auto;
}

.nav-slider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-slider .nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    position: relative;
    height: 29px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    border: 2px solid #ffc107;
    cursor: pointer;
    top: 10px !important;
}
.icons-menu {
    width: 25%;
    padding: 6px;
}

.nav-slider .nav-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}
.nav-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    flex: 1 1 auto;
    min-width: 0;
}

/* Prevent layout flash: hide nav-slider until Swiper is initialized
   but keep reserved space to avoid page jump. */
.nav-slider {
    opacity: 0;
    visibility: hidden;
    min-height: 48px; /* reserve approximate height */
}
.nav-slider.is-ready {
    opacity: 1;
    visibility: visible;
    transition: opacity 220ms ease;
}

.swiper-button-next,
.swiper-button-prev {
    svg {
        height: 60% !important;
        object-fit: contain;
        transform-origin: center;
        width: 85% !important;
        fill: currentColor;
        pointer-events: none;
    }
}
.nav-track ul {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
}
.nav-track ul li {
    flex: 0 0 auto;
    scroll-snap-align: start;
    /* Ensure items have a minimum width so the track can overflow on smaller viewports */
    min-width: 100px;
}
.arrow-prev {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}
.arrow-next {
    display: flex;
    width: 50px;
    height: 50px;

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

/* Hide scrollbar visually but keep accessibility */
.nav-track::-webkit-scrollbar {
    height: 6px;
}
.nav-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
}
.nav-track {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}
.swiper-slide {
    display: flex !important;
    justify-content: center;
}
.promo-detail-panel {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
}
.promo-detail-panel.d-none {
    display: none;
}
.promo-detail-content {
    background: var(--des-container);
    color: #fff;
    width: 75%;
    max-width: 95%;
    border-radius: 12px;
    display: flex;
    border: 2px solid var(--container-borders);
    gap: 18px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.8);
}

/* Ensure the promo panel never grows beyond the viewport and children can scroll */
.promo-detail-content {
    max-height: 90vh;
    overflow: hidden; /* prevent panel from expanding; inner areas will scroll */
}
.container-desc {
    background: var(--info-box);
    border-radius: 10px;
    overflow: auto;
    padding: 10px;
    display: flex;
    flex: 1;
    box-shadow: 0px 0px 10px 7px var(--shadow);
}

/* allow flex children to shrink correctly so internal scroll works */
.container-desc {
    min-height: 0;
}
.promo-detail-left {
    width: 35%;
}
#promo-detail-desc {
    font-weight: 600;
    font-size: 19px;
    color: var(--text-primary);
    flex: 1 1 auto;
    min-height: 0; /* allow flex children to shrink properly */
    text-align: justify;
    overflow-y: auto; /* scroll only vertically when content overflows */
}
.promo-detail-left img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.promo-detail-desc {
    font-size: 24px;
}
.promo-detail-right {
    flex: 1;
    width: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
}

/* allow children (the paragraph) to scroll inside this right column */
.promo-detail-right {
    min-height: 0;
}
.promo-detail-right h2 {
    margin-top: 0;
    color: #fe3300;
    font-size: 3rem;
    text-transform: uppercase;
}
.promo-detail-body {
    margin-top: 12px;
    color: #d6d6d6;
}
.promo-detail-actions {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    position: absolute;
    right: 4vw;
    top: 2vh;
}

.promo-image-wrapper img.promo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}
.promo-image-skeleton {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 8px;
    background: linear-gradient(90deg, #0b1220 0%, #0f1a2a 25%, #0b1220 50%);
    background-size: 200% 100%;
    animation: shimmer 1.2s linear infinite;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.promo-detail-panel .promo-detail-content {
    align-items: flex-start;
}
@media (max-width: 768px) {
    .promo-image-wrapper {
        max-width: 100%;
        width: 100%;
    }
}
.promo-detail-close {
    position: absolute;
    right: 26px;
    top: 18px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    .promo-detail-content {
        flex-direction: column;
    }
    .promo-detail-left img {
        max-width: 100%;
        width: 100%;
    }
}
.promos-cards {
    width: 22%;
}

@media (min-width: 992px) {
    .navbar-expand-lg .offcanvas {
           background: var(--bg-card) !important;

    }
}
.accordion-button:not(.collapsed) {
    color: var(--text-primary);
    background: var(--bg-body);
    box-shadow: none;
    border-bottom: 2px solid var(--footer-border);
    font-weight: 500;
}
.accordion-item {
    color: var(--text-primary);
    background: var(--bg-body);
}
.accordion-item {
    border: 2px solid var(--footer-border);
}
.promotions-container {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}
.accordion {
    margin-top: 20px;
    display: none;
}
.btn-close-promos {
    background: linear-gradient(45deg, #f83700, #faca22);
    font-size: 22px;
    text-transform: uppercase;
    line-height: 0;
    border-radius: 50%;
    color: #ffffff;
    width: 40px;
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.nav-track .nav-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    font-size: 12px;
    padding: 6px 0px;
    justify-content: center;
}
.deskmenu {
    overflow: hidden;
    position: relative;
    display: block;
}
/* Hide default scrollbar when using arrow buttons (visually) */
.nav-scroll::-webkit-scrollbar {
    height: 0;
}
#editCountry{
    background: transparent;
    color: var(--text-primary);
    border: 1px solid goldenrod;
}
.nav-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

/* Make buttons semi-transparent on small screens */
@media (max-width: 767px) {
    .drag-btn {
        width: 30px;
        height: 30px;
    }
}
.nav-bar-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* Media Querys */

/* ================= Global Styles ================= */
/* Aquí irían los estilos que se aplican a todos los tamaños de pantalla */

@media (992px <= width <= 1200px) {
    .navbar .nav-transa-btns .btn {
        font-size: 0.8rem;
        padding: 0.15rem 0.25rem;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        margin-left: 0.35rem;
        padding: 0.1rem 0.3rem;
        font-size: 0.95rem;
    }
}

/* ================= Media Queries (min-width) ================= */

/* ----- min-width: 576px ----- */
@media (min-width: 576px) {
    .carousel-item {
        height: 185px;
    }
    #products {
        padding: 0.75rem 3rem;
    }
}

/* ----- min-width: 615px ----- */
@media (min-width: 615px) {
    .frame-container {
        height: calc(100vh - 66px);
        overflow: hidden;
    }

    .frame-container iframe {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
}

/* ----- min-width: 768px ----- */
@media (min-width: 1281px) {
    .carousel-item {
        height: 205px;
    }
    #products .product-card {
        --bs-card-height: 21px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        border: none;
        height: 100%;
        margin: auto;
        width: 100%;
        border-radius: 0px;
        transition: all 0.35s ease-in-out;
    }
    .menu {
        display: none;
    }
    .panel-content {
        padding: 0 3rem;
    }
    .product1-content1 {
        gap: 107px;
        display: flex;
        justify-content: center;
    }
    .product1-content2 {
        gap: 107px;
        display: flex;
        justify-content: center;
    }

    .img-home {
        width: 8.5rem;
        position: absolute;
        top: -6%;
        left: 30%;
    }
    .banner-text-1 {
        top: 65%;
        scale: 0.85;
        position: absolute;
        left: 1%;
    }
    .banner-text-2 {
        top: 79%;
        scale: 0.87;
        position: absolute;
        left: 2%;
    }
    .product-img-alt {
        width: 16rem;
        position: absolute;
        top: 13%;
        left: -6%;
    }
    #products .card-alt {
        position: relative;

        min-width: 230px;
    }
    .container-desc {
        min-height: 0;
        max-height: 580px;
    }
    .responsive-transa-btns {
        display: none;
    }
}
.btn-show-pass{
    border: 1px solid goldenrod;
    color: goldenrod;
}
.product-img-alt {
    width: 19rem;
    position: absolute;
    top: 14%;
    left: -2%;
}
/* ----- min-width: 992px ----- */
@media (min-width: 1281px) {
    .minimenu,
    .menu-mini {
        display: none;
    }
    .product1-content1 {
        gap: 107px;
        display: flex;
        justify-content: center;
    }
    .product1-content2 {
        gap: 107px;
        display: flex;
        justify-content: center;
    }
    .carousel-item {
        height: 220px;
    }

    .img-home {
        width: 12rem;
        position: absolute;
        top: -6%;
        left: 30%;
    }
    .navbar-expand-lg {
        justify-content: space-between;
    }
    .user-panel .forms-card .panel-menu {
        border-right: 1px solid #353637;
    }
    .menu-nav .nav {
        flex-direction: column;
    }
    .logo-div {
        width: 100%;
        margin-right: 0;
    }
    .logo-home {
        width: 100%;
    }
}

/* ----- min-width: 1200px ----- */
@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        margin-left: 0.1rem;
        padding: 0.2rem 1.3rem;
        border-radius: 0.575rem;
    }
    .header-dropdowns .deskmenu {
        justify-content: space-between;
    }
    .carousel-item {
        height: auto;
    }
    .carousel .carousel-item img {
        width: 100%;
    }
    #products {
        padding: 0.75rem 7rem;
        padding-top: 33px;
    }

    #products .lot-card {
        min-width: 320px;
        min-height: 197px;
    }
    #products .card-alt {
        position: relative;

        min-width: 305px;
    }
    .img-home {
        width: 17rem;
        position: absolute;
        top: -6%;
        left: 27%;
    }
}

/* ----- min-width: 1440px ----- */
@media (min-width: 1440px) {
    .products-1 {
        display: flex;
        justify-content: center;
    }

    #products .lot-card {
        scale: 0.87;
        min-width: 390px;
        min-height: 238px;
    }
    #products .card-alt {
        position: relative;
        top: -25px;
        min-height: 644.5px;
        min-width: 305px;
    }
    .img-home {
        width: 15rem;
        position: absolute;
        top: -6%;
        left: 23%;
    }
}

/* ----- min-width: 1497px ----- */
@media (min-width: 1497px) {
    .products-1 {
        display: flex;
        justify-content: center;
    }

    #products .card-alt {
        position: relative;
        min-width: 305px;
    }
}

/* ----- min-width: 1620px ----- */
@media (min-width: 1620px) {
    #products .card-alt {
        position: relative;
        min-height: 644.5px;
        min-width: 305px;
    }
    .product1-content1 {
        display: flex;
        gap: 165px;
    }
    .product1-content2 {
        display: flex;
        gap: 165px;
    }
    .img-home {
        width: 17rem;
        position: absolute;
        top: -7%;
        left: 38%;
    }
    .titu-produ {
        font-size: 34px;
        margin-bottom: 6px;
    }
    .playnow {
        font-size: 30px;
        width: 113px;
    }
}

.carousel-banner-img {
    display: block;
}

/* ================= Media Queries (max-width) ================= */

@media (max-width: 1280px) {
    .promo-detail-right {
        flex: 1;
        width: 100%;
    }
    .btn-close-promos {
        scale: 1.2;
    }
    #promo-detail-desc {
        font-weight: 600;
        font-size: 15px;
        overflow: auto;
    }
    .promo-detail-content {
        width: 95%;
        max-width: 100%;
        height: 95%;
    }
    .promo-detail-left {
        margin: auto;
    }
    .promo-detail-right h2 {
        margin-top: 0;
        color: #fe3300;
        font-size: 1.6rem;
        text-transform: uppercase;
    }
    .promo-detail-actions {
        margin-top: 0px;
        display: flex;
        gap: 8px;
        position: absolute;
        right: 1vw;
        top: 1vh;
        scale: 0.8;
    }
    #promo-detail-desc {
        font-weight: 600;
        font-size: 19px;
        overflow: auto;
    }
    .title-bets {
        padding: 0px 20px;
        text-transform: uppercase;
        color: #ffffff;
        font-size: 20px;
    }
    .tittles-contents {
        font-size: 25px;
        margin-top: 20px;
    }

    .selector-desktop {
        display: none;
    }
    .deskmenu {
        display: none;
    }
    .depositar-btn {
        font-size: 13px !important;
    }
    .desktop {
        display: none;
    }
    .logo-offcanvas {
        width: 70%;
    }
    .navbar .nav-transa-btns .btn {
        display: none;
    }
    button.next-arrow {
        background: transparent;
        color: white;
        border-radius: 50%;
        padding: 2px;
        font-weight: 700;
        font-size: 40px;
        width: 100%;
        display: none;
        height: 100%;
        justify-content: center;
        align-items: center;
        align-content: center;
        border: 2px solid #ffc107;
    }

    .arrow-next {
        display: none;
        width: 50px;
        scale: 0.8;
        height: 40px;
        align-items: center;
        justify-content: center;
    }
    #products .product-col {
        margin-top: 15px;
        width: 45% !important;
    }
    .items-cards {
        display: flex;
        width: 100%;
        scale: 1;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .arrow-prev {
        display: none;
        scale: 0.9;
        width: 50px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }

    .offcanvas-body {
        flex-grow: 1;
        padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
        overflow-y: auto;
    }
    .depositar-btn {
        display: none;
    }
    .navbar .nav-transa-btns {
        display: none;
    }
    .responsive-transa-btns {
        margin-top: 10px;
    }

    .navbar-expand-lg .offcanvas .offcanvas-header {
        display: flex;
    }

    .navbar-expand-lg .offcanvas {
        position: fixed;
        bottom: 0px;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden !important;
        background-clip: padding-box;
        outline: 0px;
        transition: var(--bs-offcanvas-transition);
    }

    .offcanvas.hiding,
    .offcanvas.show,
    .offcanvas.showing {
        visibility: visible !important;
    }
    .mobile {
        display: block;
        width: 40px !important;
    }
    .icons-menu {
        width: 40px;
        padding: 6px;
    }
    .header-dropdowns {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-start;
    }
}
@media (max-width: 1250px) and (min-width: 991px) {
    .offcanvas {
        background: var(--bg-card) !important;
        box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    }
}

/* ----- max-width: 991px ----- */
@media (max-width: 991px) {
    #navbarResponsive {
        display: none;
    }
    .contenedor-prods {
        display: flex;
        justify-content: center;
        padding: 0px 20px;
        align-items: center;
    }
    .user-panel .forms-card .panel-menu {
        border-bottom: 1px solid #353637;
    }
    .panel-menu .menu-nav .nav {
        display: flex;
        justify-content: center;
    }
    .btn-volver-lobby {
        width: 10%;
        justify-content: center;
    }
    .menu-nav .nav-item:not(:last-child) {
        border-right: 1px solid #d3d3d3;
    }
    .header-dropdowns {
        justify-content: flex-start;
    }
}


/* ----- max-width: 820px ----- */
@media (max-width: 820px) {
    .promos-cards {
        width: 45%;
    }
    .sliders-cards {
        margin: 10px;
        width: 100%;
    }
    #history-panel .title-row,
    #messages-panel .title-row {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 1rem;
        margin-bottom: 0;
    }
    .title-row .panel-filter {
        position: relative;
        padding: 0;
    }
    .panel-table .dataTable_wrapper {
        padding: 1rem 0;
    }
    .img-home {
        width: 9rem;
        position: absolute;
        top: -6%;
        left: 30%;
    }
    .banner-text-1 {
        top: 53%;
        scale: 0.85;
        position: absolute;
        left: 1%;
    }
}

/* ----- max-width: 768px ----- */
@media (max-width: 768px) {
    .slider-card:hover .promo-overlay,
    .slider-card:focus-within .promo-overlay {
        opacity: 0;
    }

    .carousel-item img {
        border-radius: 0px;
    }
    .deskmenu {
        position: relative;
        display: none;
    }
    .accordion {
        margin-top: 20px;
        display: block;
    }
    .navbar {
        flex-direction: column;
        gap: 0px !important;
    }
    .part-1 {
        display: none;
    }
    #products {
        padding: 0.75rem 0.7rem;
    }
    #products .card-alt {
        position: relative;
        min-height: 393.5px;
        min-width: 235px;
    }

    #products .lot-card {
        min-width: 223px;
        height: 139px;
        min-height: 109px;
    }

    .copyright-info {
        width: 85vw;
    }
    .part-1,
    .part-2 {
        flex-direction: column;
        width: 100vw;
    }
    .movil {
        display: block;
    }
    .options-general {
        font-size: 14.5px;
        text-align: center;
    }
    .small-text {
        text-align: center;
        font-size: 19px;
    }
    .banner-text-1 {
        top: 54%;
        position: absolute;
        left: 2%;
    }
    .big-text,
    .general-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner-text-2 {
        top: 60%;
        position: absolute;
        left: 2%;
    }
    .dropdown-toggle {
        display: flex;
        align-items: center;
    }
    .logged-elements .notification-badge {
        top: 0;
    }
    .product-img-alt {
        width: 13rem;
        position: absolute;
        top: -2%;
        left: 35%;
    }
    .pc {
        display: none;
    }
    .footer-img {
        width: 8%;
    }
    .header-dropdowns .logout-elements .btn {
        font-size: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .btn-volver-lobby {
        width: 16%;
    }
    .payment-info-mobile {
        margin-top: 1rem;
        gap: 3%;
        display: flex;
        justify-content: center;
    }
    .username {
        display: none;
    }
    .fa-slot-machine {
        --fa-secondary-color: #ffce00;
    }
    .fa-cards {
        --fa-primary-color: #ffb663;
    }
    .providers-divs {
        width: 100%;
    }
    .col-second {
        margin-left: 0%;
    }
    .img-home {
        width: 9.5rem;
        position: absolute;
        top: -2%;
        left: 83px;
    }
    label {
        display: inline-block;
        font-size: 0.9rem;
    }
    .card {
        margin-top: 2%;
    }
    .see-more {
        background: linear-gradient(45deg, #f83700, #faca22);
        color: white !important;
        line-height: 1 !important;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 21px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 17px 0px 4px 0px;
    }
}
.componente-mobile {
    display: none;
}

/* Keep sidebar WhatsApp popup inside the offcanvas menu. */
.componente-mobile .wcs_popup {
    margin-left: 0;
    left: 0;
}
/* ----- max-width: 767px ----- */
@media (max-width: 767px) {
    .header-dropdowns .logout-elements .btn:not(:last-child) {
        margin-right: 0.5rem;
    }
    .logo-movil {
        display: block;
    }

    .componente-mobile {
        display: block;
    }
    .row {
        align-items: center;
    }
    .navbar .nav-transa-btns {
        display: none;
    }
}

/* ----- max-width: 575px ----- */
@media (max-width: 575px) {
    #promo-detail-desc {
        font-weight: 600;
        font-size: 17px;
        margin-bottom: 0px;
        overflow: auto;
    }
    .copyright-info {
        width: 85vw;
    }
    .navbar {
        padding: 0.3rem 1rem;
    }
    #products {
        padding: 0.75rem 0rem;
        gap: 4px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .products-nav {
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }
    #products .product-card2 {
        scale: 0.93;
    }
    .header-dropdowns {
        justify-content: center;
    }
    .header-dropdowns .logout-elements .btn {
        width: 100%;
    }
    .btn-volver-lobby {
        padding: 7px 0px;
        width: 20%;
        top: 47px;
        scale: 0.9;
        z-index: 99999999;
        background: #0062dc7d;
    }
    .panel-menu .menu-nav .nav {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .menu-nav .nav-item {
        width: 16%;
        display: flex;
        justify-content: center;
    }
    .menu-nav .nav-item span {
        display: none;
    }
    #register_form #newPasswordDiv {
        margin-bottom: 1rem;
    }
}

/* ----- max-width: 425px ----- */
@media (max-width: 425px) {
    .lot-banner {
        height: 50px !important;
    }

    .img-lot {
        left: -6%;
        position: relative;
    }
    .img-home {
        width: 15rem;
        position: absolute;
        top: -4%;
        left: 31%;
    }
    #userOptions {
        position: relative;
    }
    .logo-home {
        width: 100%;
        margin: 4px;
    }

    .product-img-alt {
        width: 13rem;
        position: absolute;
        top: -2%;
        left: 35%;
    }
    .banner-text-2 {
        top: 63%;
        scale: 0.9;
    }
    .banner-text-1 {
        top: 65%;
        scale: 1;
        position: absolute;
        left: 2%;
    }

    .navbar .user-balance .USD {
        display: block;
    }
}

@media (max-width: 375px) {
    .logo-home {
        width: 100%;
        margin: 4px;
    }
}

@media (max-width: 320px) {
    .tittles-contents {
        font-size: 13px;
        margin-top: 20px;
    }
    .img-home {
        width: 12rem;
        position: absolute;
        top: -5%;
        left: 34%;
    }
    .product-img-alt {
        width: 12rem;
        position: absolute;
        top: -5%;
        left: 34%;
    }
    .banner-text-1 {
        scale: 0.8;
        top: 58%;
        position: absolute;
        left: 2%;
    }
    .banner-text-2 {
        scale: 0.8;
        top: 58%;
        position: absolute;
        left: 2%;
    }
    #products .product-card {
        --bs-card-height: 21px;
        margin-bottom: 1.5rem;
        overflow: hidden;
    }
    .logo-home {
        width: 100%;
        margin: 4px;
    }
    .header-dropdowns .logout-elements .btn {
        font-weight: bold;
        font-size: 12px;
        display: flex;
        padding: 13px 40px 13px 40px;
        text-align: center;
        height: 34px;
        justify-content: center;
        align-items: center;
    }
    #userOptions {
        position: relative;
    }
}
.swal-icon--info {
    border-color: #e11000;
}
.swal-icon--info:after,
.swal-icon--info:before {
    background-color: #e42a1c;
}
.swal-overlay--show-modal .swal-modal {
    box-shadow: 0 0 20px 1px #cb2900;
    border: 2px solid #cb2900;
}
.swal-button {
    background-color: red;
}
.swal-overlay--show-modal .swal-modal {
    box-shadow: 0 0 20px 1px #cb2900;
    border: 2px solid #cb2900;
}
.swal-title {
    color: red;
    font-size: 36px;
    font-weight: 600;
    text-shadow: 0 0 5px #fffe00;
    text-transform: uppercase;
}
.para-alert {
    margin-bottom: 0.5rem;
}

.large-modal .swal2-popup {
    padding: 0; /* Quita relleno del modal */
    border-radius: 10px; /* Elimina esquinas redondeadas */
    margin: 0; /* Quita márgenes externos */
    box-shadow: none; /* Elimina sombra del modal */
    position: relative; /* Necesario para posicionar el botón */
}

.large-modal .swal2-image {
    margin: 0 0 -40px 0; /* Quita el margen de la imagen */
    display: block; /* Asegura que la imagen ocupe todo el espacio */
    max-width: 100%; /* Ajusta el tamaño al contenedor */
    height: auto; /* Mantiene la relación de aspecto */
    border-radius: 4px;
}

.large-modal .swal2-confirm {
    position: absolute; /* Posiciona el botón sobre la imagen */
    bottom: 40px; /* Ajusta el botón al final de la imagen */
    left: 50%; /* Centra el botón horizontalmente */
    transform: translateX(-50%); /* Centrado exacto */
    background-color: #3085d6; /* Color de fondo del botón */
    color: #fff; /* Color del texto */
    padding: 10px 20px; /* Ajusta el tamaño del botón */
    border-radius: 5px; /* Bordes redondeados */
    border: none; /* Sin bordes */
    font-size: 16px; /* Tamaño del texto */
}

#products .product-card {
    --bs-card-height: 21px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: none;
    height: 100%;
    margin: auto;
    width: 95%;
    border-radius: 10px;
    transition: all 0.35s ease-in-out;
}

.fa-circle-arrow-right {
    display: none;
}

.item-names h1 {
    font-size: 26px;
    padding: 10.1px 0.4%;
    margin: 0.8% 3.4%;
    border-bottom: 5px solid #f83701;
    color: #ffffff;
}

.items-cards {
    display: flex;
    scale: 1;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
#products {
    padding: 0.25rem 0rem;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

button.next-arrow {
    background: transparent;
    color: white;
    border-radius: 50%;
    padding: 2px;
    font-weight: 700;
    font-size: 40px;
    width: 100%;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    border: 2px solid #ffc107;
}
.product-img {
    margin: auto;
    overflow: scroll;
    width: 100%;
}
.nav-link {
    text-transform: uppercase;
}
.deskmenu {
    position: relative;
}

.bottons-go {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap;
    margin-top: 0px;
    justify-content: center;
}
.nav-link i {
    font-size: 25px;
    margin: 2px 7px;
    padding-top: 3px;
    color: var(--text-primary);
}
.fa-duotone.fa-coin:after,
.fad.fa-coin:after {
    content: "\f85c\f85c";
    color: white;
    opacity: 1;
}
.fa-coin:before {
    position: absolute;
    color: red;
}
i.fa-solid.fa-basketball {
    color: #ff6838;
}
i.fa-solid.fa-football {
    color: #d36e2c;
}

.menu-nav .nav-item .nav-link:hover,
.menu-nav .nav-item .nav-link.active {
    color: #fff;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
}
.menu-nav .nav-item .nav-link:hover,
.menu-nav .nav-item .nav-link.active i {
    color: var(--bs-nav-link-hover-color);
}

.boton-registro {
    color: #ffffff;
    background: #f9a100fa;
    border: 2px solid goldenrod;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 20px;
}
.profile-data .form-group p{
    margin-bottom: 0rem;
}
.profile-data .form-group{
    padding: 3px 9px;
    background: var(--profile-show);
    border-radius: 5px;
}
.boton-login {
    color: white;
    background: green;
    border: 2px solid goldenrod;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 20px;
}
.input-group-text {
    background: transparent;
    color: goldenrod;
    border: 1px solid goldenrod;
}
#btn_loginModal,
#btn_register {
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .items-cards {
        display: flex;
        scale: 1;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}
@media (max-width: 767px) {
     .panel-table .table-responsive {
        overflow: auto;
    }
    .opciones-user {
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    #history_table_wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #history_table_wrapper label input {
        background: #d1d1d1;
        border: 2px solid white;
        color: white;
    }
    .dataTables_paginate .paginate_button {
        background: white !important;
        color: black !important;
        padding: 3px 5px !important;
        font-weight: 500 !important;
        border-radius: 7px !important;
    }

    .panel-table .dataTables_info,
    .panel-table .dataTables_paginate,
    .panel-table .dataTables_filter {
        color: var(--text-primary);
        display: flex;
        gap: 11px;
        width: 100%;
    }
    .row {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .forms-card .card-body .row {
        align-items: center;
        justify-content: normal;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .item-names h1 {
        font-size: 20px;
        margin: 0.8% 0.4%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .fa-circle-arrow-right {
        display: block;
    }
    .items-cards::-webkit-scrollbar {
        -webkit-appearance: none;
    }

    .items-cards::-webkit-scrollbar:vertical {
        width: 7px;
    }

    .items-cards::-webkit-scrollbar-button:increment,
    .items-cards::-webkit-scrollbar-button {
        display: none;
    }

    .items-cards::-webkit-scrollbar:horizontal {
        height: 10px;
    }

    .items-cards::-webkit-scrollbar-thumb {
        background-color: #f83701;
        box-shadow: 0 2 3 rgb(0, 0, 0);
        border-radius: 20px;
        border: 0px solid #f83701;
    }

    .items-cards::-webkit-scrollbar-track {
        border-radius: 10px;
    }
    .navbar .row {
        flex-wrap: wrap;
    }
    .copyright p {
        font-weight: 700;
        font-size: 13px;
        text-align: center;
        text-indent: 0px;
        color: var(--text-primary);
    }
}

@media (max-width: 325px) {
    .carousel-item img {
        height: 11rem;
        border-radius: 20px;
    }
}
@media (min-width: 768px) {
}
@media (max-width: 767px) {
    .desktop {
        display: none;
    }
    .frame-container {
        height: 85vh;
        overflow: hidden;
        position: relative;
    }
    .logo-home {
        width: 40px;
        margin: 0px 8px;
    }
    #btn_loginModal,
    #btn_register {
        text-transform: uppercase;
        font-weight: 700;
        padding: 7px;
        width: 7rem;
        height: 35px;
        border-radius: 19px;
    }
    .btn-sesion {
        width: 90px;
        font-size: 12px;
        font-family: "Bahnschrift";
        margin-top: 2px;
        letter-spacing: 1.3px;
        color: var(--text-primary);
    }
    #products .product-col {
        margin-top: 15px;
        justify-content: flex-start;
        max-width: 200px;
    }
}

.navbar {
    flex-direction: column;
    gap: 10px;
}

/* Placeholder styles for deposit modal */
.input-ghost-container {
    position: relative;
}
.input-ghost-container .input-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-color: transparent !important;
    border-color: transparent !important; /* Hide ghost border */
    color: #adb5bd; /* Placeholder color */
    display: flex;
    align-items: center; /* Center text vertically if form-control changes height */
}
.input-ghost-container .input-with-ghost {
    position: relative;
    z-index: 2;
    background-color: transparent !important;
}

/* ALERTAS DE SESI�N */
.custom-alert-session {
    margin: 5px auto 15px auto; /* 'M�s alto': reducimos margen superior */
    border-width: 2px;
    border-style: solid;
    border-radius: 8px;
    background-color: var(--bg-secondary); /* Respeta tema claro/oscuro */
    color: var(--text-primary);            /* Respeta tema claro/oscuro */
    font-size: 1.2rem;                     /* 'Letras m�s grandes' */
    box-shadow: 0 4px 12px var(--shadow);
    max-width: 95%;
    text-align: center;
}
/* Variaciones por tipo */
.custom-alert-session.alert-warning {
    border-color: #ffc107;
}
.custom-alert-session.alert-warning i {
    color: #ffc107;
    margin-right: 8px;
}
.custom-alert-session.alert-danger {
    border-color: #dc3545;
}
.custom-alert-session.alert-danger i {
    color: #dc3545;
    margin-right: 8px;
}
/* En modo oscuro (.dark en body o html), el btn-close de bootstrap necesita inversi�n si es svg negro */
.dark .custom-alert-session .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}



#pwa-install {     
            position: fixed;
            left: 0;
            right: 0;
            bottom: 5px;
            display: flex;
            justify-content: center;
            z-index: 2000;
            pointer-events: none;
        }
        #pwa-install .pwa-inner {    
            pointer-events: auto;
            width: calc(100% - 2px);
            max-width: 480px;
            display: flex;
            justify-content: center;
        }
        #pwa-install .btn-install { 
            background: linear-gradient(45deg, #f83700, #faca22);
            width: 90%;
            display: flex;
            text-transform: uppercase;
            margin: 0px;
            border-radius: 8px;
            color: white;
            font-size: 19px;
            box-shadow: -2px 3px 0px 0px #ffffff;
            line-height: 1;
            border: none;
            justify-content: center;
            align-items: center;

        }
        @media (min-width: 769px) { #pwa-install { display: none !important; } }
        .pwa-hidden { display: none !important; }