/* === FIGHTING MODE SELECT === */ .fight-select-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(7,6,14,0.92); backdrop-filter: blur(20px); display: none; flex-direction: column; align-items: center; justify-content: center; padding: 20px; } .fight-select-overlay.show { display: flex; } .fight-select-box { max-width: 700px; width: 100%; max-height: 85vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; } .fight-select-title { font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 4px; background: linear-gradient(135deg, var(--cyan), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .fight-select-subtitle { text-align: center; font-size: 12px; color: var(--text-dim); margin-bottom: 16px; } .fight-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; margin-bottom: 16px; } .fight-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 8px; text-align: center; cursor: pointer; transition: all 0.2s; } .fight-card:hover { border-color: var(--cyan); transform: translateY(-2px); } .fight-card.selected { border-color: var(--gold); box-shadow: 0 0 20px rgba(255,215,0,0.2); } .fight-card .fc-icon { font-size: 28px; } .fight-card .fc-name { font-size: 14px; font-weight: 700; margin-top: 4px; } .fight-card .fc-role { font-size: 10px; color: var(--text-dim); margin-top: 2px; } .fight-card .fc-bonus { font-size: 9px; color: var(--text-dim); } .fight-card .fc-desc { font-size: 10px; color: var(--text2); margin-top: 4px; } .stage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; margin-bottom: 16px; } .stage-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 16px 8px; text-align: center; cursor: pointer; transition: all 0.2s; } .stage-card:hover { border-color: var(--cyan); transform: translateY(-2px); } .stage-card.selected { border-color: var(--gold); box-shadow: 0 0 20px rgba(255,215,0,0.2); } .stage-card .sc-icon { font-size: 32px; } .stage-card .sc-name { font-size: 14px; font-weight: 700; margin-top: 4px; } .stage-card .sc-desc { font-size: 10px; color: var(--text-dim); } .fight-nav { display: flex; gap: 8px; justify-content: center; margin-top: 12px; } .fight-nav button { background: var(--surface2); border: 1px solid var(--border); color: var(--text); padding: 8px 20px; border-radius: 8px; cursor: pointer; font-size: 13px; transition: all 0.2s; } .fight-nav button:hover { border-color: var(--cyan); } .fight-nav button.primary { background: linear-gradient(135deg, var(--cyan), var(--purple)); color: #fff; border: none; } .fight-nav button.primary:hover { filter: brightness(1.2); } .fight-nav button:disabled { opacity: 0.4; cursor: not-allowed; }