/* ======================================================
   Locktl.AI — UI PRO SPORTSBOOK
====================================================== */

:root{
  --bg0:#07110e;
  --bg1:#0a1713;
  --bg2:#0c1e18;
  --card:#0f2420;
  --card2:#112b25;
  --card3:#14322c;

  --text:#eaf6f1;
  --muted:#a6c0b6;
  --muted2:#7ea296;

  --line:rgba(255,255,255,.06);
  --line2:rgba(255,255,255,.10);

  --accent:#22e6a8;
  --accent2:#17c892;
  --accent3:#0aa277;

  --warn:#ffcc66;
  --danger:#ff6b6b;
  --live:#ff4757;

  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 14px;

  --max: 1280px;
  --glass: rgba(255,255,255,.04);
  --glass2: rgba(255,255,255,.06);

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  
  --primary: #00e5bc;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 25% -10%, rgba(34,230,168,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(34,230,168,.10), transparent 55%),
    radial-gradient(900px 600px at 50% 110%, rgba(34,230,168,.08), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 40%, var(--bg0));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
button, input, select{ font-family: inherit; }

/* ======================================================
   Helpers
====================================================== */
.muted{ color: var(--muted); }
.muted2{ color: var(--muted2); }
.divider{
  height:1px;
  width:100%;
  background: var(--line);
  margin: 14px 0;
}

/* ======================================================
   LIVE Badge
====================================================== */
.liveBadge{
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--live);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: pulse 2s infinite;
  box-shadow: 0 0 20px rgba(255, 71, 87, .6);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.05); }
}

/* ======================================================
   TOPBAR
====================================================== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 40;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(7,17,14,.92), rgba(7,17,14,.70));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand{
  font-weight: 900;
  letter-spacing: .4px;
  font-size: 18px;
  display:flex;
  align-items:center;
  gap:10px;
}

.brand:before{
  content:"";
  width:12px;height:12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #b9ffe9, var(--accent));
  box-shadow: 0 0 22px rgba(34,230,168,.35);
}

.nav{
  display:flex;
  gap:10px;
}

.navbtn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.navbtn:hover{ transform: translateY(-1px); border-color: var(--line2); }
.navbtn.active{
  background: linear-gradient(180deg, rgba(34,230,168,.18), rgba(34,230,168,.08));
  border-color: rgba(34,230,168,.35);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* ======================================================
   CONTAINER + VIEWS
====================================================== */
.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
}

.view{ display:none; }
.view.active{ display:block; }

/* ======================================================
   HOME PRO LAYOUT
====================================================== */
.layoutPro{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
}

/* SIDEBAR */
.sidebarPro{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
  position: sticky;
  top: 76px;
  height: calc(100vh - 92px);
  overflow: hidden;
}

.sideBrand{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 6px 6px 12px 6px;
}

.sideLogo{
  width:44px;
  height:44px;
  border-radius: 50%;
  background-image: url('icono locktl .png');
  background-size: 115%;
  background-position: center center;
  box-shadow: 0 0 12px rgba(34, 230, 168, 0.15);
  border: 2px solid rgba(34, 230, 168, 0.2);
  background-color: #0d1a14;
  flex-shrink: 0;
}

.sideTitleMain{
  font-weight: 950;
  letter-spacing:.3px;
  font-size: 16px;
}

.sideSub{
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.sideSection{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--muted2);
  padding: 10px 6px;
  border-top: 1px solid var(--line);
}

.sportBtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  font-weight: 850;
  font-size: 14px;
  cursor:pointer;
  margin: 8px 0;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.sportBtn:hover{ transform: translateY(-1px); border-color: var(--line2); }
