* { box-sizing: border-box; margin: 0; padding: 0; font-family: Tahoma, 'Segoe UI', sans-serif; }
body { background: #0b1120; color: #f8fafc; padding: 12px; display: flex; justify-content: center; }
.box { width: 100%; max-width: 440px; }

.card { background: #1e293b; border: 1px solid #334155; border-radius: 14px; padding: 14px; margin-bottom: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.card-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #334155; padding-bottom: 8px; margin-bottom: 10px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }

.stat-box { background: #0f172a; padding: 8px 10px; border-radius: 10px; border: 1px solid #1e293b; font-size: 11px; }
.stat-label { color: #94a3b8; font-size: 10px; display: block; margin-bottom: 2px; }
.stat-value { font-size: 13px; font-weight: bold; color: #fff; }

.commission-box { background: #0f172a; border: 1px dashed #3b82f6; border-radius: 10px; padding: 10px; margin: 8px 0; font-size: 12px; }
.next-step-box { background: rgba(59, 130, 246, 0.1); border-right: 3px solid #3b82f6; border-radius: 6px; padding: 6px 10px; font-size: 11px; color: #93c5fd; }

input { width: 100%; padding: 12px; background: #0f172a; border: 1px solid #475569; color: #fff; border-radius: 10px; margin-bottom: 10px; font-size: 14px; text-align: center; outline: none; }
input:focus { border-color: #3b82f6; }
button { width: 100%; padding: 12px; background: #2563eb; color: #fff; border: none; border-radius: 10px; font-weight: bold; cursor: pointer; font-size: 13px; }
.btn-glass { background: #334155; border: 1px solid #475569; padding: 10px 12px; border-radius: 10px; margin-bottom: 6px; display: flex; justify-content: space-between; color: #fff; cursor: pointer; }

.tabs { display: flex; background: #0f172a; border-radius: 12px; padding: 4px; gap: 4px; margin-bottom: 12px; }
.tab-btn { flex: 1; padding: 10px; background: transparent; color: #94a3b8; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-size: 12px; }
.tab-btn.active { background: #2563eb; color: #fff; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: bold; }
.hidden { display: none !important; }
