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

:root{
  --bg:#1434A4;
  --bg-gradient:linear-gradient(135deg, #1434A4 0%, #102f96 45%, #0a1f70 100%);
  --bg-gradient-soft:linear-gradient(135deg, rgba(20,52,164,.98) 0%, rgba(16,47,150,.98) 48%, rgba(10,31,112,.98) 100%);
  --header:linear-gradient(135deg, #1434A4 0%, #102f96 52%, #0a1f70 100%);
  --text:#ffffff;
  --yellow:#ffc12d;
  --yellow2:#ffda65;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.18);
  --shadow:0 18px 40px rgba(0,0,0,.28);
  --pill:#0a267f;
  --pill-border:rgba(255,255,255,.20);
  --panel:#0a267f;
  --panel-hover:#071f6c;
  --field:#0a267f;
  --soft-glow:0 0 0 1px rgba(255,255,255,.08), 0 0 18px rgba(111,108,187,.24), inset 0 0 22px rgba(255,255,255,.05);
  --toolbar-sticky-desktop:71px;
  --toolbar-sticky-mobile:120px;
}


*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{scrollbar-width:thin;scrollbar-color:#1434A4 #071f6c}
body{margin:0;background:var(--bg-gradient);color:var(--text);font-family:'Montserrat',system-ui,-apple-system,sans-serif;overflow-x:hidden}
body.modal-open{overflow:hidden}
::-webkit-scrollbar{width:12px;height:12px}
::-webkit-scrollbar-track{background:#071f6c}
::-webkit-scrollbar-thumb{background:#1434A4;border-radius:0;border:0}
::-webkit-scrollbar-thumb:hover{background:#1b43c8}
::-webkit-scrollbar-corner{background:#071f6c}
a{text-decoration:none;color:inherit}
button,input{font:inherit}
img{max-width:100%;display:block}

.lobby-shell{width:100%;min-height:100vh;background:var(--bg-gradient)}
.top-header{position:relative;z-index:40;background:var(--header)}
.header-row{width:100%;display:grid;align-items:center}
.header-main{height:108px;grid-template-columns:180px minmax(0,1fr) auto;gap:24px;padding:0 44px}
.brand{width:150px;display:block}
.brand img{width:100%;height:auto}
.ticker-wrap{height:36px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.header-ticker{font-size:24px;font-weight:800;letter-spacing:.2px;text-align:center;white-space:nowrap;animation:tickerFade 4.2s ease-in-out infinite}
.header-actions{display:flex;align-items:center;gap:12px}
.header-pill-btn{height:auto;padding:0;border-radius:0;border:0;background:transparent;color:#fff;font-size:16px;font-weight:800;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;white-space:nowrap;transition:.2s ease;gap:8px}
.header-pill-btn:hover{background:transparent;border-color:transparent;color:#ffffff;opacity:.92}
.header-pill-btn--promo .promo-fire{font-size:15px;line-height:1;display:inline-flex;align-items:center;transform:translateY(-1px)}
.header-pill-btn:focus-visible{outline:none;color:#ffffff;opacity:1}
.header-auth-btn{height:40px;padding:0 17px;border-radius:11px;border:1.5px solid var(--yellow);display:inline-flex;align-items:center;justify-content:center;text-decoration:none;white-space:nowrap;font-size:15px;font-weight:800;line-height:1;transition:.2s ease;box-shadow:0 8px 18px rgba(0,0,0,.16)}
.header-auth-btn--register{background:var(--yellow);color:#101010;border-color:var(--yellow)}
.header-auth-btn--login{background:rgba(10,8,24,.18);color:var(--yellow)}
.header-auth-btn:hover{transform:translateY(-1px);filter:brightness(1.03)}
.header-auth-btn:focus-visible{outline:2px solid rgba(255,255,255,.84);outline-offset:3px}
.header-icon-btn{width:auto;height:auto;border:0;border-radius:0;background:transparent;display:grid;place-items:center;cursor:pointer;color:#d9d6ee;text-decoration:none;transition:.2s ease;padding:2px 0 2px 2px;box-shadow:none;opacity:.92}
.header-icon-btn svg{width:30px;height:30px;display:block;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.header-icon-btn:hover{transform:translateY(-1px);color:#ffffff;opacity:1}
.header-icon-btn:focus-visible{outline:none;color:#ffffff}
.btn{height:54px;padding:0 22px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;gap:10px;font-size:16px;font-weight:800;border:2px solid var(--pill-border);transition:.2s ease;white-space:nowrap}
.btn-ghost{background:rgba(33,28,73,.96);color:#fff}
.btn-primary{background:var(--yellow);border-color:transparent;color:#1a1710}
.btn svg{width:18px;height:18px;display:block;fill:currentColor;flex:0 0 auto}
.btn span{display:inline-flex;align-items:center}
.btn:hover,.lang-btn:hover{transform:translateY(-1px)}
.lang-btn{padding:2px}
.lang-btn svg{width:30px;height:30px;fill:currentColor;color:var(--yellow);opacity:.96}

@keyframes tickerFade{
  0%,100%{opacity:0;transform:translateY(8px)}
  12%,82%{opacity:1;transform:translateY(0)}
}

.hero-slider{position:relative;height:350px;overflow:hidden;background:var(--bg-gradient)}
.slides{position:relative;height:100%}
.slide{position:absolute;inset:0;opacity:0;transition:opacity .45s ease}
.slide.is-active{opacity:1}
.slide img,.slide video{width:100%;height:100%;object-fit:cover;display:block}
.hero-slider::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg, rgba(7,5,20,.04) 0%, rgba(7,5,20,.26) 100%);pointer-events:none}
.slider-dots{position:absolute;left:50%;bottom:26px;transform:translateX(-50%);display:flex;align-items:center;gap:10px;height:44px;padding:0 18px;border-radius:22px;background:rgba(76,55,32,.62);backdrop-filter:blur(6px);z-index:4}
.dot{width:12px;height:12px;border-radius:50%;border:0;background:rgba(255,255,255,.46);cursor:pointer;padding:0}
.dot.is-active{background:#fff}

.catalog-panel{position:relative;background:var(--bg-gradient)}
.toolbar-section{position:sticky;top:0;z-index:30;background:var(--bg-gradient-soft);backdrop-filter:blur(18px);border-bottom:1px solid var(--line)}
.toolbar-wrap{display:grid;grid-template-columns:383.99px 1fr;gap:18px;align-items:center;padding:14px 44px}
.search-box{height:41.47px;border:2px solid rgba(255,255,255,.20);border-radius:8px;background:var(--field);display:flex;align-items:center;gap:12px;padding:0 16px;transition:.22s ease;width:383.99px;max-width:100%}
.search-box:focus-within{border-color:rgba(255,255,255,.38);background:#071f6c;box-shadow:var(--soft-glow)}
.search-box svg{width:22px;height:22px;fill:#d6d0f1;opacity:.95;flex:0 0 auto}
.search-box input{width:100%;border:0;outline:0;background:transparent;color:#fff;font-size:16px}
.search-box input::placeholder{color:#b8b4d4;opacity:1}
.catalog-actions{display:flex;align-items:center;justify-content:flex-end;gap:12px}
.tool-btn{height:38.96px;min-width:unset;padding:0 18px;border-radius:12px;border:2px solid var(--pill-border);background:var(--pill);color:#fff;font-size:16px;font-weight:800;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:10px;transition:.2s ease;width:auto}
.tool-btn:hover{background:#071f6c;border-color:rgba(255,255,255,.30)}
.tool-btn svg{width:15px;height:15px;display:block;fill:currentColor;color:currentColor;flex:0 0 auto}
.view-switcher{display:flex;align-items:center;gap:8px;margin-left:4px}
.view-btn{width:52px;height:52px;border:0;border-radius:10px;background:transparent;display:grid;place-items:center;cursor:pointer;transition:.18s ease}
.view-btn svg{width:24px;height:24px;fill:#7d74b1}
.view-btn.is-active,.view-btn:hover{background:rgba(9,27,99,.82)}
.view-btn.is-active svg{fill:var(--yellow)}

.category-divider{width:100%;height:1px;background:rgba(255,255,255,.08)}
.catalog-body{display:block}
.category-section{position:sticky;top:var(--toolbar-sticky-desktop);z-index:28;background:var(--bg-gradient-soft);backdrop-filter:blur(18px);padding:18px 44px 22px;border-bottom:1px solid var(--line)}
.category-strip{display:flex;align-items:stretch;gap:18px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none}
.category-strip::-webkit-scrollbar{display:none}
.cat-btn{width:112px;min-width:112px;height:80px;border:1px solid rgba(255,255,255,.08);border-radius:10px;background:var(--panel);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;cursor:pointer;padding:8px 6px;box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);transition:.18s ease}
.cat-btn:hover{background:var(--panel-hover);transform:translateY(-1px)}
.cat-icon{width:22px;height:22px;display:block;object-fit:contain;object-position:center;filter:brightness(0) invert(1)}
.cat-btn span{font-size:12px;font-weight:500;line-height:1.2;text-align:center}
.cat-btn.is-active{background:var(--yellow);color:#101010;border-color:rgba(255,193,45,.6)}
.cat-btn.is-active .cat-icon{filter:none}

.games-section{padding:22px 44px 34px}
.hero-slider.is-collapsed{height:0;min-height:0;opacity:0;overflow:hidden}
.hero-slider,.toolbar-section,.category-section{transition:height .32s ease, opacity .28s ease, padding .28s ease, margin .28s ease}
body.slider-collapsed .toolbar-section{box-shadow:0 10px 24px rgba(0,0,0,.18)}
body.slider-collapsed .category-section{box-shadow:0 8px 18px rgba(0,0,0,.08)}
.games-grid{display:grid;grid-template-columns:repeat(6, minmax(0, 1fr));gap:18px 16px;justify-content:stretch}
.game-card{width:100%;min-width:0}
.game-card__media{position:relative;display:block;width:100%;height:auto;aspect-ratio:1/1;border-radius:20px;overflow:hidden;background:#1b153f;box-shadow:0 18px 36px rgba(0,0,0,.26)}
.game-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .28s ease}
.game-card:hover .game-card__media img{transform:scale(1.03)}
.game-badge{position:absolute;top:8px;left:18px;z-index:2;font-size:15px;font-weight:900;color:#fff5e9;text-shadow:0 2px 6px rgba(0,0,0,.42);letter-spacing:.3px}
.game-players,.game-favorite{position:absolute;top:12px;z-index:2;height:28px;min-width:28px;padding:0 10px;border-radius:14px;background:rgba(26,23,42,.72);backdrop-filter:blur(6px);display:inline-flex;align-items:center;justify-content:center;color:#fff;font-size:13px;font-weight:700}
.game-players{left:10px;gap:6px}
.game-players svg{width:14px;height:14px;fill:#31d07d}
.game-favorite{right:10px;width:30px;padding:0;font-size:19px;line-height:1}
.game-meta-pill{display:none}
.game-title{margin:7px 0 0;text-align:center;font-size:15px;font-weight:600;line-height:1.25;color:#fff}

.lang-modal-backdrop,.account-modal-backdrop{position:fixed;inset:0;background:rgba(4,3,15,.56);backdrop-filter:blur(10px);z-index:60}
.lang-modal,.account-modal{position:fixed;inset:0;z-index:61;display:grid;place-items:center;padding:20px}
.lang-modal-card,.account-modal-card{width:min(100%, 670px);border-radius:18px;padding:26px;background:linear-gradient(180deg, rgba(67,52,42,.76), rgba(23,18,61,.9));border:1px solid rgba(255,255,255,.08);box-shadow:0 22px 60px rgba(0,0,0,.34);position:relative}
.account-modal-card{width:min(100%, 670px)}
.lang-close,.account-close{position:absolute;top:14px;right:16px;width:34px;height:34px;border:0;border-radius:50%;background:transparent;color:#d9d2d2;font-size:28px;line-height:1;cursor:pointer}
.lang-modal-card h2,.account-modal-card h2{margin:0 0 18px;text-align:center;font-size:24px;font-weight:700}
.lang-search{height:52px;width:100%;border:1px solid rgba(255,255,255,.12);border-radius:10px;display:flex;align-items:center;gap:12px;padding:0 16px;background:rgba(24,21,58,.55);margin-bottom:16px}
.lang-search svg{width:20px;height:20px;fill:#bfb9d7}
.lang-search input{width:100%;border:0;outline:0;background:transparent;color:#fff;font-size:16px}
.lang-search input::placeholder{color:#aaa5c5}
.lang-options,.account-options{display:flex;flex-direction:column;gap:14px}
.lang-option{width:100%;min-height:76px;border-radius:12px;border:2px solid rgba(255,255,255,.08);background:rgba(102,78,56,.22);padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:20px;color:#fff;text-align:left;cursor:pointer}
.lang-option.is-selected{border-color:#ffc12d;background:rgba(120,88,52,.28)}
.lang-option-text{display:flex;flex-direction:column;gap:4px}
.lang-option-text strong{font-size:18px;font-weight:700}
.lang-option-text small{font-size:13px;color:#ddd6e9}
.lang-check{color:#ffc12d;font-size:28px;font-weight:800;opacity:0}
.lang-option.is-selected .lang-check{opacity:1}
.account-option{width:100%;min-height:76px;border-radius:12px;border:2px solid rgba(255,255,255,.08);background:rgba(102,78,56,.22);padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:20px;color:#fff;font-size:16px;font-weight:700;transition:.2s ease}
.account-option:hover{border-color:#ffc12d;background:rgba(120,88,52,.28)}
.account-option-main{display:flex;align-items:center;gap:14px}.account-option-index{width:40px;height:40px;border-radius:10px;border:1px solid rgba(255,255,255,.12);background:rgba(24,21,58,.55);display:inline-flex;align-items:center;justify-content:center;color:#ffc12d;font-size:13px;font-weight:800;letter-spacing:.6px}.account-option-text{display:flex;flex-direction:column;gap:4px}.account-option-text strong{font-size:18px;font-weight:700;color:#fff;line-height:1.1}.account-option-text small{font-size:13px;color:#ddd6e9}.account-option-arrow{color:#ffc12d;font-size:24px;font-weight:800;line-height:1}
[hidden]{display:none !important}

@media (max-width:1440px){
  .toolbar-wrap{grid-template-columns:minmax(320px, 650px) 1fr}
  .games-grid{grid-template-columns:repeat(6, minmax(0, 1fr));gap:18px 14px}
  .game-card,.game-card__media{width:100%}
  .game-card__media{height:auto;aspect-ratio:1/1}
}

@media (max-width:1180px){
  .header-main{padding:0 24px}
  .toolbar-wrap,.category-section,.games-section{padding-left:24px;padding-right:24px}
  .tool-btn{min-width:146px}
  .games-grid{grid-template-columns:repeat(4, minmax(180px,1fr))}
}

@media (max-width:900px){
  .header-main{height:92px;grid-template-columns:96px minmax(0,1fr);gap:8px;padding:0 10px}
  .brand{width:96px}
  .ticker-wrap{display:none}
  .header-ticker{font-size:14px;font-weight:700;max-width:100%}
  .header-actions{gap:7px 8px;justify-self:end;justify-content:flex-end;align-content:center;flex-wrap:wrap;max-width:100%}
  .header-pill-btn{height:auto;padding:0;font-size:12px;border-radius:0;gap:5px;line-height:1.1}
  .header-auth-btn{height:30px;padding:0 11px;border-radius:9px;font-size:12px;border-width:1.3px}
  .btn{height:28px;padding:0 8px;font-size:9px;border-radius:10px;display:inline-flex;gap:4px}
  .header-icon-btn{padding:1px}
  .header-icon-btn svg{width:24px;height:24px}

  .hero-slider{height:160px}
  .slider-dots{bottom:10px;height:28px;padding:0 10px;gap:6px;border-radius:14px}
  .dot{width:8px;height:8px}

  .toolbar-section{top:0}
  .toolbar-wrap{grid-template-columns:1fr auto auto;gap:6px;padding:12px 10px 12px;align-items:center}
  .search-box{grid-column:1 / -1;height:52px;padding:0 14px;gap:10px;border-radius:10px;width:100%}
  .search-box svg{width:20px;height:20px}
  .search-box input{font-size:14px}
  .catalog-actions{width:100%;grid-column:1 / -1;justify-content:space-between;gap:6px}
  .tool-btn{flex:1;min-width:auto;height:38.96px;padding:0 12px;font-size:12px;border-radius:10px}
  .view-switcher{margin-left:0;gap:4px}
  .view-btn{width:42px;height:42px;border-radius:10px}
  .view-btn svg{width:20px;height:20px}

  .catalog-body{display:grid;grid-template-columns:45.33px minmax(0,1fr);gap:10px;padding:14px 10px 16px;align-items:start}
  .category-section{position:sticky;top:var(--toolbar-sticky-mobile);background:transparent;backdrop-filter:none;padding:0;border-bottom:0;z-index:20}
  .category-strip{display:flex;flex-direction:column;align-items:flex-start;gap:10px;justify-content:flex-start;overflow:visible;width:45.33px;padding-bottom:0}
  .cat-btn{width:45.33px;min-width:45.33px;max-width:45.33px;height:60.79px;min-height:60.79px;gap:4px;padding:6px 3px;border-radius:8px}
  .cat-icon{width:16px;height:16px}
  .cat-btn span{font-size:8px;line-height:1.05;max-width:100%;word-break:break-word}

  .games-section{padding:0;height:calc(100dvh - 240px);overflow-y:auto;overscroll-behavior:contain;scrollbar-width:none}
  .games-section::-webkit-scrollbar{display:none}
  .games-grid{grid-template-columns:repeat(2, minmax(0,1fr));gap:12px;justify-content:stretch}
  .game-card{width:100%}
  .game-card__media{width:100%;height:auto;aspect-ratio:1/1;border-radius:16px}
  .game-badge{top:6px;left:10px;font-size:12px}
  .game-players,.game-favorite{top:8px;height:24px;font-size:11px}
  .game-players{left:8px;padding:0 8px}
  .game-favorite{right:8px;width:26px;font-size:16px}
  .game-meta-pill{display:none}
  .game-title{font-size:12px;margin-top:5px}

  .lang-modal-card,.account-modal-card{width:min(100%, 387px);padding:22px 16px 16px;border-radius:16px}
  .lang-close,.account-close{top:10px;right:10px;width:30px;height:30px;font-size:24px}
  .lang-modal-card h2,.account-modal-card h2{font-size:20px;margin-bottom:14px}
  .lang-search{height:46px;border-radius:10px;padding:0 14px}
  .lang-search input{font-size:14px}
  .lang-option{min-height:64px;border-radius:10px;padding:14px 16px}
  .account-option{min-height:64px;border-radius:10px;padding:14px 16px;font-size:14px}
}

@media (max-width:480px){
  .account-option-main{gap:10px}
  .account-option-index{width:34px;height:34px;font-size:12px;border-radius:8px}
  .account-option-text strong{font-size:16px}
  .account-option-text small{font-size:11px}
}


@media (max-width:480px){
  .header-main{height:92px;grid-template-columns:88px minmax(0,1fr);padding:0 8px;gap:8px}
  .brand{width:88px}
  .header-ticker{font-size:11px}
  .header-actions{gap:6px 7px}
  .header-pill-btn{height:auto;padding:0;font-size:11px;border-radius:0;gap:5px}
  .header-auth-btn{height:28px;padding:0 10px;border-radius:8px;font-size:11px}
  .btn{height:26px;padding:0 7px;font-size:8px;border-radius:8px;gap:3px}
  .header-icon-btn{padding:1px}
  .header-icon-btn svg{width:22px;height:22px}
  .hero-slider{height:144px}
  .games-section{height:calc(100dvh - 240px)}
}

@media (max-width:390px){
  .header-main{grid-template-columns:82px minmax(0,1fr)}
  .brand{width:82px}
  .header-ticker{font-size:10px}
  .btn{padding:0 6px;font-size:7px}
  .header-pill-btn{font-size:10px;gap:4px}
  .header-auth-btn{height:27px;padding:0 8px;border-radius:8px;font-size:10px}
  .tool-btn{padding:0 8px;font-size:10px}
  .games-grid{gap:10px}
}


/* ===== Standard global scrollbar ===== */
html{
  scrollbar-width: thin;
  scrollbar-color: #1434A4 #071f6c;
}

body,
*[style*="overflow"],
.overflow-y-auto,
.overflow-x-auto,
.overflow-auto,
.scroll-area{
  scrollbar-width: thin;
  scrollbar-color: #1434A4 #071f6c;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*[style*="overflow"]::-webkit-scrollbar,
.overflow-y-auto::-webkit-scrollbar,
.overflow-x-auto::-webkit-scrollbar,
.overflow-auto::-webkit-scrollbar,
.scroll-area::-webkit-scrollbar{
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*[style*="overflow"]::-webkit-scrollbar-track,
.overflow-y-auto::-webkit-scrollbar-track,
.overflow-x-auto::-webkit-scrollbar-track,
.overflow-auto::-webkit-scrollbar-track,
.scroll-area::-webkit-scrollbar-track{
  background: #071f6c;
  border-radius: 0 !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*[style*="overflow"]::-webkit-scrollbar-thumb,
.overflow-y-auto::-webkit-scrollbar-thumb,
.overflow-x-auto::-webkit-scrollbar-thumb,
.overflow-auto::-webkit-scrollbar-thumb,
.scroll-area::-webkit-scrollbar-thumb{
  background: #1434A4;
  border-radius: 0 !important;
  border: none;
  box-shadow: none;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*[style*="overflow"]::-webkit-scrollbar-thumb:hover,
.overflow-y-auto::-webkit-scrollbar-thumb:hover,
.overflow-x-auto::-webkit-scrollbar-thumb:hover,
.overflow-auto::-webkit-scrollbar-thumb:hover,
.scroll-area::-webkit-scrollbar-thumb:hover{
  background: #1b43c8;
}


/* ===== Refinamiento v4: promos + auth modals ===== */
.header-auth-btn{cursor:pointer}
.lang-btn svg{color:#ffffff;fill:currentColor}
.tool-btn--promo{border-color:var(--yellow);background:rgba(7,31,108,.46);color:var(--yellow)}
.tool-btn--promo:hover{background:rgba(7,31,108,.66);border-color:var(--yellow2);color:var(--yellow2)}
.tool-emoji{display:inline-flex;align-items:center;justify-content:center;font-size:13px;line-height:1;transform:translateY(-1px)}

.auth-modal-backdrop{position:fixed;inset:0;background:rgba(4,3,15,.56);backdrop-filter:blur(10px);z-index:60}
.auth-modal{position:fixed;inset:0;z-index:61;display:grid;place-items:center;padding:20px}
.auth-modal-card{width:min(100%, 670px);max-height:calc(100dvh - 40px);overflow-y:auto;border-radius:18px;padding:26px;background:linear-gradient(180deg, rgba(67,52,42,.76), rgba(23,18,61,.9));border:1px solid rgba(255,255,255,.08);box-shadow:0 22px 60px rgba(0,0,0,.34);position:relative;scrollbar-width:thin;scrollbar-color:#1434A4 #0d236f}
.auth-modal-card--sm{width:min(100%, 670px)}
.auth-close{position:absolute;top:14px;right:16px;width:34px;height:34px;border:0;border-radius:50%;background:transparent;color:#d9d2d2;font-size:28px;line-height:1;cursor:pointer}
.auth-modal-card h2{margin:0 0 18px;text-align:center;font-size:24px;font-weight:700;color:#fff}
.auth-form{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:14px}
.auth-modal-card--sm .auth-form{grid-template-columns:1fr}
.auth-field{display:flex;flex-direction:column;gap:7px;color:#fff}
.auth-field span{font-size:13px;font-weight:700;color:#f4efff}
.auth-field input{width:100%;height:52px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:rgba(24,21,58,.55);outline:0;color:#fff;padding:0 15px;font-size:15px;transition:.18s ease}
.auth-field input::placeholder{color:#aaa5c5;opacity:1}
.auth-field input:focus{border-color:rgba(255,193,45,.72);box-shadow:0 0 0 3px rgba(255,193,45,.08)}
.password-wrap{position:relative;display:flex;align-items:center}
.password-wrap input{padding-right:50px}
.password-toggle{position:absolute;right:9px;width:36px;height:36px;border:0;border-radius:10px;background:rgba(255,255,255,.06);color:#ffffff;display:grid;place-items:center;cursor:pointer;transition:.18s ease}
.password-toggle:hover{background:rgba(255,193,45,.18);color:var(--yellow)}
.password-toggle svg{width:20px;height:20px;fill:currentColor}
.auth-submit{grid-column:1 / -1;height:46px;border:1.5px solid var(--yellow);border-radius:11px;background:var(--yellow);color:#101010;font-size:15px;font-weight:800;cursor:pointer;box-shadow:0 8px 18px rgba(0,0,0,.16);transition:.2s ease;margin-top:2px}
.auth-submit:hover{transform:translateY(-1px);filter:brightness(1.03)}

.auth-modal-card::-webkit-scrollbar{width:8px}
.auth-modal-card::-webkit-scrollbar-track{background:#0d236f;border-radius:0}
.auth-modal-card::-webkit-scrollbar-thumb{background:#1434A4;border-radius:0}

@media (max-width:900px){
  .catalog-actions{gap:5px}
  .tool-btn{height:36px;padding:0 9px;font-size:10px;border-radius:9px;gap:6px;min-width:auto}
  .view-switcher{gap:2px}
  .view-btn{width:34px;height:36px;border-radius:9px}
  .view-btn svg{width:18px;height:18px}
  .auth-modal-card{width:min(100%, 387px);padding:22px 16px 16px;border-radius:16px}
  .auth-close{top:10px;right:10px;width:30px;height:30px;font-size:24px}
  .auth-modal-card h2{font-size:20px;margin-bottom:14px}
  .auth-form{grid-template-columns:1fr;gap:12px}
  .auth-field span{font-size:12px}
  .auth-field input{height:46px;border-radius:10px;font-size:14px}
  .auth-submit{height:44px}
}

@media (max-width:480px){
  .tool-emoji{display:none}
  .tool-btn{padding:0 8px;font-size:9px;gap:5px}
  .catalog-actions{overflow-x:auto;scrollbar-width:none}
  .catalog-actions::-webkit-scrollbar{display:none}
  .auth-modal{padding:14px}
  .auth-modal-card{max-height:calc(100dvh - 28px)}
}

/* ===== Refinamiento v6: proveedores visibles sin flechas ===== */
.toolbar-wrap{
  grid-template-columns:minmax(280px, 384px) minmax(0, 1fr);
  gap:14px;
}
.catalog-actions--providers{
  justify-content:flex-start;
  gap:10px;
  min-width:0;
  overflow:hidden;
}
.catalog-actions--providers .tool-btn--promo{
  flex:0 0 auto;
  position:relative;
  z-index:4;
  height:42px;
  min-width:162px;
  border-radius:9px;
  border-color:var(--yellow);
  background:rgba(6,25,93,.50);
  color:var(--yellow);
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}
.catalog-actions--providers .tool-btn--promo:hover{
  background:rgba(6,25,93,.74);
  border-color:var(--yellow2);
  color:var(--yellow2);
}
.provider-carousel{
  flex:1 1 auto;
  min-width:0;
  height:44px;
  display:flex;
  align-items:center;
  overflow:hidden;
  position:relative;
}
.provider-viewport{
  flex:1 1 auto;
  min-width:0;
  height:44px;
  overflow:hidden;
}
.provider-track{
  height:44px;
  display:flex;
  align-items:center;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:0 2px;
  cursor:grab;
  -webkit-overflow-scrolling:touch;
  user-select:none;
}
.provider-track.is-dragging{
  cursor:grabbing;
  scroll-behavior:auto;
}
.provider-track::-webkit-scrollbar{display:none}
.provider-btn{
  flex:0 0 136px;
  width:136px;
  height:42px;
  border:1.7px solid rgba(255,193,45,.84);
  border-radius:8px;
  background:rgba(6,25,93,.46);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6px 14px;
  cursor:pointer;
  transition:.18s ease;
  box-shadow:0 8px 18px rgba(0,0,0,.10), inset 0 0 0 1px rgba(255,255,255,.025);
}
.provider-btn:hover,
.provider-btn.is-active{
  border-color:var(--yellow);
  background:rgba(6,25,93,.78);
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.18), 0 0 0 1px rgba(255,193,45,.08) inset;
}
.provider-btn img{
  max-width:108px;
  max-height:28px;
  width:auto;
  height:auto;
  object-fit:contain;
  opacity:.96;
  filter:brightness(0) invert(1);
  pointer-events:none;
  user-select:none;
}
.provider-btn:hover img,
.provider-btn.is-active img{opacity:1}
.provider-arrow{display:none!important}
.catalog-actions--providers .view-switcher{
  flex:0 0 auto;
  margin-left:4px;
}

@media (min-width:1181px){
  .catalog-actions--providers .view-switcher{margin-left:auto}
}

@media (max-width:1180px){
  .toolbar-wrap{grid-template-columns:minmax(280px, 384px) minmax(0, 1fr)}
  .catalog-actions--providers .tool-btn--promo{min-width:145px;padding:0 14px}
  .provider-btn{flex-basis:122px;width:122px;padding:5px 12px}
  .provider-btn img{max-width:98px;max-height:26px}
}

@media (max-width:900px){
  .toolbar-wrap{
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
    padding:12px 10px;
  }
  .search-box{
    grid-column:1 / -1;
    width:100%;
    height:46px;
  }
  .catalog-actions--providers{
    grid-column:1 / -1;
    width:100%;
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    gap:8px;
    align-items:center;
    overflow:visible;
  }
  .catalog-actions--providers .tool-btn--promo{
    min-width:122px;
    height:38px;
    padding:0 11px;
    font-size:11px;
    border-radius:8px;
  }
  .provider-carousel{height:38px;min-width:0}
  .provider-viewport{height:38px}
  .provider-track{height:38px;gap:7px}
  .provider-btn{
    flex:0 0 112px;
    width:112px;
    height:36px;
    border-radius:7px;
    padding:4px 10px;
  }
  .provider-btn img{max-width:90px;max-height:23px}
  .catalog-actions--providers .view-switcher{
    grid-column:1 / -1;
    justify-self:end;
    margin-left:0;
  }
  .category-section{top:154px}
}

@media (max-width:480px){
  .catalog-actions--providers{gap:6px}
  .catalog-actions--providers .tool-btn--promo{
    min-width:112px;
    height:36px;
    padding:0 9px;
    font-size:10px;
  }
  .provider-btn{
    flex-basis:104px;
    width:104px;
    height:34px;
  }
  .provider-btn img{max-width:82px;max-height:21px}
  .category-section{top:150px}
}
/* ===== Refinamiento v7: proveedores + checkboxes auth ===== */
.view-switcher{display:none!important}
.catalog-actions--providers{justify-content:flex-start;gap:10px;overflow:hidden}
.provider-carousel{max-width:100%}
.provider-btn{
  flex:0 0 154px;
  width:154px;
  border-color:rgba(255,193,45,.92);
  background:rgba(6,25,93,.54);
  box-shadow:0 8px 18px rgba(0,0,0,.10), inset 0 0 0 1px rgba(255,193,45,.10);
}
.provider-btn:hover,
.provider-btn.is-active{
  border-color:var(--yellow2);
  background:rgba(6,25,93,.82);
  box-shadow:0 10px 22px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,193,45,.18);
}
.provider-btn img{
  max-width:124px;
  max-height:29px;
  filter:brightness(0) invert(1);
}
.provider-btn[data-provider="PG Soft"] img{max-width:122px;max-height:30px}
.provider-btn[data-provider="Dragon Gaming"] img{max-width:126px;max-height:30px}
.provider-btn[data-provider="Vibra Gaming"] img{max-width:126px;max-height:30px}
.provider-btn[data-provider="Red Tiger"] img{max-width:126px;max-height:30px}
.provider-btn[data-provider="Endorphina"] img{max-width:128px;max-height:24px}
.auth-modal-card--sm{width:min(100%, 670px)}
.auth-checkbox-group{
  grid-column:1 / -1;
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:2px 0 0;
}
.auth-check{
  display:grid;
  grid-template-columns:24px minmax(0,1fr);
  align-items:start;
  gap:12px;
  color:#f2edf8;
  font-size:14px;
  font-weight:500;
  line-height:1.42;
  cursor:pointer;
}
.auth-check input{
  appearance:none;
  -webkit-appearance:none;
  width:20px;
  height:20px;
  margin:1px 0 0;
  border:2px solid rgba(255,255,255,.86);
  border-radius:5px;
  background:transparent;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.18s ease;
}
.auth-check input::after{
  content:'';
  width:6px;
  height:11px;
  border-right:3px solid #17120b;
  border-bottom:3px solid #17120b;
  transform:rotate(45deg) scale(0);
  margin-top:-2px;
  transition:.14s ease;
}
.auth-check input:checked{
  background:var(--yellow);
  border-color:var(--yellow);
}
.auth-check input:checked::after{transform:rotate(45deg) scale(1)}
.auth-check a{color:var(--yellow);font-weight:700;text-decoration:none}
.auth-check a:hover{text-decoration:underline}
.auth-check--strong{font-weight:800;color:#ffffff}

@media (max-width:1180px){
  .provider-btn{flex-basis:136px;width:136px}
  .provider-btn img{max-width:110px;max-height:27px}
}
@media (max-width:900px){
  .catalog-actions--providers{grid-template-columns:auto minmax(0,1fr);overflow:visible}
  .provider-btn{flex:0 0 118px;width:118px;height:36px;padding:4px 9px}
  .provider-btn img{max-width:96px;max-height:23px}
  .auth-modal-card,.auth-modal-card--sm{width:min(100%, 387px)}
  .auth-checkbox-group{gap:10px}
  .auth-check{grid-template-columns:22px minmax(0,1fr);gap:10px;font-size:12px;line-height:1.35}
  .auth-check input{width:19px;height:19px;border-radius:5px}
}
@media (max-width:480px){
  .provider-btn{flex-basis:108px;width:108px;height:34px}
  .provider-btn img{max-width:88px;max-height:21px}
}


.provider-btn{
  border-color:rgba(255,255,255,.88)!important;
  box-shadow:0 8px 18px rgba(0,0,0,.10), inset 0 0 0 1px rgba(255,255,255,.08)!important;
}
.provider-btn:hover,
.provider-btn.is-active{
  border-color:#ffffff!important;
  background:rgba(6,25,93,.84)!important;
  box-shadow:0 10px 22px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.18)!important;
}
.provider-btn[data-provider="Red Tiger"]{
  flex:0 0 178px;
  width:178px;
}
.provider-btn[data-provider="Red Tiger"] img{
  max-width:146px;
  max-height:36px;
}

.payments-section{
  padding:8px 44px 0;
  background:var(--bg-gradient);
}
.payments-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(8,31,109,.66), rgba(6,24,92,.92));
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  padding:24px 26px;
}
.footer-section-head{display:flex;flex-direction:column;align-items:center;gap:4px;margin-bottom:18px;text-align:center}
.footer-section-head--left{align-items:flex-start;text-align:left}
.footer-kicker{display:inline-flex;align-items:center;justify-content:center;padding:7px 12px;border-radius:999px;border:1px solid rgba(255,193,45,.42);background:rgba(255,193,45,.08);color:var(--yellow);font-size:12px;font-weight:800;letter-spacing:.3px;text-transform:uppercase}
.footer-section-head h2,.footer-section-head h3{margin:0;color:#fff;font-size:26px;font-weight:800;line-height:1.15}
.footer-section-head h3{font-size:22px}
.payments-logos{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap}
.payment-logo{min-width:260px;max-width:340px;height:74px;padding:14px 20px;border-radius:16px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.95);display:flex;align-items:center;justify-content:center;box-shadow:0 12px 28px rgba(0,0,0,.16)}
.payment-logo img{max-height:38px;width:auto;object-fit:contain}

.site-footer{
  padding:22px 44px 42px;
  background:var(--bg-gradient);
}
.site-footer__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr 1fr;
  gap:22px;
}
.footer-col{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(7,29,103,.72), rgba(6,22,85,.94));
  padding:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.footer-brand{display:inline-block;width:160px;margin-bottom:16px}
.footer-copy{margin:0 0 18px;color:#d8e0ff;font-size:14px;line-height:1.65;max-width:420px}
.footer-social{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.footer-social__link{width:44px;height:44px;border-radius:12px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.05);display:grid;place-items:center;color:#fff;transition:.2s ease}
.footer-social__link svg{width:20px;height:20px;fill:currentColor}
.footer-social__link:hover{transform:translateY(-1px);border-color:rgba(255,193,45,.55);background:rgba(255,193,45,.10);color:var(--yellow)}
.footer-links{display:flex;flex-direction:column;gap:12px}
.footer-links a{color:#eef2ff;font-size:14px;font-weight:600;line-height:1.5;transition:.18s ease}
.footer-links a:hover{color:var(--yellow)}
.responsible-card{display:flex;align-items:flex-start;gap:14px;padding:16px 18px;border-radius:16px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.04)}
.responsible-badge{width:62px;height:62px;flex:0 0 62px;border-radius:16px;background:rgba(255,193,45,.12);color:var(--yellow);display:grid;place-items:center}
.responsible-badge svg{width:46px;height:46px;display:block}
.responsible-copy strong{display:block;margin-bottom:6px;color:#fff;font-size:16px;font-weight:800}
.responsible-copy p{margin:0;color:#d8e0ff;font-size:14px;line-height:1.6}

@media (max-width:1180px){
  .site-footer__grid{grid-template-columns:1fr;}
  .provider-btn[data-provider="Red Tiger"]{flex-basis:160px;width:160px}
  .provider-btn[data-provider="Red Tiger"] img{max-width:132px;max-height:32px}
}
@media (max-width:900px){
  .payments-section{padding:10px 10px 0}
  .payments-card{padding:18px 16px;border-radius:16px}
  .footer-section-head h2,.footer-section-head h3{font-size:18px}
  .payment-logo{min-width:0;width:100%;max-width:100%;height:64px;padding:12px 16px;border-radius:14px}
  .payment-logo img{max-height:30px}
  .site-footer{padding:16px 10px 26px}
  .footer-col{padding:18px 16px;border-radius:16px}
  .footer-brand{width:132px;margin-bottom:12px}
  .footer-copy,.footer-links a,.responsible-copy p{font-size:13px}
  .footer-social__link{width:40px;height:40px;border-radius:10px}
  .responsible-card{padding:14px;gap:12px;border-radius:14px}
  .responsible-badge{width:54px;height:54px;flex-basis:54px}
  .responsible-badge svg{width:40px;height:40px}
  .provider-btn[data-provider="Red Tiger"]{flex-basis:136px;width:136px;height:36px}
  .provider-btn[data-provider="Red Tiger"] img{max-width:112px;max-height:28px}
}
@media (max-width:480px){
  .footer-social{gap:10px}
  .payments-card,.footer-col{padding:16px 14px}
  .payment-logo{height:58px}
  .provider-btn[data-provider="Red Tiger"]{flex-basis:126px;width:126px;height:34px}
  .provider-btn[data-provider="Red Tiger"] img{max-width:102px;max-height:24px}
}


.payments-section,
.payments-card,
.site-footer__grid,
.footer-col,
.footer-col--brand,
.footer-col--links,
.footer-col--responsible,
.responsible-card,
.responsible-badge,
.responsible-copy,
.footer-copy,
.footer-links,
.footer-section-head,
.footer-kicker,
.payments-logos,
.payment-logo{
  all:unset;
}

.site-footer--fluid{
  padding:58px 44px 34px;
  background:linear-gradient(180deg, #081f69 0%, #061646 100%);
  border-top:1px solid rgba(255,255,255,.10);
  color:#fff;
}
.footer-main-row{
  display:grid;
  grid-template-columns:minmax(280px, 1.35fr) minmax(460px, 1fr);
  gap:68px;
  align-items:start;
}
.footer-brand-block{max-width:780px}
.footer-brand{display:inline-block;width:182px;margin-bottom:20px}
.footer-brand img{width:100%;height:auto;display:block}
.footer-description{
  margin:0;
  max-width:760px;
  color:#e9edff;
  font-size:15px;
  line-height:1.72;
  font-weight:500;
}
.footer-payment-inline{
  margin-top:26px;
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.footer-payment-title{
  color:var(--yellow);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.footer-payment-logo{
  min-width:194px;
  height:52px;
  padding:0 18px;
  border-radius:10px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.footer-payment-logo img{max-width:150px;max-height:30px;width:auto;height:auto;display:block}
.footer-nav-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:40px;
  align-items:start;
}
.footer-nav-col{display:flex;flex-direction:column;gap:14px;min-width:0}
.footer-nav-col h3{
  margin:0 0 8px;
  color:#fff;
  font-size:17px;
  font-weight:900;
  line-height:1.2;
}
.footer-nav-col a{
  color:#e8edff;
  font-size:14px;
  font-weight:600;
  line-height:1.4;
  transition:.18s ease;
}
.footer-nav-col a:hover{color:var(--yellow)}
.footer-responsible-row{
  margin-top:42px;
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.footer-responsible-copy{
  display:flex;
  align-items:center;
  gap:16px;
  max-width:980px;
}
.footer-plus18{
  width:56px;
  height:56px;
  flex:0 0 56px;
  color:var(--yellow);
  display:grid;
  place-items:center;
}
.footer-plus18 svg{width:52px;height:52px;display:block}
.footer-responsible-copy p{
  margin:0;
  color:#e9edff;
  font-size:14px;
  line-height:1.62;
  font-weight:500;
}
.footer-responsible-copy strong{color:#fff;font-weight:900}
.footer-bottom-row{
  min-height:58px;
  padding-top:28px;
  display:grid;
  grid-template-columns:minmax(260px, 1fr) auto minmax(260px, 1fr);
  gap:28px;
  align-items:center;
}
.footer-bottom-row p{
  margin:0;
  color:#e7ebff;
  font-size:13px;
  line-height:1.5;
  font-weight:500;
}
.footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.footer-social__link{
  width:34px;
  height:34px;
  border:0;
  border-radius:0;
  background:transparent;
  display:grid;
  place-items:center;
  color:#fff;
  transition:.18s ease;
}
.footer-social__link svg{width:22px;height:22px;fill:currentColor;display:block}
.footer-social__link:hover{color:var(--yellow);transform:translateY(-1px)}
.footer-legal-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:26px;
  flex-wrap:wrap;
}
.footer-legal-links a{
  color:#e7ebff;
  font-size:13px;
  font-weight:600;
  transition:.18s ease;
}
.footer-legal-links a:hover{color:var(--yellow)}

@media (max-width:1180px){
  .site-footer--fluid{padding:46px 24px 30px}
  .footer-main-row{grid-template-columns:1fr;gap:36px}
  .footer-nav-grid{grid-template-columns:repeat(3, minmax(0,1fr));gap:24px}
  .footer-bottom-row{grid-template-columns:1fr;gap:18px;text-align:center}
  .footer-legal-links{justify-content:center}
}
@media (max-width:900px){
  .site-footer--fluid{padding:38px 18px 26px}
  .footer-brand{width:142px;margin-bottom:16px}
  .footer-description{font-size:13px;line-height:1.65}
  .footer-payment-inline{margin-top:20px;gap:10px}
  .footer-payment-title{width:100%;font-size:11px}
  .footer-payment-logo{height:46px;min-width:176px;padding:0 16px}
  .footer-payment-logo img{max-width:136px;max-height:26px}
  .footer-nav-grid{grid-template-columns:1fr 1fr;gap:26px 22px}
  .footer-nav-col h3{font-size:15px;margin-bottom:4px}
  .footer-nav-col a{font-size:13px}
  .footer-responsible-row{margin-top:32px;padding:22px 0}
  .footer-responsible-copy{align-items:flex-start;gap:12px}
  .footer-plus18{width:46px;height:46px;flex-basis:46px}
  .footer-plus18 svg{width:42px;height:42px}
  .footer-responsible-copy p{font-size:12.5px;line-height:1.58}
  .footer-bottom-row{padding-top:22px;gap:16px}
  .footer-social{gap:14px}
  .footer-social__link{width:30px;height:30px}
  .footer-social__link svg{width:20px;height:20px}
  .footer-legal-links{gap:14px 20px}
  .footer-bottom-row p,.footer-legal-links a{font-size:12px}
}
@media (max-width:520px){
  .footer-nav-grid{grid-template-columns:1fr;gap:22px}
  .footer-payment-logo{width:100%;max-width:240px}
}


.site-footer--refined{
  padding:40px 44px 30px;
  background:transparent;
  border-top:1px solid rgba(255,255,255,.10);
  color:#fff;
}
.footer-divider{
  width:100%;
  height:1px;
  background:rgba(255,255,255,.10);
  margin:26px 0;
}
.footer-top-row,
.footer-links-row,
.footer-bottom-row--ref,
.footer-responsible-band{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
}
.footer-top-row{align-items:center;}
.footer-top-brand{display:flex;align-items:center;gap:18px;flex-wrap:wrap;}
.footer-brand--top{width:150px;display:inline-block;}
.footer-brand--bottom{width:190px;display:inline-block;}
.footer-brand--top img,
.footer-brand--bottom img{width:100%;height:auto;display:block;}

.footer-top-social,
.footer-social{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.footer-social__link{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  color:#fff;
  background:transparent;
  border:0;
  border-radius:0;
  transition:.18s ease;
}
.footer-social__link svg{width:22px;height:22px;fill:currentColor;display:block;}
.footer-social__link:hover{color:var(--yellow);transform:translateY(-1px);}

.footer-responsible-band{align-items:center;}
.footer-responsible-copy--wide{max-width:1020px;}
.footer-responsible-copy--wide h3{
  margin:0 0 14px;
  color:rgba(255,255,255,.86);
  font-size:18px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.footer-responsible-copy--wide p{
  margin:0;
  color:#e7edff;
  font-size:14px;
  line-height:1.75;
  font-weight:500;
}
.footer-responsible-badges{display:flex;align-items:center;gap:22px;flex-wrap:wrap;justify-content:flex-end;}
.footer-plus18{
  width:52px;height:52px;flex:0 0 52px;color:var(--yellow);display:grid;place-items:center;
}
.footer-plus18 svg{width:48px;height:48px;display:block;}
.footer-sinpe-inline{display:inline-flex;align-items:center;justify-content:center;min-height:42px;}
.footer-sinpe-inline img{
  width:auto;
  max-width:170px;
  max-height:34px;
  display:block;
  filter:brightness(0) invert(1);
  opacity:.96;
}

.footer-links-row{align-items:flex-start;}
.footer-brand-area{flex:0 0 min(36%, 420px);max-width:420px;}
.footer-description{
  margin:18px 0 0;
  color:#e7edff;
  font-size:14px;
  line-height:1.75;
  font-weight:500;
}
.footer-nav-grid{
  flex:1;
  display:grid;
  grid-template-columns:repeat(3, minmax(160px,1fr));
  gap:34px 48px;
}
.footer-nav-col{display:flex;flex-direction:column;gap:14px;min-width:0;}
.footer-nav-col h3{margin:0 0 8px;color:#fff;font-size:17px;font-weight:800;line-height:1.2;}
.footer-nav-col a{color:#e8edff;font-size:14px;font-weight:500;line-height:1.45;transition:.18s ease;}
.footer-nav-col a:hover{color:var(--yellow);}

.footer-bottom-row--ref{align-items:center;}
.footer-bottom-row--ref p{
  margin:0;
  color:#e7ebff;
  font-size:13px;
  line-height:1.5;
  font-weight:500;
}
.footer-legal-links{display:flex;align-items:center;justify-content:flex-end;gap:26px;flex-wrap:wrap;}
.footer-legal-links a{color:#e7ebff;font-size:13px;font-weight:600;transition:.18s ease;}
.footer-legal-links a:hover{color:var(--yellow);}

@media (max-width:1180px){
  .site-footer--refined{padding:34px 24px 26px;}
  .footer-links-row{flex-direction:column;}
  .footer-brand-area{flex:0 0 auto;max-width:100%;}
  .footer-nav-grid{width:100%;grid-template-columns:repeat(3,minmax(140px,1fr));gap:28px 24px;}
  .footer-responsible-band{flex-direction:column;align-items:flex-start;}
  .footer-responsible-badges{justify-content:flex-start;}
  .footer-bottom-row--ref{flex-direction:column;align-items:flex-start;}
  .footer-legal-links{justify-content:flex-start;}
}
@media (max-width:900px){
  .site-footer--refined{padding:28px 18px 24px;}
  .footer-divider{margin:22px 0;}
  .footer-brand--top{width:128px;}
  .footer-brand--bottom{width:154px;}
  .footer-top-row{flex-direction:column;align-items:flex-start;gap:16px;}
  .footer-top-social{gap:14px;}
  .footer-responsible-copy--wide h3{font-size:16px;margin-bottom:10px;}
  .footer-responsible-copy--wide p,.footer-description,.footer-nav-col a{font-size:13px;line-height:1.65;}
  .footer-sinpe-inline img{max-width:146px;max-height:28px;}
  .footer-nav-grid{grid-template-columns:1fr 1fr;gap:24px 20px;}
  .footer-nav-col h3{font-size:15px;margin-bottom:2px;}
  .footer-bottom-row--ref p,.footer-legal-links a{font-size:12px;}
}
@media (max-width:560px){
  .footer-nav-grid{grid-template-columns:1fr;gap:20px;}
  .footer-social__link{width:30px;height:30px;}
  .footer-social__link svg{width:20px;height:20px;}
  .footer-plus18{width:46px;height:46px;flex-basis:46px;}
  .footer-plus18 svg{width:42px;height:42px;}
  .footer-responsible-badges{gap:16px;}
  .footer-sinpe-inline img{max-width:132px;max-height:26px;}
  .footer-legal-links{gap:14px 18px;}
}


.provider-btn[data-provider="Red Tiger"]{
  flex:0 0 196px !important;
  width:196px !important;
}
.provider-btn[data-provider="Red Tiger"] img{
  max-width:164px !important;
  max-height:40px !important;
}

.footer-links-row{
  display:block;
}
.footer-nav-grid--full{
  width:100%;
  grid-template-columns:repeat(4, minmax(160px, 1fr));
  gap:34px 44px;
}
.footer-bottom-row--ref{
  justify-content:flex-start;
}
.footer-bottom-row--ref p{
  width:100%;
}

@media (max-width:1180px){
  .footer-nav-grid--full{
    grid-template-columns:repeat(4, minmax(140px,1fr));
    gap:26px 20px;
  }
}
@media (max-width:900px){
  .provider-btn[data-provider="Red Tiger"]{
    flex-basis:154px !important;
    width:154px !important;
    height:36px !important;
  }
  .provider-btn[data-provider="Red Tiger"] img{
    max-width:128px !important;
    max-height:30px !important;
  }
  .footer-nav-grid--full{
    grid-template-columns:1fr 1fr;
    gap:24px 20px;
  }
}
@media (max-width:560px){
  .provider-btn[data-provider="Red Tiger"]{
    flex-basis:142px !important;
    width:142px !important;
    height:34px !important;
  }
  .provider-btn[data-provider="Red Tiger"] img{
    max-width:118px !important;
    max-height:26px !important;
  }
  .footer-nav-grid--full{
    grid-template-columns:1fr;
    gap:20px;
  }
}


.footer-top-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  flex-wrap:wrap;
}
.footer-top-payment{
  display:flex;
  align-items:center;
  gap:12px;
  padding-right:18px;
  margin-right:2px;
}
.footer-top-payment__label{
  color:#e7edff;
  font-size:13px;
  font-weight:700;
  line-height:1.35;
  white-space:nowrap;
}
.footer-sinpe-inline--top{
  min-height:0;
}
.footer-sinpe-inline--top img{
  max-width:148px;
  max-height:50px
}
.footer-responsible-badges{
  gap:0;
}

@media (max-width:900px){
  .footer-top-actions{
    width:100%;
    justify-content:flex-start;
    gap:16px;
  }
  .footer-top-payment{
    width:100%;
    padding-right:0;
    margin-right:0;
    gap:10px;
    flex-wrap:wrap;
  }
  .footer-top-payment__label{
    font-size:12px;
    white-space:normal;
  }
  .footer-sinpe-inline--top img{
    max-width:136px;
    max-height:26px;
  }
}
@media (max-width:560px){
  .footer-top-payment__label{
    font-size:11px;
  }
  .footer-sinpe-inline--top img{
    max-width:128px;
    max-height:24px;
  }
}


/* ===== Refinamiento CDV1.2 ===== */
.site-footer--refined{
  margin-top: 44px;
}
.footer-nav-col--logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:160px;
  padding:8px 0;
}
.footer-nav-col--logo img{
  display:block;
  width:min(100%, 220px);
  max-width:220px;
  height:auto;
  opacity:.98;
}
.footer-nav-col a{
  display:inline-block;
}
@media (max-width: 1180px){
  .site-footer--refined{margin-top:38px;}
  .footer-nav-col--logo{min-height:120px;}
  .footer-nav-col--logo img{max-width:190px;}
}
@media (max-width: 900px){
  .site-footer--refined{margin-top:32px;}
  .footer-nav-grid--full{grid-template-columns:1fr 1fr;}
  .footer-nav-col--logo{min-height:110px;}
  .footer-nav-col--logo img{max-width:170px;}
}
@media (max-width: 560px){
  .site-footer--refined{margin-top:28px;}
  .footer-nav-col--logo{justify-content:flex-start;min-height:auto;padding-top:6px;}
  .footer-nav-col--logo img{max-width:160px;}
}


/* ===== Refinamiento CDV1.3 ===== */
.provider-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.provider-btn img{
  width:auto;
  height:auto;
  max-width:76%;
  max-height:22px;
  object-fit:contain;
}
.provider-btn[data-provider="CP Games"] img,
.provider-btn[data-provider="Pragmatic Play"] img,
.provider-btn[data-provider="PG Soft"] img,
.provider-btn[data-provider="Hacksaw Gaming"] img,
.provider-btn[data-provider="Hotdog"] img,
.provider-btn[data-provider="Dragon Gaming"] img,
.provider-btn[data-provider="Vibra Gaming"] img,
.provider-btn[data-provider="Endorphina"] img{
  max-height:22px;
}
.provider-btn[data-provider="Red Tiger"]{
  flex:0 0 188px !important;
  width:188px !important;
}
.provider-btn[data-provider="Red Tiger"] img{
  max-width:156px !important;
  max-height:34px !important;
}

@media (max-width:900px){
  .provider-btn img{
    max-width:74%;
    max-height:20px;
  }
  .provider-btn[data-provider="Red Tiger"]{
    flex-basis:162px !important;
    width:162px !important;
    height:36px !important;
  }
  .provider-btn[data-provider="Red Tiger"] img{
    max-width:136px !important;
    max-height:30px !important;
  }
}

@media (max-width:560px){
  .provider-track{
    gap:8px;
  }
  .provider-btn{
    flex-basis:112px !important;
    width:112px !important;
    height:36px !important;
  }
  .provider-btn img{
    max-width:74%;
    max-height:18px;
  }
  .provider-btn[data-provider="Red Tiger"]{
    flex-basis:150px !important;
    width:150px !important;
    height:36px !important;
  }
  .provider-btn[data-provider="Red Tiger"] img{
    max-width:124px !important;
    max-height:24px !important;
  }

  .footer-responsible-band{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:8px 14px;
    align-items:start;
  }
  .footer-responsible-copy--wide{
    display:contents;
  }
  .footer-responsible-copy--wide h3{
    grid-column:1;
    grid-row:1;
    margin:0;
    font-size:15px;
    line-height:1.15;
  }
  .footer-responsible-badges{
    grid-column:2;
    grid-row:1;
    align-self:start;
    justify-content:flex-end;
    gap:0;
  }
  .footer-responsible-copy--wide p{
    grid-column:1 / -1;
    grid-row:2;
    margin:2px 0 0;
    font-size:12.5px;
    line-height:1.58;
    max-width:none;
  }
}


/* ===== Auth Wallet v1: sesión activa + ajustes solicitados ===== */
.header-auth-btn{
  border-radius:8px!important;
  min-height:40px;
}
.header-auth-btn--account{
  background:rgba(6,25,93,.46);
  color:#fff;
  border-color:rgba(255,255,255,.88);
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}
.header-auth-btn--account:hover{
  background:rgba(6,25,93,.74);
  border-color:#fff;
}
.session-chip{
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 14px;
  border:1.5px solid rgba(255,255,255,.88);
  border-radius:8px;
  background:rgba(6,25,93,.48);
  color:#fff;
  font-size:14px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}
.session-chip svg{
  width:18px;
  height:18px;
  fill:currentColor;
  color:var(--yellow);
  flex:0 0 auto;
}
.session-chip--balance svg{color:#ffffff}
.auth-alert{
  grid-column:1 / -1;
  margin:-4px 0 14px;
  padding:11px 13px;
  border-radius:10px;
  border:1px solid rgba(255,193,45,.48);
  background:rgba(255,193,45,.11);
  color:#fff;
  font-size:13px;
  font-weight:700;
  line-height:1.45;
}
.account-summary{
  margin:0 0 16px;
  padding:15px 16px;
  border:1px solid rgba(255,193,45,.35);
  border-radius:12px;
  background:rgba(255,193,45,.08);
  display:flex;
  flex-direction:column;
  gap:5px;
  color:#fff;
}
.account-summary strong{font-size:20px;color:var(--yellow);font-weight:900;letter-spacing:.4px}
.account-summary span{font-size:14px;font-weight:700}
.account-summary small{font-size:12px;color:#e8edff;font-weight:600}
.account-logout-form{margin:0}
.account-option--logout{
  width:100%;
  cursor:pointer;
  font:inherit;
  text-align:left;
}

.auth-modal-card{
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.22) transparent!important;
}
.auth-modal-card::-webkit-scrollbar{width:7px!important;height:7px!important}
.auth-modal-card::-webkit-scrollbar-track{background:transparent!important;border-radius:0!important}
.auth-modal-card::-webkit-scrollbar-thumb{background:rgba(255,255,255,.22)!important;border-radius:0!important;border:0!important}
.auth-modal-card::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.34)!important}

.provider-btn[data-provider="Red Tiger"]{
  flex:0 0 206px!important;
  width:206px!important;
}
.provider-btn[data-provider="Red Tiger"] img{
  max-width:178px!important;
  max-height:42px!important;
}
.provider-btn[data-provider="Pragmatic Play"] img{
  max-width:138px!important;
  max-height:34px!important;
}
.provider-btn[data-provider="Vibra Gaming"] img,
.provider-btn[data-provider="Endorphina"] img{
  max-width:142px!important;
  max-height:34px!important;
}

@media (max-width:1180px){
  .session-chip{height:36px;padding:0 11px;font-size:12px;gap:6px}
  .session-chip svg{width:16px;height:16px}
  .header-auth-btn--account{height:36px;font-size:12px;padding:0 12px}
  .provider-btn[data-provider="Red Tiger"]{flex-basis:178px!important;width:178px!important}
  .provider-btn[data-provider="Red Tiger"] img{max-width:150px!important;max-height:34px!important}
  .provider-btn[data-provider="Pragmatic Play"] img{max-width:120px!important;max-height:30px!important}
}
@media (max-width:900px){
  .header-actions{gap:6px;row-gap:6px}
  .session-chip{height:30px;padding:0 8px;font-size:10px;border-radius:7px;gap:5px}
  .session-chip svg{width:14px;height:14px}
  .session-chip--balance span{max-width:92px;overflow:hidden;text-overflow:ellipsis}
  .header-auth-btn--account{height:30px;border-radius:7px;font-size:10px;padding:0 9px}
  .provider-btn[data-provider="Red Tiger"]{flex-basis:158px!important;width:158px!important;height:38px!important}
  .provider-btn[data-provider="Red Tiger"] img{max-width:132px!important;max-height:31px!important}
  .provider-btn[data-provider="Pragmatic Play"] img{max-width:108px!important;max-height:28px!important}
  .provider-btn[data-provider="Vibra Gaming"] img,
  .provider-btn[data-provider="Endorphina"] img{max-width:108px!important;max-height:27px!important}
}
@media (max-width:520px){
  .session-chip{height:28px;padding:0 7px;font-size:9px}
  .session-chip--balance span{max-width:82px}
  .header-auth-btn--account{height:28px;font-size:9px;padding:0 8px}
  .provider-btn[data-provider="Red Tiger"]{flex-basis:148px!important;width:148px!important;height:36px!important}
  .provider-btn[data-provider="Red Tiger"] img{max-width:124px!important;max-height:28px!important}
}


/* ===== Auth Wallet v2: header limpio + env + balance ===== */
.ticker-wrap--empty{
  pointer-events:none;
}
.session-chip{
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  padding-left:6px!important;
  padding-right:6px!important;
}
.session-chip--player svg{
  color:var(--yellow)!important;
}
.session-chip--balance svg{
  color:#ffffff!important;
}
.session-chip span{
  display:inline-flex;
  align-items:center;
}
.auth-modal-card{
  scrollbar-width:thin!important;
  scrollbar-color:rgba(255,255,255,.14) transparent!important;
}
.auth-modal-card::-webkit-scrollbar{width:6px!important;height:6px!important}
.auth-modal-card::-webkit-scrollbar-track{background:transparent!important;border-radius:0!important}
.auth-modal-card::-webkit-scrollbar-thumb{background:rgba(255,255,255,.14)!important;border-radius:0!important;border:0!important}
.auth-modal-card::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.24)!important}

@media (max-width:900px){
  .session-chip{
    padding-left:4px!important;
    padding-right:4px!important;
  }
  .session-chip--balance span{
    max-width:96px;
  }
}
@media (max-width:520px){
  .session-chip--balance span{
    max-width:86px;
  }
}


/* ===== Refinamiento v6: UI compacta + botones redondeados + Red Tiger ===== */
.header-auth-btn,
.tool-btn,
.provider-btn,
.search-box,
.lang-search,
.auth-field input,
.password-wrap input,
.auth-submit,
.lang-option,
.account-option,
.account-summary{
  border-radius:16px!important;
}
.header-auth-btn{
  height:42px!important;
  min-height:42px!important;
  padding:0 20px!important;
  border-radius:16px!important;
}
.header-auth-btn--account{
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  background:rgba(10,8,24,.18)!important;
  color:var(--yellow)!important;
  border:1.5px solid var(--yellow)!important;
  box-shadow:0 8px 18px rgba(0,0,0,.16)!important;
}
.header-auth-btn--account .account-btn-icon{
  width:19px;
  height:19px;
  fill:currentColor;
  flex:0 0 auto;
}
.header-auth-btn--account:hover{
  background:rgba(255,193,45,.08)!important;
  border-color:var(--yellow)!important;
}

.auth-modal-card,
.lang-modal-card,
.account-modal-card{
  width:min(100%, 590px)!important;
  padding:22px 24px!important;
  border-radius:20px!important;
}
.auth-modal-card--sm{
  width:min(100%, 520px)!important;
}
.account-modal-card{
  width:min(100%, 540px)!important;
  padding:20px 22px!important;
}
.auth-modal-card h2,
.lang-modal-card h2,
.account-modal-card h2{
  font-size:22px!important;
  margin-bottom:16px!important;
}
.auth-form{
  gap:14px 14px!important;
}
.auth-field{
  gap:5px!important;
}
.auth-field input,
.password-wrap input{
  height:46px!important;
  padding-left:14px!important;
  padding-right:14px!important;
}
.password-wrap input{
  padding-right:48px!important;
}
.auth-submit{
  height:44px!important;
  margin-top:0!important;
}
.account-summary{
  margin-bottom:12px!important;
  padding:12px 14px!important;
  gap:3px!important;
}
.account-summary strong{font-size:18px!important;}
.account-summary span{font-size:13px!important;}
.account-summary small{font-size:11.5px!important;}
.account-options{
  gap:10px!important;
}
.account-option{
  min-height:58px!important;
  padding:11px 14px!important;
  border-width:1.5px!important;
}
.account-option-index{
  width:34px!important;
  height:34px!important;
  border-radius:12px!important;
  font-size:11px!important;
}
.account-option-text strong{
  font-size:16px!important;
}
.account-option-text small{
  font-size:12px!important;
}
.account-option-arrow{
  width:30px!important;
  height:30px!important;
  border-radius:50%!important;
  display:inline-grid!important;
  place-items:center!important;
  color:var(--yellow)!important;
  background:rgba(255,193,45,.08)!important;
  border:1px solid rgba(255,193,45,.24)!important;
  font-size:0!important;
  flex:0 0 auto!important;
}
.account-option-arrow svg{
  width:18px!important;
  height:18px!important;
  fill:currentColor!important;
  display:block!important;
}

.provider-btn{
  height:48px!important;
  border-radius:16px!important;
  padding:6px 16px!important;
}
.tool-btn--promo{
  border-radius:16px!important;
}
.provider-btn img{
  object-fit:contain!important;
}
.provider-btn[data-provider="Red Tiger"]{
  flex:0 0 216px!important;
  width:216px!important;
  height:52px!important;
}
.provider-btn[data-provider="Red Tiger"] img{
  width:176px!important;
  height:42px!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:contain!important;
}
.provider-btn[data-provider="Pragmatic Play"] img{
  width:142px!important;
  height:34px!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:contain!important;
}
.provider-btn[data-provider="Vibra Gaming"] img,
.provider-btn[data-provider="Endorphina"] img{
  width:148px!important;
  height:34px!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:contain!important;
}

@media (max-width:900px){
  .header-auth-btn{
    height:34px!important;
    min-height:34px!important;
    padding:0 13px!important;
    border-radius:13px!important;
    font-size:11px!important;
  }
  .header-auth-btn--account .account-btn-icon{
    width:16px!important;
    height:16px!important;
  }
  .auth-modal-card,
  .lang-modal-card,
  .account-modal-card{
    width:min(100%, 388px)!important;
    padding:18px 16px!important;
    border-radius:18px!important;
  }
  .account-modal-card{
    width:min(100%, 370px)!important;
    padding:18px 15px!important;
  }
  .auth-modal-card h2,
  .lang-modal-card h2,
  .account-modal-card h2{
    font-size:19px!important;
    margin-bottom:13px!important;
  }
  .auth-form{
    gap:11px!important;
  }
  .auth-field input,
  .password-wrap input{
    height:42px!important;
    border-radius:14px!important;
    font-size:13px!important;
  }
  .auth-submit{
    height:42px!important;
    border-radius:14px!important;
  }
  .account-summary{
    padding:10px 12px!important;
    margin-bottom:10px!important;
  }
  .account-option{
    min-height:54px!important;
    padding:9px 11px!important;
    border-radius:14px!important;
  }
  .account-option-index{
    width:30px!important;
    height:30px!important;
    border-radius:10px!important;
  }
  .account-option-text strong{font-size:14px!important;}
  .account-option-text small{font-size:11px!important;}
  .account-option-arrow{
    width:28px!important;
    height:28px!important;
  }
  .provider-btn{
    height:40px!important;
    border-radius:14px!important;
  }
  .provider-btn[data-provider="Red Tiger"]{
    flex-basis:174px!important;
    width:174px!important;
    height:42px!important;
  }
  .provider-btn[data-provider="Red Tiger"] img{
    width:146px!important;
    height:34px!important;
  }
  .provider-btn[data-provider="Pragmatic Play"] img{
    width:122px!important;
    height:30px!important;
  }
  .provider-btn[data-provider="Vibra Gaming"] img,
  .provider-btn[data-provider="Endorphina"] img{
    width:124px!important;
    height:30px!important;
  }
}

@media (max-width:520px){
  .header-auth-btn{
    height:30px!important;
    min-height:30px!important;
    padding:0 10px!important;
    border-radius:12px!important;
    font-size:10px!important;
  }
  .provider-btn[data-provider="Red Tiger"]{
    flex-basis:158px!important;
    width:158px!important;
    height:38px!important;
  }
  .provider-btn[data-provider="Red Tiger"] img{
    width:134px!important;
    height:30px!important;
  }
}


/* ===== Provider images border final v9 =====
   Solo ajuste visual de proveedores: mantiene imágenes y fuerza borde completo interno. */
.provider-carousel{
  height:54px !important;
  overflow:visible !important;
}
.provider-viewport{
  height:54px !important;
  overflow-x:auto !important;
  overflow-y:visible !important;
  padding:3px 4px 7px !important;
}
.provider-track{
  height:46px !important;
  gap:12px !important;
  padding:0 8px !important;
  overflow:visible !important;
  align-items:center !important;
}
.provider-btn{
  position:relative !important;
  flex:0 0 174px !important;
  width:174px !important;
  height:46px !important;
  padding:6px 16px !important;
  border:0 !important;
  border-radius:16px !important;
  background:rgba(7,31,112,.78) !important;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.96), 0 8px 18px rgba(0,0,0,.12) !important;
  overflow:hidden !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.provider-btn:hover,
.provider-btn.is-active{
  background:rgba(8,35,124,.88) !important;
  box-shadow:inset 0 0 0 2px #ffffff, 0 10px 22px rgba(0,0,0,.18) !important;
}
.provider-btn img{
  display:block !important;
  width:auto !important;
  height:auto !important;
  max-width:132px !important;
  max-height:30px !important;
  object-fit:contain !important;
  object-position:center !important;
}
.provider-btn[data-provider="CP Games"] img{max-width:126px!important;max-height:28px!important;}
.provider-btn[data-provider="Pragmatic Play"] img{max-width:134px!important;max-height:32px!important;}
.provider-btn[data-provider="PG Soft"] img{max-width:136px!important;max-height:32px!important;}
.provider-btn[data-provider="Hacksaw Gaming"] img{max-width:136px!important;max-height:30px!important;}
.provider-btn[data-provider="Hotdog"] img{max-width:130px!important;max-height:30px!important;}
.provider-btn[data-provider="Dragon Gaming"] img{max-width:138px!important;max-height:32px!important;}
.provider-btn[data-provider="Vibra Gaming"] img{max-width:138px!important;max-height:32px!important;}
.provider-btn[data-provider="Endorphina"] img{max-width:140px!important;max-height:32px!important;}
.provider-btn[data-provider="Red Tiger"]{
  flex-basis:204px!important;
  width:204px!important;
}
.provider-btn[data-provider="Red Tiger"] img{
  max-width:172px!important;
  max-height:38px!important;
}

@media (max-width:900px){
  .provider-carousel{height:49px!important;}
  .provider-viewport{height:49px!important;padding:3px 4px 6px!important;}
  .provider-track{height:40px!important;gap:9px!important;padding:0 7px!important;}
  .provider-btn{
    flex-basis:136px!important;
    width:136px!important;
    height:38px!important;
    padding:5px 11px!important;
    border-radius:14px!important;
    box-shadow:inset 0 0 0 1.8px rgba(255,255,255,.96), 0 6px 14px rgba(0,0,0,.12)!important;
  }
  .provider-btn img{max-width:108px!important;max-height:24px!important;}
  .provider-btn[data-provider="Pragmatic Play"] img{max-width:112px!important;max-height:26px!important;}
  .provider-btn[data-provider="Vibra Gaming"] img,
  .provider-btn[data-provider="Endorphina"] img{max-width:114px!important;max-height:26px!important;}
  .provider-btn[data-provider="Red Tiger"]{
    flex-basis:158px!important;
    width:158px!important;
    height:39px!important;
  }
  .provider-btn[data-provider="Red Tiger"] img{
    max-width:132px!important;
    max-height:30px!important;
  }
}
@media (max-width:520px){
  .provider-track{gap:8px!important;padding:0 6px!important;}
  .provider-btn{
    flex-basis:122px!important;
    width:122px!important;
    height:36px!important;
    padding:4px 9px!important;
    border-radius:13px!important;
  }
  .provider-btn img{max-width:98px!important;max-height:22px!important;}
  .provider-btn[data-provider="Red Tiger"]{
    flex-basis:148px!important;
    width:148px!important;
    height:37px!important;
  }
  .provider-btn[data-provider="Red Tiger"] img{
    max-width:124px!important;
    max-height:28px!important;
  }
}


/* ===== Refinamiento v10: providers sin scrollbar + indicadores sesión ===== */
.provider-viewport{
  scrollbar-width:none !important;
  -ms-overflow-style:none !important;
}
.provider-viewport::-webkit-scrollbar{
  width:0 !important;
  height:0 !important;
  display:none !important;
  background:transparent !important;
}
.provider-track{
  scrollbar-width:none !important;
  -ms-overflow-style:none !important;
}
.provider-track::-webkit-scrollbar{
  width:0 !important;
  height:0 !important;
  display:none !important;
}
.session-chip{
  gap:10px !important;
  padding-left:8px !important;
  padding-right:8px !important;
  font-size:17px !important;
  font-weight:900 !important;
  letter-spacing:.2px !important;
}
.session-chip svg{
  width:24px !important;
  height:24px !important;
  flex:0 0 24px !important;
}
.session-chip--player svg,
.session-user-icon{
  color:var(--yellow) !important;
  fill:var(--yellow) !important;
}
.session-chip--balance svg{
  width:23px !important;
  height:23px !important;
  flex-basis:23px !important;
  color:#ffffff !important;
}
.session-chip--balance span,
.session-chip--player span{
  font-size:17px !important;
  line-height:1 !important;
}

@media (max-width:900px){
  .session-chip{
    gap:7px !important;
    padding-left:5px !important;
    padding-right:5px !important;
    font-size:13px !important;
  }
  .session-chip svg{
    width:19px !important;
    height:19px !important;
    flex-basis:19px !important;
  }
  .session-chip--balance svg{
    width:18px !important;
    height:18px !important;
    flex-basis:18px !important;
  }
  .session-chip--balance span,
  .session-chip--player span{
    font-size:13px !important;
  }
}
@media (max-width:520px){
  .session-chip{
    gap:5px !important;
    padding-left:3px !important;
    padding-right:3px !important;
    font-size:11px !important;
  }
  .session-chip svg{
    width:17px !important;
    height:17px !important;
    flex-basis:17px !important;
  }
  .session-chip--balance svg{
    width:16px !important;
    height:16px !important;
    flex-basis:16px !important;
  }
  .session-chip--balance span,
  .session-chip--player span{
    font-size:11px !important;
  }
}
  }
}

/* ===== Hotdog Seamless Staging - Casino Dorado ===== */
.hotdog-empty{
  grid-column:1 / -1;
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(5,21,82,.34);
  color:#fff;
  font-weight:800;
  text-align:center;
}
.hotdog-card-btn{
  border:0;
  padding:0;
  cursor:pointer;
  color:inherit;
}
.hotdog-card-btn:focus-visible{
  outline:3px solid rgba(255,193,45,.82);
  outline-offset:4px;
}
.hotdog-game-backdrop{
  position:fixed;
  inset:0;
  z-index:90;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(10px);
}
.hotdog-game-modal{
  position:fixed;
  inset:0;
  z-index:91;
  display:grid;
  place-items:center;
  padding:18px;
}
.hotdog-game-shell{
  width:min(100%, 1180px);
  height:min(100%, 760px);
  min-height:520px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(11,28,102,.96), rgba(7,18,70,.98));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 26px 90px rgba(0,0,0,.48);
}
.hotdog-game-topbar{
  height:58px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 14px 10px 18px;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#fff;
}
.hotdog-game-topbar strong{
  font-size:15px;
  font-weight:900;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.hotdog-game-actions{
  display:flex;
  align-items:center;
  gap:9px;
  flex:0 0 auto;
}
.hotdog-game-btn{
  height:38px;
  padding:0 14px;
  border-radius:13px;
  border:1.5px solid var(--yellow);
  background:rgba(255,193,45,.09);
  color:var(--yellow);
  font-size:13px;
  font-weight:900;
  cursor:pointer;
}
.hotdog-game-btn--close{
  background:var(--yellow);
  color:#101010;
}
.hotdog-game-framewrap{
  position:relative;
  flex:1 1 auto;
  min-height:0;
  background:#050816;
}
.hotdog-game-framewrap iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#050816;
}
.hotdog-game-loading{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:16px;
  font-weight:900;
  background:linear-gradient(180deg, rgba(8,23,85,.92), rgba(3,7,30,.96));
}
.hotdog-game-shell:fullscreen{
  width:100vw;
  height:100vh;
  border-radius:0;
}
body.hotdog-game-open{
  overflow:hidden;
}

@media (max-width:900px){
  .hotdog-game-modal{padding:8px;align-items:stretch;justify-items:stretch}
  .hotdog-game-shell{width:100%;height:100%;min-height:0;border-radius:18px}
  .hotdog-game-topbar{height:52px;padding:8px 10px 8px 12px;gap:8px}
  .hotdog-game-topbar strong{font-size:13px;max-width:42vw}
  .hotdog-game-actions{gap:7px}
  .hotdog-game-btn{height:34px;padding:0 10px;border-radius:11px;font-size:11px}
}

@media (max-width:520px){
  .hotdog-game-modal{padding:0}
  .hotdog-game-shell{border-radius:0;border-left:0;border-right:0}
  .hotdog-game-topbar{height:48px}
  .hotdog-game-topbar strong{font-size:12px;max-width:35vw}
  .hotdog-game-btn{height:32px;padding:0 8px;font-size:10px;border-radius:10px}
}

/* ===== Yeebet Live Casino assets 400x400 ===== */
.yeebet-card .game-card__media{
  background:linear-gradient(180deg, #1238ac 0%, #071f75 100%);
}
.yeebet-card .game-card__media img{
  object-fit:cover;
  object-position:center;
}
.yeebet-card .game-title{
  min-height:2.6em;
}

/* PlayGlobe provider refinements */
.provider-btn[data-provider="PlayGlobe"]{
  flex:0 0 150px!important;
  width:150px!important;
}
.provider-btn[data-provider="PlayGlobe"] img{
  max-width:126px!important;
  max-height:30px!important;
  filter:none!important;
}
.playglobe-card .game-card__media img{
  object-fit:cover;
}
@media (max-width:900px){
  .provider-btn[data-provider="PlayGlobe"]{flex-basis:132px!important;width:132px!important;height:38px!important;}
  .provider-btn[data-provider="PlayGlobe"] img{max-width:108px!important;max-height:27px!important;}
}
@media (max-width:480px){
  .provider-btn[data-provider="PlayGlobe"]{flex-basis:120px!important;width:120px!important;height:36px!important;}
  .provider-btn[data-provider="PlayGlobe"] img{max-width:98px!important;max-height:24px!important;}
}

/* ===== Refinamiento v4: Yeebet visual + balance header ===== */
.session-balance-text{
  display:inline-flex !important;
  align-items:center !important;
  gap:6px !important;
}
.session-balance-label{
  display:inline-block !important;
}
.provider-btn[data-provider="Yeebet Live"] img{
  max-width:150px !important;
  max-height:36px !important;
}
@media (max-width:900px){
  .session-balance-text{gap:5px !important;}
  .provider-btn[data-provider="Yeebet Live"] img{
    max-width:124px !important;
    max-height:30px !important;
  }
}
@media (max-width:520px){
  .session-balance-text{gap:4px !important;}
  .provider-btn[data-provider="Yeebet Live"] img{
    max-width:112px !important;
    max-height:26px !important;
  }
}

/* PlayGlobe provider text buttons */
.provider-btn--text{
  color:#fff!important;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
  white-space:nowrap;
}
.provider-btn--text .provider-text{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  font-size:13px;
  line-height:1;
  text-align:center;
}
@media (max-width: 640px){
  .provider-btn--text .provider-text{font-size:11px;}
}


/* ===== Refinamiento v20: proveedor activo en amarillo ===== */
.provider-btn.is-active{
  background:linear-gradient(180deg,#ffd34f 0%,#f5b51f 100%)!important;
  border-color:#ffe07a!important;
  color:#07164a!important;
  box-shadow:0 12px 24px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.28)!important;
}
.provider-btn.is-active .provider-text{
  color:#07164a!important;
}
.provider-btn.is-active img{
  filter:brightness(0) saturate(100%)!important;
  opacity:.95;
}