.sportBtn.active{
  background: linear-gradient(180deg, rgba(34,230,168,.18), rgba(34,230,168,.06));
  border-color: rgba(34,230,168,.40);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

.sideFooter{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

/* MAIN */
.mainPro{
  display:flex;
  flex-direction:column;
  gap: 12px;
  min-width: 0;
}

/* HOME TOPBAR */
.homeTopbar{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display:grid;
  grid-template-columns: 1.1fr auto auto;
  gap: 12px;
  align-items:center;
  box-shadow: var(--shadow2);
}

.searchWrap{
  display:flex;
  gap:10px;
  align-items:center;
  min-width: 0;
}

#searchInput{
  flex:1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
  font-weight: 700;
  transition: border-color .12s ease, box-shadow .12s ease;
}

#searchInput::placeholder{ color: rgba(234,246,241,.55); font-weight: 650; }
#searchInput:focus{
  border-color: rgba(34,230,168,.40);
  box-shadow: 0 0 0 4px rgba(34,230,168,.10);
}

#searchBtn{
  width: 46px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
  font-weight: 900;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

#searchBtn:hover{
  transform: translateY(-1px);
  border-color: var(--line2);
  background: rgba(255,255,255,.05);
}

.chipRow{
  display:flex;
  gap: 10px;
  justify-content:center;
}

.chipBtn{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.chipBtn:hover{ transform: translateY(-1px); border-color: var(--line2); }
.chipBtn.active{
  background: linear-gradient(180deg, rgba(34,230,168,.16), rgba(34,230,168,.06));
  border-color: rgba(34,230,168,.40);
}

.homeMeta{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  min-width: 0;
}

#updatedAt{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}

.refreshBtn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  cursor:pointer;
  font-weight: 900;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.refreshBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(34,230,168,.35);
  background: rgba(34,230,168,.06);
}

