:root {
  --bg: #0b0a14;
  --glass: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f2eefc;
  --muted: #a09bc0;
  --cyan: #6ef0ff;
  --card-fill: #101018;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  padding: 48px 16px;
  position: relative;
  overflow-x: hidden;
}

/* ---- Drifting glow blob background ---- */
.arena-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(420px 420px at 10% -5%, rgba(255,47,110,0.28), transparent 60%),
    radial-gradient(360px 360px at 95% 15%, rgba(47,216,255,0.24), transparent 60%),
    radial-gradient(380px 380px at 20% 95%, rgba(162,56,255,0.24), transparent 60%),
    #0b0a14;
  background-size: 140% 140%, 140% 140%, 140% 140%, 100% 100%;
  animation: bgDrift 18s ease-in-out infinite;
}
@keyframes bgDrift {
  0%, 100% { background-position: 0% 0%, 100% 0%, 0% 100%, 0 0; }
  50% { background-position: 12% -8%, 88% 10%, 12% 88%, 0 0; }
}

/* ---- Rising sparkle particle field (pure CSS, no JS needed) ---- */
.particle-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 20%, rgba(110,240,255,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 45% 70%, rgba(255,47,110,0.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 75% 35%, rgba(162,56,255,0.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 25% 85%, rgba(110,240,255,0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(255,47,110,0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 60%, rgba(162,56,255,0.5), transparent 60%);
  background-size: 340px 340px;
  animation: particleRise 14s linear infinite;
}
@keyframes particleRise {
  0% { background-position-y: 0px, 0px, 0px, 0px, 0px, 0px; }
  100% { background-position-y: -680px, -680px, -680px, -680px, -680px, -680px; }
}

/* ---- Real floating glow bubbles (JS-spawned, richer than the sparkle texture) ---- */
.rising-bubble {
  position: fixed;
  bottom: -20px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: bubbleFloat linear infinite;
}
@keyframes bubbleFloat {
  0% { transform: translateY(0); opacity: 0; }
  8% { opacity: 0.9; }
  92% { opacity: 0.9; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

.wrap { position: relative; z-index: 2; width: 100%; max-width: 460px; margin: 0 auto; }
.wrap.wide { max-width: 980px; }

.back-link { display: inline-block; color: var(--muted); text-decoration: none; font-size: 13px; margin-bottom: 16px; }
.back-link:hover { color: var(--cyan); }

.top { text-align: center; margin-bottom: 28px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan);
  background: var(--glass);
  border: 1px solid rgba(110,240,255,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 6vw, 40px);
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff2f6e, #ffb02f, #2fff8f, #2fd8ff, #a238ff, #ff2f6e);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: rgbShift 6s linear infinite;
  filter: drop-shadow(0 0 20px rgba(162,56,255,0.35));
}
@keyframes rgbShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

.subtitle { color: #8b93ad; font-size: 14px; margin: 10px 0 0; }

.stepper { display: flex; justify-content: center; gap: 6px; margin-bottom: 20px; }
.step {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}
.step span { color: var(--muted); font-weight: 700; }
.step.active { color: #fff; border-color: #a238ff; background: rgba(162,56,255,0.18); }
.step.active span { color: #e3caff; }
.step.done { border-color: var(--cyan); color: var(--cyan); }

/* ---- Holographic foil panel (registration form / modals) ---- */
.panel {
  position: relative;
  border-radius: 20px;
  padding: 32px 28px;
  background:
    linear-gradient(100deg, var(--card-fill) 0%, var(--card-fill) 42%, rgba(255,255,255,0.08) 49%, rgba(200,230,255,0.12) 50%, rgba(255,255,255,0.08) 51%, var(--card-fill) 58%, var(--card-fill) 100%);
  background-size: 260% 260%;
  animation: foilSheen 7s ease-in-out infinite;
}
.panel::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 22px;
  background: conic-gradient(from 0deg, #ff2f6e, #ffb02f, #2fff8f, #2fd8ff, #a238ff, #ff9ecf, #ff2f6e);
  animation: spinBorder 6s linear infinite;
}
@keyframes spinBorder { to { transform: rotate(360deg); } }
@keyframes foilSheen {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}
.corner { display: none; }

.view { display: none; }
.view.active { display: block; }

label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 14px; font-family: 'Rajdhani', sans-serif; font-weight: 600; }

input, textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus { outline: none; border-color: #a238ff; background: rgba(255,255,255,0.08); }
input::placeholder, textarea::placeholder { color: #6f6890; }
textarea { resize: vertical; }

.fee-readout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0;
}
.fee-label { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); font-family: 'Rajdhani', sans-serif; }
.fee-amount { font-family: 'Orbitron', sans-serif; font-size: 21px; font-weight: 700; color: var(--cyan); text-shadow: 0 0 12px rgba(110,240,255,0.5); }

button {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(90deg, #ff2f6e, #a238ff, #2fd8ff, #ff2f6e);
  background-size: 250% 100%;
  animation: rgbShift 4s linear infinite;
  box-shadow: 0 0 20px rgba(162,56,255,0.4);
  transition: box-shadow 0.2s, transform 0.15s, opacity 0.15s;
}
button:hover { box-shadow: 0 0 30px rgba(162,56,255,0.7); transform: scale(1.02); }
button:active { transform: scale(0.99); }
button:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; animation: none; }

.err { color: #ff6b9d; font-size: 13px; margin-top: 10px; min-height: 1em; }
.success-msg { color: var(--cyan); font-size: 13px; margin-top: 10px; }

#processingView, #successView, #errorView, #notFoundView { text-align: center; padding: 20px 0; }

.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--line);
  border-top-color: var(--cyan);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.check, .cross {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.check { background: rgba(110,240,255,0.15); color: var(--cyan); border: 1px solid var(--cyan); box-shadow: 0 0 16px rgba(110,240,255,0.4); }
.cross { background: rgba(255,47,110,0.15); color: #ff6b9d; border: 1px solid #ff2f6e; }

#successView h2, #errorView h2, #notFoundView h2 { font-family: 'Orbitron', sans-serif; margin: 0 0 8px; color: #fff; }
#successView p, #errorView p, #notFoundView p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.ticket {
  margin-top: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
}
.ticket-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}
.ticket-row:last-child { border-bottom: none; }
.ticket-row span:first-child { color: var(--muted); }

#retryBtn { background: transparent; border: 1px solid var(--line); box-shadow: none; animation: none; }

.link-btn {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--cyan);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.foot { text-align: center; font-size: 12px; color: var(--muted); margin-top: 20px; }

.notify-btn {
  width: auto;
  padding: 11px 22px;
  font-size: 13px;
  margin-top: 14px;
}
.notify-btn.active { box-shadow: 0 0 14px rgba(110,240,255,0.5); }

/* ---- Tournament grid ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.loading-msg, .empty-msg { color: var(--muted); text-align: center; font-size: 14px; grid-column: 1 / -1; padding: 24px 0; }

.card {
  position: relative;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    linear-gradient(100deg, var(--card-fill) 0%, var(--card-fill) 42%, rgba(255,255,255,0.07) 49%, rgba(200,230,255,0.1) 50%, rgba(255,255,255,0.07) 51%, var(--card-fill) 58%, var(--card-fill) 100%);
  background-size: 260% 260%;
  animation: foilSheen 8s ease-in-out infinite;
  transition: transform 0.2s;
}
.card::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 20px;
  background: conic-gradient(from 0deg, #ff2f6e, #ffb02f, #2fff8f, #2fd8ff, #a238ff, #ff9ecf, #ff2f6e);
  animation: spinBorder 6s linear infinite;
}
.card:hover { transform: translateY(-3px); }

.card-top { display: flex; justify-content: space-between; align-items: center; }
.game-tag {
  font-size: 11px;
  color: var(--cyan);
  background: rgba(110,240,255,0.12);
  padding: 5px 13px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  border: 1px solid rgba(110,240,255,0.3);
}
.mode-tag {
  font-size: 11px;
  color: #baffc9;
  background: rgba(47,255,143,0.12);
  padding: 5px 13px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  border: 1px solid rgba(47,255,143,0.3);
}
.slots { font-size: 11px; color: var(--muted); font-family: 'Rajdhani', sans-serif; font-weight: 600; }
.slots.full { color: #ff2f6e; }

.card h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; margin: 0; font-size: 20px; color: #fff; }
.card .desc { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0; flex-grow: 1; }
.card-meta { font-size: 12px; color: var(--muted); }
.card-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.card-fee { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 700; color: var(--cyan); text-shadow: 0 0 10px rgba(110,240,255,0.4); }
.card-bottom button { width: auto; padding: 10px 18px; font-size: 13px; }

/* ---- Admin (calmer treatment for functional clarity) ---- */
.login-gate { display: flex; justify-content: center; margin-top: 60px; }
.panel.narrow { max-width: 360px; width: 100%; }
.panel.narrow h2 { font-family: 'Orbitron', sans-serif; margin-top: 0; color: #fff; font-size: 20px; }
.panel.narrow label { margin-bottom: 16px; }
.panel.narrow button { margin-top: 4px; }

.admin-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; }
.admin-header-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.admin-header-actions button { width: auto; padding: 10px 18px; font-size: 13px; }

.admin-list { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.admin-row {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  backdrop-filter: blur(12px);
  transition: border-color 0.15s;
}
.admin-row:hover { border-color: rgba(110,240,255,0.4); }
.admin-row-main { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.muted { color: var(--muted); font-size: 13px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.status-dot.active { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.status-dot.closed { background: #ff2f6e; }

.admin-row-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-row-actions button {
  width: auto;
  padding: 8px 13px;
  font-size: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
  animation: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.admin-row-actions button:hover { border-color: #a238ff; box-shadow: none; transform: none; }
.admin-row-actions button.danger { color: #ff6b9d; }
.admin-row-actions button.danger:hover { border-color: #ff2f6e; }

/* ---- Modals ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 12, 0.8);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal { max-width: 460px; width: 100%; max-height: 85vh; overflow-y: auto; }
.modal.wide-modal { max-width: 820px; }
.modal h2 { font-family: 'Orbitron', sans-serif; margin-top: 0; color: #fff; font-size: 20px; }
.modal label { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-actions { display: flex; gap: 10px; margin-top: 8px; }
.secondary-btn { background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--text); box-shadow: none; animation: none; }
.secondary-btn:hover { transform: none; box-shadow: none; border-color: #a238ff; }

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 12px; }
.admin-table th, .admin-table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.admin-table th { color: var(--muted); font-weight: 700; font-size: 11px; font-family: 'Rajdhani', sans-serif; white-space: nowrap; }
.team-members { display: flex; flex-direction: column; gap: 2px; white-space: nowrap; }
.team-members .tm-main { color: var(--text); }
.team-members .tm-sub { color: var(--muted); }
.team-members .tm-tag { font-size: 10px; color: var(--muted); margin-right: 4px; }

/* ---- QR code modal ---- */
.qr-modal { text-align: center; }
.qr-wrap { background: #fff; border-radius: 14px; padding: 16px; display: inline-block; margin: 12px 0; }
.qr-wrap img { display: block; width: 220px; height: 220px; }
.qr-link { display: block; color: var(--cyan); font-size: 12px; word-break: break-all; text-decoration: none; margin-bottom: 10px; }
.qr-link:hover { text-decoration: underline; }
.qr-download-btn { text-align: center; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .admin-top { flex-direction: column; }
}

/* ---- Live stream button on cards ---- */
.live-btn {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #ff2f6e, #ff5f2f);
  background-size: 200% 100%;
  animation: livePulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(255,47,110,0.5);
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,47,110,0.4); }
  50% { box-shadow: 0 0 22px rgba(255,47,110,0.8); }
}
.live-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #ff6b9d;
  background: rgba(255,47,110,0.15);
  border: 1px solid rgba(255,47,110,0.4);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  font-family: 'Rajdhani', sans-serif;
}

/* ---- Live Now homepage section ---- */
.live-block {
  background: rgba(255,47,110,0.06);
  border: 1px solid rgba(255,47,110,0.35);
  border-radius: 18px;
  padding: 20px;
  margin: 24px 0;
  backdrop-filter: blur(14px);
}
.live-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff2f6e;
  box-shadow: 0 0 10px #ff2f6e;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.live-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
}
.live-embed-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.live-btn-large { padding: 16px; font-size: 15px; border-radius: 12px; }

/* ---- Social media footer ---- */
.social-footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}
.social-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--line);
  color: #e8e8ef;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s, color 0.15s;
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { border-color: #a238ff; transform: translateY(-2px); color: #a238ff; }

/* ---- Manual UPI payment view ---- */
.pay-instructions { color: var(--muted); font-size: 14px; text-align: center; margin: 0 0 20px; }
.required-mark { color: #ff6b9d; }
.pay-note { color: var(--muted); font-size: 12.5px; text-align: center; margin: 4px 0 0; }
.qr-box {
  background: #fff; border-radius: 14px; padding: 16px;
  display: flex; justify-content: center; margin-bottom: 16px;
}
.qr-box img { width: 200px; height: 200px; display: block; }
.upi-id-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 18px;
}
.upi-id-row span { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 15px; }
.upi-id-row button {
  width: auto; padding: 6px 14px; font-size: 12px; margin: 0;
  animation: none; box-shadow: none; background: rgba(255,255,255,0.08); border: 1px solid var(--line);
}
input[type="file"] {
  padding: 10px; font-size: 13px; color: var(--muted);
}

/* ---- Admin: pending verification queue ---- */
.pending-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.pending-card {
  background: var(--glass); border: 1px solid rgba(255,176,47,0.4); border-radius: 14px;
  padding: 18px; display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-start;
  backdrop-filter: blur(12px);
}
.pending-card img.screenshot-thumb {
  width: 90px; height: 90px; object-fit: cover; border-radius: 8px; cursor: pointer;
  border: 1px solid var(--line);
}
.pending-info { flex: 1; min-width: 200px; font-size: 13px; }
.pending-info strong { font-size: 15px; color: #fff; }
.pending-info .muted { display: block; margin-top: 4px; }
.pending-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.pending-actions button { width: auto; padding: 9px 16px; font-size: 12px; }
.approve-btn { background: #2fff8f; color: #04180d; box-shadow: none; animation: none; }
.reject-btn { background: transparent; border: 1px solid #ff2f6e; color: #ff6b9d; box-shadow: none; animation: none; }
.screenshot-preview-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out;
}
.screenshot-preview-overlay img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }

/* ---- Stages & Rooms ---- */
.room-card {
  background: var(--glass); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px; margin-bottom: 14px;
}
.room-card-header {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 4px;
}
.room-schedule-input {
  width: auto; margin: 0; padding: 8px 10px; font-size: 13px;
}
.room-teams-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.room-team-row {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; margin: 0; cursor: pointer;
}
.room-team-row input[type="checkbox"] {
  width: 18px; height: 18px; margin: 0; accent-color: var(--cyan); flex-shrink: 0;
}
.save-room-btn { width: auto; padding: 9px 18px; font-size: 13px; }
