/* ===== BrawlBoost additions ===== */

.hero-boost { min-height: 70vh; }
.btn-big { font-size: 1.35rem; padding: 18px 44px; border: none; cursor: pointer; font-family: inherit; }

/* wizard modal */
.wizard-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 0, 25, .8); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.wizard-box {
  position: relative; width: 100%; max-width: 720px; max-height: 92vh; overflow-y: auto;
  background: linear-gradient(160deg, #2a0a4a, #1a0033);
  border: 3px solid var(--yellow); border-radius: 22px; padding: 28px;
  box-shadow: 0 20px 80px rgba(0,0,0,.7);
}
.wizard-close {
  position: absolute; top: 14px; left: 14px; width: 38px; height: 38px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.4); color: var(--white); font-size: 1.1rem;
  cursor: pointer; font-family: inherit;
}
.wizard-close:hover { border-color: var(--yellow); color: var(--yellow); }
.wizard-progress {
  height: 10px; background: rgba(255,255,255,.12); border-radius: 8px;
  overflow: hidden; margin-bottom: 22px;
}
.wizard-bar {
  height: 100%; width: 25%; border-radius: 8px;
  background: linear-gradient(90deg, var(--yellow), #ff9500);
  transition: width .35s ease;
}
.wiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.wiz-nav .btn { border: none; cursor: pointer; font-family: inherit; font-size: 1.05rem; }
.wiz-nav .btn:disabled { opacity: .4; cursor: not-allowed; transform: skew(-3deg); box-shadow: 0 5px 0 rgba(0,0,0,.4); }

/* summary ranks */
.sum-ranks { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 10px; }
.sum-rank { display: flex; flex-direction: column; align-items: center; font-weight: 800; gap: 4px; }
.sum-rank img { width: 74px; height: 74px; object-fit: contain; border-radius: 12px; }
.sum-arrow { font-size: 1.8rem; font-weight: 900; color: var(--yellow); }

/* pro strip */
.pro-strip { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; text-align: right; }
.pro-strip .pro-badge { width: 190px; height: 190px; object-fit: contain; border-radius: 20px; filter: drop-shadow(0 0 24px rgba(255,204,0,.45)); }
.pro-title { text-align: right !important; }
@media (max-width: 620px) { .pro-strip { text-align: center; } .pro-title { text-align: center !important; } }

/* rank selection grid */
.rank-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px; margin: 14px 0;
}
.rank-opt {
  background: var(--card-bg); border: 3px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 10px; text-align: center; cursor: pointer;
  transition: transform .15s, border-color .15s, background .15s;
}
.rank-opt:hover { transform: translateY(-4px); border-color: var(--cyan); }
.rank-opt.sel { border-color: var(--yellow); background: rgba(255,204,0,.15); box-shadow: 0 0 18px rgba(255,204,0,.35); }
.rank-opt img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 10px; }
.rank-opt span { display: block; font-weight: 800; margin-top: 6px; }