/* EVENTS GRID */
.events{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.eventCard{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  box-shadow: var(--shadow2);
}

.eventCard:hover{
  transform: translateY(-2px);
  border-color: rgba(34,230,168,.30);
  box-shadow: 0 14px 40px rgba(0,0,0,.55);
}

.eventTop{
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 10px;
}

.eventTeams{
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
}

.vs{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin: 0 6px;
}

.eventBtn{
  width:100%;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 800;
  cursor:pointer;
  margin-top: 12px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.eventBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(34,230,168,.35);
  background: linear-gradient(180deg, rgba(34,230,168,.12), rgba(34,230,168,.04));
}

.loadMoreWrap{
  text-align:center;
  margin-top: 12px;
}

/* ======================================================
   🆕 MATCH HERO SECTION
====================================================== */
.matchHero{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.heroSportBadge{
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(34,230,168,.15), rgba(34,230,168,.08));
  border: 1px solid rgba(34,230,168,.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.heroTeams{
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.heroTeam{
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}

.heroVs{
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.heroMeta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--muted);
}

.heroLeague{
  font-weight: 700;
}

.heroDate, .heroTime{
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.heroActions{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.riskSelectorHero{
  width: 100%;
}

.riskSelectHero{
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.2);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  outline: none;
}

.riskSelectHero:hover{
  border-color: rgba(34,230,168,.3);
  background: rgba(0,0,0,.3);
}

.riskSelectHero:focus{
  border-color: rgba(34,230,168,.5);
  box-shadow: 0 0 0 4px rgba(34,230,168,.1);
}

/* ======================================================
   🆕 GENERATE PICK BUTTON (GRADIENTE GRANDE)
====================================================== */
.generatePickBtn{
  width: 100%;
  padding: 18px 32px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #00e5bc 0%, #00b894 100%);
  color: #000;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 12px 40px rgba(0,229,188,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.generatePickBtn:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0,229,188,.5);
  background: linear-gradient(135deg, #00f5cc 0%, #00c9a4 100%);
}

.generatePickBtn:active{
  transform: translateY(-1px);
}

.generatePickBtn:disabled{
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.btnIcon{
  font-size: 24px;
}

.btnText{
  font-size: 16px;
}

/* Spinner */
.spinner{
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0,0,0,.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ======================================================
   🆕 PICK RESULTS SECTIONS
====================================================== */
.pickResultsSection{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow2);
}

.sectionHeader{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.sectionIcon{
  font-size: 24px;
}

.sectionTitle{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  flex: 1;
}

.riskBadge{
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.riskBadge.high{
  background: linear-gradient(135deg, rgba(255,204,102,.2), rgba(255,204,102,.1));
  color: var(--warn);
  border: 1px solid rgba(255,204,102,.3);
}

.riskBadge.medium{
  background: linear-gradient(135deg, rgba(34,230,168,.2), rgba(34,230,168,.1));
  color: var(--accent);
  border: 1px solid rgba(34,230,168,.3);
}

.riskBadge.low{
  background: linear-gradient(135deg, rgba(255,107,53,.2), rgba(255,107,53,.1));
  color: #FF6B35;
  border: 1px solid rgba(255,107,53,.3);
}

/* ======================================================
   🆕 PICK CARD (PRINCIPAL)
====================================================== */
.pickCard{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.pickLeft{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pickField{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pickLabel{
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pickValue{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.pickValue.highlight{
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}

.pickValue.oddsValue{
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}

.pickRight{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ======================================================
   🆕 CONFIDENCE CIRCLE (SVG)
====================================================== */
.confidenceCircleWrap{
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confidenceCircle{
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
}

.circleBg{
  fill: none;
  stroke: rgba(255,255,255,.1);
  stroke-width: 8;
}

.circleFill{
  fill: none;
  stroke: url(#confidenceGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transition: stroke-dasharray .8s ease;
}

.confidencePercent{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
}

.confidenceLabel{
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
}

/* SVG Gradient Definition (agregar inline en el HTML si es necesario) */

/* ======================================================
   🆕 KEY FACTORS LIST
====================================================== */
.keyFactorsList{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.keyFactor{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(0,0,0,.2);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.checkIcon{
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.factorText{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}

/* ======================================================
   🆕 DETAILED ANALYSIS CARD
====================================================== */
.analysisCard{
  padding: 20px;
  background: rgba(0,0,0,.2);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.analysisText{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
}

/* ======================================================
   🆕 COLLAPSIBLE MARKETS (ACCORDION)
====================================================== */
.allMarkets{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collapsibleMarket{
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.15);
}

.marketToggle{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,.03);
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease;
  text-align: left;
}

.marketToggle:hover{
  background: rgba(255,255,255,.06);
}

.toggleIcon{
  font-size: 14px;
  transition: transform .2s ease;
  color: var(--accent);
}

.marketName{
  flex: 1;
}

.marketLine{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.marketContent{
  max-height: 1000px;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px 16px 20px;
}

.marketContent.collapsed{
  max-height: 0;
  padding: 0 20px;
}

.oddPill{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  transition: all .2s ease;
}

.oddPill:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(34,230,168,.3);
  transform: translateX(4px);
}

.oddLeft{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oddTeam{
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.oddSub{
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.oddPrice{
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
}

/* ======================================================
   MATCH VIEW (OTROS ESTILOS EXISTENTES)
====================================================== */
.backBtn{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  cursor:pointer;
  margin-bottom: 16px;
  display: inline-flex;
  align-items:center;
  gap:8px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.backBtn:hover{
  transform: translateY(-1px);
  border-color: var(--line2);
  background: rgba(255,255,255,.05);
}

.matchHeader h2{
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 900;
}

.matchMeta{
  font-size: 14px;
  margin-bottom: 20px;
}

.matchGrid{
  /* Ya no usa grid, ahora es flex-column */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow2);
}

.card h3{
  margin: 0 0 14px 0;
  font-size: 18px;
  font-weight: 900;
}

.card h4{
  margin: 16px 0 10px 0;
  font-size: 15px;
  font-weight: 800;
}

.row{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:14px;
}

select{
  flex:1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.15);
  color: var(--text);
  font-weight: 700;
  cursor:pointer;
  outline:none;
  transition: border-color .12s ease, box-shadow .12s ease;
}

select:hover{
  border-color: var(--line2);
}

select:focus{
  border-color: rgba(34,230,168,.40);
  box-shadow: 0 0 0 4px rgba(34,230,168,.10);
}

button.primary{
  background: linear-gradient(180deg, rgba(34,230,168,.22), rgba(34,230,168,.10));
  border: 1px solid rgba(34,230,168,.40);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

button.primary:hover{
  transform: translateY(-2px);
  border-color: rgba(34,230,168,.50);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.aiWrap{
  min-height: 120px;
  padding: 14px;
  background: rgba(0,0,0,.15);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.aiWrap.loading{
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  font-weight: 700;
}

.aiWrap.error{
  color: var(--danger);
  font-weight: 700;
}

/* Markets Box (antiguo, por si acaso) */
#marketsBox{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marketGroup{
  padding: 14px;
  background: rgba(0,0,0,.15);
  border-radius: 12px;
  border: 1px solid var(--line);
}

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

.marketName{
  font-weight: 900;
  font-size: 15px;
}

.marketLine{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.oddRow{
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1024px){
  .layoutPro{ grid-template-columns: 1fr; }
  .sidebarPro{ position: static; height: auto; }
  .events{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .homeTopbar{ grid-template-columns: 1fr; }
  .chipRow{ order: -1; }
  .homeMeta{ justify-content: flex-start; }
}

@media (max-width: 768px){
  .events{ grid-template-columns: 1fr; }
  .topbar{ padding: 10px 14px; }
  .brand{ font-size: 16px; }
  .nav{ gap: 6px; }
  .navbtn{ padding: 8px 12px; font-size: 12px; }
  
  .heroTeam{ font-size: 24px; }
  .heroVs{ font-size: 14px; }
  .generatePickBtn{ font-size: 16px; padding: 16px 24px; }
  
  .pickCard{ 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  
  .pickRight{
    flex-direction: row;
    justify-content: space-between;
  }
  
  .confidenceCircleWrap{
    width: 100px;
    height: 100px;
  }
  
  .confidenceCircle{
    width: 100px;
    height: 100px;
  }
  
  .confidencePercent{
    font-size: 24px;
  }
}

/* ======================================================
   DISCLAIMER (mantener estilos existentes)
====================================================== */
.disclaimer-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none; /* 🔧 OCULTO POR DEFECTO */
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.disclaimer-overlay[style*="display: flex"]{
  display: flex !important;
}

.disclaimer-card{
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow);
}

.disclaimer-card h2{
  margin: 0 0 16px 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
}

.disclaimer-card p{
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.disclaimer-card ul{
  margin: 0 0 24px 0;
  padding-left: 24px;
}

.disclaimer-card li{
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

/* ======================================================
   WELCOME SCREEN (mantener estilos existentes)
====================================================== */
.welcome-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.97);
  z-index: 9998;
  display: none; /* 🔧 OCULTO POR DEFECTO */
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.welcome-overlay[style*="display: flex"]{
  display: flex !important;
}

.welcome-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
}

.welcome-logo{
  margin-bottom: 24px;
}

.welcome-logo-img{
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 40px rgba(34,230,168,.3);
  border: 2px solid rgba(255,255,255,.1);
}

.welcome-title{
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
}

.welcome-subtitle{
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.welcome-description{
  margin: 0 0 32px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.welcome-features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.welcome-feature{
  padding: 16px;
  background: rgba(0,0,0,.2);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.welcome-feature-icon{
  font-size: 32px;
}

.welcome-feature-text{
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.welcome-language-section{
  margin-bottom: 24px;
}

.welcome-language-title{
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.welcome-language-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-height: 200px;
  overflow-y: auto;
  padding: 4px;
}

.welcomeLangBtn{
  padding: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  transition: all .2s ease;
}

.welcomeLangBtn:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(34,230,168,.3);
}

.welcomeLangBtn.selected{
  background: linear-gradient(135deg, rgba(34,230,168,.2), rgba(34,230,168,.1));
  border-color: rgba(34,230,168,.5);
  box-shadow: 0 0 15px rgba(34,230,168,.2);
  position: relative;
}

.welcomeLangBtn.selected::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00e5bc 0%, #00b894 100%);
  border-radius: 0 0 10px 10px;
}

.welcome-actions{
  display: flex;
  gap: 12px;
}

.welcomeBtn{
  flex: 1;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
}

.welcomeBtn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
}

.welcomeBtn.primary:disabled{
  opacity: .5;
  cursor: not-allowed;
}

.welcomeBtn.primary:hover:not(:disabled){
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34,230,168,.3);
}

.welcomeBtn.secondary{
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.welcomeBtn.secondary:hover{
  background: rgba(255,255,255,.05);
  color: var(--text);
}

/* ======================================================
   LANGUAGE SELECTOR MODAL (mantener estilos existentes)
====================================================== */
.language-selector-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.language-selector-overlay.active {
  display: flex;
}

.language-selector-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 100%;
  max-width: 700px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.language-selector-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.language-selector-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
}

.language-selector-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-selector-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.language-selector-search {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.language-selector-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition: all 0.2s ease;
}

.language-selector-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 229, 188, 0.1);
}

.language-selector-current {
  padding: 12px 24px;
  background: rgba(0, 229, 188, 0.05);
  border-top: 1px solid rgba(0, 229, 188, 0.1);
  border-bottom: 1px solid rgba(0, 229, 188, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-selector-current-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.language-selector-current-value {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-selector-grid {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  align-content: start;
}

.languageSelectorBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.languageSelectorBtn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 229, 188, 0.3);
  transform: translateY(-1px);
}

.languageSelectorBtn.selected {
  background: rgba(0, 229, 188, 0.15);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 229, 188, 0.2);
}

.languageSelectorBtn.selected::after {
  content: '✓';
  position: absolute;
  top: 4px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.languageSelectorFlag {
  font-size: 22px;
  line-height: 1;
}

.languageSelectorName {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-selector-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
}

.language-selector-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.language-selector-btn.primary {
  background: var(--primary);
  color: #000;
}

.language-selector-btn.primary:hover {
  background: #00f5c4;
  transform: translateY(-1px);
}

.language-selector-btn.secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

/* ======================================================
   MEJORAS PICK CARD - BARRA DE CONFIANZA (existente)
====================================================== */
.pickCard.principal {
  background: linear-gradient(135deg, rgba(0, 229, 188, 0.1) 0%, rgba(0, 150, 136, 0.05) 100%);
  border: 2px solid rgba(0, 229, 188, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
}

.pickHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

.pickHeaderLeft {
  flex: 1;
}

.pickHeaderRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 120px;
}

.pickConfBar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.pickConfBarFill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, #00f5c4 100%);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.pickConfValue {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pickConfLabel {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pickMetaGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.pickMeta {
  text-align: center;
}

.pickMetaLabel {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.pickMetaValue {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
}

.pickReason {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 16px;
}

.pickFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pickFooterInfo {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.pickFooterInfo span {
  white-space: nowrap;
}

.shareButtons {
  display: flex;
  gap: 8px;
}

.shareBtn {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shareBtn:hover {
  background: rgba(0, 229, 188, 0.2);
  transform: translateY(-2px);
}

/* ======================================================
   BADGE LIVE/UPCOMING RESTAURADO
====================================================== */
.eventTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eventLiveBadge {
  background: linear-gradient(135deg, #ff0844 0%, #ff5252 100%);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(255, 8, 68, 0.4);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(255, 8, 68, 0.4);
  }
  50% {
    box-shadow: 0 2px 15px rgba(255, 8, 68, 0.7);
  }
}

.eventUpcomingBadge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eventStatus {
  display: none;
}

/* ======================================================
   AUTH UI
====================================================== */
.auth-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  margin-right: 16px;
}

.auth-btn {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.login-btn {
  background: white;
  color: #3c4043;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.login-btn:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.logout-btn {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  border: 1px solid var(--line);
}

.logout-btn:hover {
  background: rgba(255,255,255,0.15);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .auth-container {
    margin-right: 8px;
  }
  
  .login-btn span {
    display: none;
  }
  
  .login-btn {
    padding: 8px;
  }
  
  .user-name {
    display: none;
  }
}
/* ======================================================
   REGISTRO OBLIGATORIO - MODAL
====================================================== */
.register-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a4d3c 0%, #051a14 100%);
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.register-overlay[style*="display: flex"] {
  display: flex !important;
}

.register-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  padding: 48px 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669, #047857);
}

.register-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: scaleIn 0.5s ease-out;
}

.register-logo-img {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.register-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideDown 0.5s ease-out;
}

.register-subtitle {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: slideDown 0.6s ease-out;
}

.register-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.register-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
  animation: slideRight 0.6s ease-out;
}

.register-benefit:nth-child(2) {
  animation-delay: 0.1s;
}

.register-benefit:nth-child(3) {
  animation-delay: 0.2s;
}

.register-benefit:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.register-benefit-icon {
  font-size: 32px;
  line-height: 1;
  min-width: 40px;
  text-align: center;
}

.register-benefit-text {
  flex: 1;
}

.register-benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.register-benefit-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.register-google-btn {
  width: 100%;
  padding: 18px 24px;
  background: white;
  color: #1f2937;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  animation: scaleIn 0.7s ease-out;
}

.register-google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.register-google-btn:active {
  transform: translateY(0);
}

.register-google-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.register-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  animation: fadeIn 0.8s ease-out;
}

.register-disclaimer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.register-disclaimer a:hover {
  text-decoration: underline;
}

/* Animaciones */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .register-card {
    padding: 32px 24px;
    max-width: 100%;
  }
  
  .register-title {
    font-size: 26px;
  }
  
  .register-subtitle {
    font-size: 14px;
  }
  
  .register-logo-img {
    width: 64px;
    height: 64px;
  }
  
  .register-benefit {
    padding: 12px;
  }
  
  .register-benefit-icon {
    font-size: 24px;
    min-width: 32px;
  }
  
  .register-benefit-title {
    font-size: 14px;
  }
  
  .register-benefit-desc {
    font-size: 12px;
  }
  
  .register-google-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ======================================================
   FIX: HEADER SIN BRAND (ya está en sidebar)
====================================================== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Auth container al inicio */
.auth-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
}

/* Nav al final */
.nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .auth-container {
    margin-right: 8px;
  }
  
  .login-btn span {
    display: none;
  }
  
  .login-btn {
    padding: 8px;
  }
  
  .user-name {
    display: none;
  }
}
/* ======================================================
   REGISTRO OBLIGATORIO - MODAL
====================================================== */
.register-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a4d3c 0%, #051a14 100%);
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.register-overlay[style*="display: flex"] {
  display: flex !important;
}

.register-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  padding: 48px 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669, #047857);
}

.register-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: scaleIn 0.5s ease-out;
}

.register-logo-img {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.register-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideDown 0.5s ease-out;
}

.register-subtitle {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: slideDown 0.6s ease-out;
}

.register-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.register-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
  animation: slideRight 0.6s ease-out;
}

.register-benefit:nth-child(2) {
  animation-delay: 0.1s;
}

.register-benefit:nth-child(3) {
  animation-delay: 0.2s;
}

.register-benefit:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.register-benefit-icon {
  font-size: 32px;
  line-height: 1;
  min-width: 40px;
  text-align: center;
}

.register-benefit-text {
  flex: 1;
}

.register-benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.register-benefit-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.register-google-btn {
  width: 100%;
  padding: 18px 24px;
  background: white;
  color: #1f2937;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  animation: scaleIn 0.7s ease-out;
}

.register-google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.register-google-btn:active {
  transform: translateY(0);
}

.register-google-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.register-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  animation: fadeIn 0.8s ease-out;
}

.register-disclaimer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.register-disclaimer a:hover {
  text-decoration: underline;
}

/* Animaciones */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .register-card {
    padding: 32px 24px;
    max-width: 100%;
  }
  
  .register-title {
    font-size: 26px;
  }
  
  .register-subtitle {
    font-size: 14px;
  }
  
  .register-logo-img {
    width: 64px;
    height: 64px;
  }
  
  .register-benefit {
    padding: 12px;
  }
  
  .register-benefit-icon {
    font-size: 24px;
    min-width: 32px;
  }
  
  .register-benefit-title {
    font-size: 14px;
  }
  
  .register-benefit-desc {
    font-size: 12px;
  }
  
  .register-google-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* Z-index fix para modales */
.language-selector-overlay {
  z-index: 10001 !important;
}

.welcome-overlay {
  z-index: 9999;
}

.disclaimer-overlay {
  z-index: 9998;
}

/* ======================================================
   DISCLAIMER PRO REDESIGN
====================================================== */
.disclaimer-card-pro {
  background: linear-gradient(180deg, #1a1f2e, #141824);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  margin: auto;
  flex-shrink: 0;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(255,71,87,0.4);
}

.disclaimer-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
}

.disclaimer-body {
  text-align: left;
}

.disclaimer-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.disclaimer-body p b {
  color: #fff;
}

.disclaimer-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.disclaimer-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.disclaimer-point b {
  color: #fff;
}

.disclaimer-point-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 20px 0 12px;
  text-align: left;
}

.disclaimer-checkbox {
  display: none;
}

.disclaimer-checkbox-custom {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}

.disclaimer-checkbox:checked + .disclaimer-checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.disclaimer-checkbox:checked + .disclaimer-checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.disclaimer-checkbox-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.disclaimer-legal-link {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0 0 20px 0;
  text-align: center;
}

.disclaimer-legal-link a {
  color: var(--primary);
  text-decoration: none;
}

.disclaimer-accept-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
}

.disclaimer-accept-btn:not(:disabled) {
  background: linear-gradient(135deg, var(--primary), #00d2ff);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,210,255,0.3);
}

.disclaimer-accept-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(0,210,255,0.4);
}

/* ======================================================
   SETTINGS PAGE REDESIGN
====================================================== */
.settings-card {
  margin-top: 16px;
  padding: 20px;
}

.settings-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.settings-section-title h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.settings-icon {
  font-size: 20px;
}

.settings-user-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings-user-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.settings-user-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.settings-user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.settings-user-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.settings-user-email {
  font-size: 13px;
  color: var(--muted);
}

.settings-logout-btn {
  background: rgba(255,71,87,0.1);
  border: 1px solid rgba(255,71,87,0.3);
  color: #ff4757;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.settings-logout-btn:hover {
  background: rgba(255,71,87,0.2);
}

.settings-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.settings-link:last-child {
  border-bottom: none;
}

.settings-link:hover {
  color: var(--primary);
}

.settings-link-arrow {
  color: var(--muted);
  font-size: 16px;
}

/* ===================================
   APPLE LOGIN + DELETE ACCOUNT
=================================== */
.register-apple-btn {
  width: 100%;
  padding: 18px 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 12px;
  animation: scaleIn 0.6s ease-out;
}
.register-apple-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.register-apple-btn:active { transform: translateY(0); }
.register-apple-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.register-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 12px;
}
.register-divider::before,
.register-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.register-divider span {
  font-size: 13px;
  color: var(--muted);
}

/* Apple login button in Settings */
.apple-login-btn {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.apple-login-btn:hover {
  background: #1a1a1a !important;
}

/* Delete account button */
.settings-delete-btn {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: transparent;
  color: #ff4444;
  border: 1px solid rgba(255,68,68,0.3);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.settings-delete-btn:hover {
  background: rgba(255,68,68,0.1);
  border-color: rgba(255,68,68,0.5);
}
.settings-delete-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   PAYWALL / SUSCRIPCIÓN — PRO DESIGN
======================================== */

/* Overlay — semi-transparente para ver la app detrás */
.paywall-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 13, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
}
.paywall-overlay[style*="display: flex"] {
  display: flex !important;
}

/* Card — colores de la app, efecto flotante */
.paywall-card-pro {
  position: relative;
  background: linear-gradient(170deg, rgba(20, 35, 28, 0.95) 0%, rgba(12, 22, 18, 0.97) 100%);
  border: 1px solid rgba(34, 230, 168, 0.15);
  border-radius: 24px;
  padding: 36px 28px 28px;
  max-width: 400px;
  width: 92%;
  text-align: center;
  box-shadow:
    0 0 40px rgba(34, 230, 168, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.4);
  animation: paywallFloat 3s ease-in-out infinite, paywallFadeIn 0.4s ease-out;
  margin: auto;
  flex-shrink: 0;
  overflow: hidden;
}

/* Glow animado detrás del ícono */
.paywall-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 230, 168, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: paywallGlowPulse 3s ease-in-out infinite;
}

.paywall-icon-pro {
  font-size: 52px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.3));
  animation: paywallIconBounce 2s ease-in-out infinite;
}

.paywall-title-pro {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}

.paywall-subtitle-pro {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.paywall-free-notice {
  color: #22e6a8;
  font-size: 13px;
  margin: 0 0 16px;
  display: none;
  font-weight: 600;
}

.paywall-features-pro {
  text-align: left;
  margin: 16px 0;
  position: relative;
  z-index: 1;
}

.paywall-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  margin-bottom: 6px;
  background: rgba(34, 230, 168, 0.04);
  border: 1px solid rgba(34, 230, 168, 0.06);
  transition: background 0.2s;
}

.paywall-feat:hover {
  background: rgba(34, 230, 168, 0.08);
}

.paywall-feat-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.paywall-price-pro {
  margin: 20px 0 14px;
  position: relative;
  z-index: 1;
}

.paywall-amount-pro {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #22e6a8, #4dffc3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.paywall-period-pro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.paywall-subscribe-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  color: #0a0f0d;
  background: linear-gradient(135deg, #22e6a8 0%, #4dffc3 50%, #22e6a8 100%);
  background-size: 200% 100%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
  animation: paywallBtnShimmer 3s ease-in-out infinite;
}

.paywall-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 230, 168, 0.35);
}

.paywall-subscribe-btn:active {
  transform: translateY(0);
}

.paywall-close-x {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  z-index: 2;
  transition: all 0.2s;
}

.paywall-close-x:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Animaciones */
@keyframes paywallFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes paywallFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes paywallGlowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

@keyframes paywallIconBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-3deg); }
  75% { transform: translateY(-2px) rotate(3deg); }
}

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

.disclaimer-version {
  color: #888;
  font-size: 12px;
  margin-top: -4px;
  margin-bottom: 12px;
}

/* ========================================
   PREMIUM NAV BUTTON
======================================== */
.premium-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.premium-crown {
  font-size: 14px;
}

.premium-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 4px;
}

.premium-badge-free {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.premium-badge-active {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.premium-nav-btn.premium-active {
  color: #4caf50 !important;
  border-color: #4caf50 !important;
}

/* ========================================
   SUBSCRIPTION SETTINGS
======================================== */
.sub-status-box {
  padding: 16px;
  border-radius: 12px;
  margin: 12px 0;
}

.sub-status-free {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.sub-status-active {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.sub-status-label {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.sub-status-detail {
  font-size: 13px;
  color: #aaa;
  margin-top: 4px;
}

.settings-subscribe-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #22e6a8 0%, #4dffc3 50%, #22e6a8 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 12px;
  color: #0a0f0d;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: paywallBtnShimmer 3s ease-in-out infinite;
}

.settings-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 230, 168, 0.35);
}

.settings-manage-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(76, 175, 80, 0.5);
  border-radius: 12px;
  color: #4caf50;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.settings-manage-btn:hover {
  background: rgba(76, 175, 80, 0.1);
}

.paywall-free-notice {
  color: #ffc107;
  font-size: 13px;
  margin: -8px 0 16px;
  display: none;
}

/* ========================================
   HISTORY CARDS & DETAIL VIEW
======================================== */
.historyCard {
  transition: transform 0.2s, border-color 0.2s;
}
.historyCard:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 230, 168, 0.3);
}

.historyPickPreview {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.historyPickMarket {
  background: rgba(34, 230, 168, 0.1);
  color: #22e6a8;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.historyPickSelection {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.historyPickConf {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.historyCardFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.historyViewDetail {
  color: #22e6a8;
  font-size: 12px;
  font-weight: 600;
}

/* History Detail View */
.historyBackBtn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #22e6a8;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.2s;
}
.historyBackBtn:hover {
  background: rgba(34, 230, 168, 0.1);
  border-color: rgba(34, 230, 168, 0.3);
}

.historyDetailHeader {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.historyDetailTeams {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0 4px;
}