/* lottery.css */
.lot-wrap { color:#000; }
.lot-hero { display:flex; align-items:flex-start; gap:16px; margin-bottom:12px; }
.lot-hero .npc { width:120px; flex:0 0 120px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.lot-hero .bubble { position:relative; background:#eee; border:1px solid #333; padding:12px 14px; border-radius:8px; line-height:1.5; }
.lot-hero .bubble:before { content:""; position:absolute; left:-8px; top:14px; width:0;height:0;border-top:8px solid transparent;border-bottom:8px solid transparent;border-right:8px solid #222; }

.lot-tabs { display:flex; gap:6px; margin:8px 0 12px; }
.lot-tab { flex:1; text-align:center; padding:10px 6px; border:1px solid #333; background:#eee; cursor:pointer; border-radius:6px; font-weight:600; }
.lot-tab.active { background:#eee; outline:1px solid #3a3a3a; }

.lot-prize table { width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius:8px; }
.lot-prize th, .lot-prize td { border:1px solid #ddd; background:#eee; padding:10px; }
.lot-prize thead th { background:#eee; text-align:center; }
.lot-prize .gold { color:#ffd369; font-weight:700; }
.lot-prize .exp { color:#ff8812; font-weight:700; }

.lot-note { background:#eee; border:1px dashed #333; padding:10px 12px; border-radius:6px; margin:10px 0; font-size:13px; color:#aaa; }
.lot-buybar { display:flex; align-items:center; gap:10px; margin:12px 0 20px; }
.lot-buybar .btn-buy { flex:1; background:#eee; border:1px solid #333; padding:12px; border-radius:8px; font-size:16px; font-weight:700; }
.lot-buybar .cool { color:#ff1288; font-weight:700; }

.lot-box { background:#eee; border:1px solid #333; border-radius:8px; margin:14px 0; }
.lot-box .box-hd { padding:10px 12px; border-bottom:1px solid #232323; font-weight:700; }
.lot-box .box-bd { padding:12px; }
.lot-box table { width:100%; border-collapse:collapse; }
.lot-box th, .lot-box td { padding:10px; border-bottom:1px solid #232323; }
.lot-box .empty { text-align:center; color:#777; padding:30px 0; }

.btn-sm { padding:6px 10px; border-radius:5px; border:1px solid #3a3a3a; background:#1a1a1a; }
.btn-sm.primary { background:#17dddd; border-color:#17dddd; }
.btn-sm.warn { background:#332; border-color:#6b3d3d; }

.lot-market-link { text-align:right; margin-top:6px; }
.lot-market-link a { font-size:13px; color:#9ad; text-decoration:underline; }

@media (max-width:768px){
  .lot-hero { gap:10px; }
  .lot-hero .npc { width:84px; flex-basis:84px; }
  .lot-prize td, .lot-prize th { font-size:13px; padding:8px; }
}