/* tiers */
.tier-row { display: flex; align-items: center; gap: 12px; margin: 6px 0 22px; font-weight: 700; }
.tier-btns { display: flex; gap: 8px; }
.tier-btn {
  min-width: 52px; padding: 8px 0; border-radius: 12px; border: 2px solid rgba(255,255,255,.2);
  background: var(--card-bg); color: var(--white); font-family: inherit;
  font-weight: 900; font-size: 1.05rem; cursor: pointer; transition: all .15s;
}
.tier-btn:hover { border-color: var(--cyan); }
.tier-btn.sel { background: var(--yellow); color: #3a2b00; border-color: var(--yellow); }

/* form */
.order-form { max-width: 860px; margin: 0 auto; }
.step-title { font-size: 1.25rem; font-weight: 900; color: var(--yellow); margin: 26px 0 8px; }
.inp {
  width: 100%; padding: 13px 16px; margin: 6px 0; border-radius: 12px;
  border: 2px solid rgba(255,255,255,.2); background: rgba(0,0,0,.3);
  color: var(--white); font-family: inherit; font-size: 1rem;
}
.inp:focus { outline: none; border-color: var(--yellow); }
.inp-sm { width: auto; }
.upload-box {
  display: block; padding: 26px; border: 3px dashed rgba(255,255,255,.3);
  border-radius: 16px; text-align: center; font-weight: 800; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.upload-box:hover { border-color: var(--yellow); background: rgba(255,204,0,.06); }
.file-chip {
  display: inline-block; background: rgba(0,229,255,.15); border: 1px solid rgba(0,229,255,.4);
  border-radius: 10px; padding: 5px 12px; margin: 6px 4px 0 0; font-size: .85rem;
}
.order-summary {
  margin: 24px 0 10px; padding: 18px 22px; border-radius: 14px;
  background: rgba(255,204,0,.1); border: 2px solid rgba(255,204,0,.45);
  font-size: 1.1rem; text-align: center;
}
.price-tag { color: var(--yellow); font-size: 1.5rem; }
.err { color: #ff6b6b; font-weight: 700; text-align: center; min-height: 1.2em; }
.btn-full { display: block; width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; font-size: 1.2rem; }
.btn-sm { padding: 9px 18px; font-size: .95rem; border: none; cursor: pointer; font-family: inherit; }
.hint { font-size: .9rem; opacity: .75; }
.center { text-align: center; }

/* payment */
.pay-row { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.pay-card {
  background: var(--card-bg); border: 2px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 22px; text-align: center; width: 170px;
  transition: transform .2s, border-color .2s;
}
.pay-card:hover { transform: translateY(-5px); border-color: var(--yellow); }
.pay-card img { width: 90px; height: 90px; object-fit: contain; border-radius: 18px; }
.pay-card span { display: block; font-weight: 800; margin-top: 10px; }
.center-note { max-width: 500px; margin: 26px auto 0; text-align: center; }

/* chat */
.chat-box {
  height: 420px; overflow-y: auto; background: rgba(0,0,0,.35);
  border: 2px solid rgba(255,255,255,.12); border-radius: 16px;
  padding: 16px; margin: 16px 0; display: flex; flex-direction: column; gap: 10px;
}
.msg {
  max-width: 75%; padding: 10px 16px; border-radius: 16px; line-height: 1.5;
  word-break: break-word;
}
.msg.me { align-self: flex-start; background: var(--yellow); color: #3a2b00; border-bottom-right-radius: 4px; }
.msg.them { align-self: flex-end; background: rgba(255,255,255,.12); border-bottom-left-radius: 4px; }
.msg-meta { font-size: .72rem; opacity: .7; margin-bottom: 3px; font-weight: 700; }
.msg-form { display: flex; gap: 10px; align-items: center; }
.msg-form .inp { flex: 1; margin: 0; }
.msg-form .btn { border: none; cursor: pointer; font-family: inherit; }

/* staff */
.login-box { max-width: 380px; margin: 60px auto; text-align: center; }
.orders-list { margin: 18px 0; }
.order-row {
  padding: 13px 18px; border-radius: 12px; background: var(--card-bg);
  border: 2px solid rgba(255,255,255,.12); margin-bottom: 8px; cursor: pointer;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  transition: border-color .15s;
}
.order-row:hover { border-color: var(--cyan); }
.order-row.sel { border-color: var(--yellow); }
.status-chip {
  margin-inline-start: auto; background: rgba(0,229,255,.15);
  border: 1px solid rgba(0,229,255,.4); border-radius: 10px;
  padding: 3px 10px; font-size: .8rem;
}
.imgs-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }
.thumb { width: 110px; height: 110px; object-fit: cover; border-radius: 12px; border: 2px solid rgba(255,255,255,.2); }
.staff-controls { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 14px 0; }

@media (max-width: 600px) {
  .rank-grid { grid-template-columns: repeat(3, 1fr); }
  .msg { max-width: 90%; }
}

/* matcherino */
.matcherino-strip { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; }
.matcherino-banner { width: 100%; max-width: 460px; border-radius: 20px; border: 3px solid rgba(255,204,0,.5); box-shadow: 0 0 30px rgba(168,85,247,.45); }
.matcherino-text { max-width: 420px; text-align: right; }
.matcherino-text h2 { margin-bottom: 8px; }
.matcherino-text .btn { margin-top: 16px; }
@media (max-width: 720px) { .matcherino-text { text-align: center; } .matcherino-text .pro-title { text-align: center !important; } }
.pay-select .pay-opt { cursor: pointer; }
.pay-select .pay-opt.sel { border-color: var(--yellow); background: rgba(255,204,0,.15); box-shadow: 0 0 18px rgba(255,204,0,.35); }
.m-done { text-align: center; padding: 20px 0; }
.m-done-emoji { font-size: 3.2rem; margin-bottom: 10px; }

/* built-by credit */
.built-by { font-size: .85rem; opacity: .75; margin-top: 6px; }
.built-by b { color: var(--yellow); }
