/* Bolão Copa do Mundo v2 */
:root {
    --bolao-green:   #16a34a;
    --bolao-green-l: #22c55e;
    --bolao-yellow:  #eab308;
    --bolao-red:     #ef4444;
    --bolao-dark:    #111827;
    --bolao-gray:    #6b7280;
    --bolao-light:   #f3f4f6;
    --bolao-white:   #ffffff;
    --bolao-radius:  14px;
    --bolao-shadow:  0 4px 24px rgba(0,0,0,.10);
}

.bolao-wrap { max-width:640px; margin:0 auto; font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; color:var(--bolao-dark); }

.bolao-card { background:var(--bolao-white); border-radius:var(--bolao-radius); box-shadow:var(--bolao-shadow); padding:28px 24px; margin-bottom:20px; }

/* MATCH HEADER */
.bolao-match { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.bolao-team  { display:flex; flex-direction:column; align-items:center; gap:6px; flex:1; }
.bolao-flag  { font-size:52px; line-height:1; }
.bolao-name  { font-size:16px; font-weight:700; text-align:center; }
.bolao-vs    { display:flex; flex-direction:column; align-items:center; gap:8px; }
.bolao-vs-text { font-size:22px; font-weight:900; color:var(--bolao-gray); letter-spacing:2px; }
.bolao-result  { font-size:36px; font-weight:900; letter-spacing:2px; }
.bolao-kickoff { text-align:center; margin:12px 0 0; font-size:13px; color:var(--bolao-gray); }

/* BADGES */
.bolao-badge { font-size:12px; font-weight:600; padding:4px 12px; border-radius:999px; }
.bolao-badge.aberto    { background:#dcfce7; color:var(--bolao-green); }
.bolao-badge.encerrado { background:#fee2e2; color:var(--bolao-red); }
.bolao-badge.travado   { background:#fef9c3; color:#92400e; }

.bolao-section-title { font-size:18px; font-weight:700; margin:0 0 20px; }

/* SCORE INPUT */
.bolao-score-input  { display:flex; align-items:center; justify-content:center; gap:20px; margin-bottom:24px; }
.bolao-score-team   { display:flex; flex-direction:column; align-items:center; gap:12px; font-size:15px; font-weight:600; }
.bolao-score-ctrl   { display:flex; align-items:center; gap:8px; }
.bolao-score-ctrl input { width:56px!important; height:56px!important; text-align:center; font-size:26px; font-weight:700; border:2px solid #e5e7eb; border-radius:10px; -moz-appearance:textfield; pointer-events:none; }
.bolao-score-ctrl input::-webkit-inner-spin-button { display:none; }
.bolao-score-sep { font-size:28px; font-weight:900; color:var(--bolao-gray); margin-top:28px; }

/* BOTÕES +/- */
.bolao-btn-num { width:40px; height:40px; border-radius:15px; border:none; font-size:22px; line-height:1; cursor:pointer; transition:opacity .15s; display:flex; align-items:center; justify-content:center; color:#fff; }
.bolao-btn-num[data-op="+"] { background:var(--bolao-green); }
.bolao-btn-num[data-op="-"] { background:var(--bolao-red); }
.bolao-btn-num:hover { opacity:.85; }

/* BOTÃO PRIMÁRIO */
.bolao-btn-primary { display:block; width:100%; padding:14px; background:linear-gradient(135deg,var(--bolao-green),#15803d); color:#fff; border:none; border-radius:10px; font-size:17px; font-weight:700; cursor:pointer; transition:opacity .15s,transform .1s; }
.bolao-btn-primary:hover  { opacity:.9; transform:translateY(-1px); }
.bolao-btn-primary:active { transform:scale(.98); }

/* MSG */
.bolao-msg { margin-top:14px; padding:12px 16px; border-radius:8px; font-size:14px; font-weight:600; text-align:center; }
.bolao-msg.sucesso { background:#dcfce7; color:var(--bolao-green); }
.bolao-msg.erro    { background:#fee2e2; color:var(--bolao-red); }
.bolao-success  { color:var(--bolao-green); font-weight:700; font-size:16px; text-align:center; margin:0; }
.bolao-greeting { font-size:16px; margin:0 0 16px; }

/* LISTA PALPITES */
.bolao-lista { display:flex; flex-direction:column; gap:10px; }
.bolao-palpite-row { display:flex; align-items:center; gap:12px; padding:12px 14px; background:var(--bolao-light); border-radius:8px; font-size:14px; }
.bolao-p-user  { font-weight:700; flex:1; }
.bolao-p-user a, .bolao-lb-user a { color:inherit; text-decoration:none; }
.bolao-p-user a:hover, .bolao-lb-user a:hover { text-decoration:underline; }
.bolao-p-score { font-size:18px; font-weight:900; min-width:60px; text-align:center; }
.bolao-p-time  { color:var(--bolao-gray); font-size:12px; min-width:70px; text-align:right; }
.bolao-count   { color:var(--bolao-gray); font-weight:400; font-size:15px; }
.bolao-empty   { color:var(--bolao-gray); text-align:center; padding:20px 0; margin:0; }

/* LEADERBOARD JOGO */
.bolao-leaderboard { display:flex; flex-direction:column; gap:10px; }
.bolao-lb-row { display:flex; align-items:center; gap:14px; padding:14px 16px; border-radius:10px; font-size:14px; }
.bolao-lb-row.rank-1 { background:linear-gradient(90deg,#fef9c3,#fef08a); border:1px solid #eab308; }
.bolao-lb-row.rank-2 { background:linear-gradient(90deg,#f1f5f9,#e2e8f0); border:1px solid #94a3b8; }
.bolao-lb-row.rank-3 { background:linear-gradient(90deg,#fff7ed,#fed7aa); border:1px solid #f97316; }
.bolao-lb-row.rank-4 { background:var(--bolao-light); }
.bolao-lb-rank    { font-size:22px; min-width:40px; text-align:center; }
.bolao-lb-user    { font-weight:700; flex:1; }
.bolao-lb-palpite { font-size:18px; font-weight:900; min-width:60px; text-align:center; }
.bolao-lb-pts     { font-size:13px; font-weight:600; color:var(--bolao-green); text-align:right; }

/* LEADERBOARD GERAL */
.bolao-lb-meta  { color:var(--bolao-gray); font-size:14px; margin:-10px 0 20px; }
.bolao-lb-stats { font-size:12px; color:var(--bolao-gray); flex:1; }
.bolao-lb-total { font-size:20px; font-weight:900; color:var(--bolao-dark); min-width:55px; text-align:right; }

/* POPUP */
.bolao-overlay { position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:99999; display:flex; align-items:center; justify-content:center; backdrop-filter:blur(4px); }
.bolao-popup   { background:var(--bolao-white); border-radius:20px; padding:40px 32px; max-width:400px; width:90%; text-align:center; box-shadow:0 20px 60px rgba(0,0,0,.25); animation:bolao-pop .25s ease; }
@keyframes bolao-pop { from{transform:scale(.85);opacity:0} to{transform:scale(1);opacity:1} }
.bolao-popup-icon { font-size:56px; line-height:1; margin-bottom:12px; }
.bolao-popup h2   { font-size:24px; font-weight:800; margin:0 0 10px; }
.bolao-popup p    { color:var(--bolao-gray); margin:0 0 20px; line-height:1.6; }
.bolao-popup-field { display:flex; align-items:center; border:2px solid #e5e7eb; border-radius:10px; overflow:hidden; margin-bottom:16px; transition:border-color .2s; }
.bolao-popup-field:focus-within { border-color:var(--bolao-green); }
.bolao-at { padding:0 12px; font-size:18px; font-weight:700; color:var(--bolao-gray); background:var(--bolao-light); align-self:stretch; display:flex; align-items:center; }
#bolao-instagram-input { flex:1; border:none!important; outline:none!important; box-shadow:none!important; padding:14px 12px; font-size:17px; font-weight:600; }

@media(max-width:480px){
    .bolao-card { padding:20px 16px; }
    .bolao-flag { font-size:40px; }
    .bolao-name { font-size:13px; }
    .bolao-score-input { gap:10px; }
    .bolao-lb-stats { display:none; }
    .bolao-lb-pts, .bolao-lb-total { font-size:12px; }
}
