/* ── SESSION CARD ───────────────────────────────────────────── */
.session-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 10px;
  transition: border-color .18s ease, background .18s ease;
}

.session-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.16);
}

.session-venue  { font-size: 15px; font-weight: 700; line-height: 1.3; }
.session-when   { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 2px; }
.session-by     { font-size: 12px; color: var(--muted); margin-bottom: 10px; }

.session-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 2px solid var(--line);
}

.session-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.session-pills { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

/* ── VENUE ITEM ─────────────────────────────────────────────── */
.venue-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 8px;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
}

.venue-item:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.venue-item:focus-visible { outline: 2px solid rgba(125,211,252,.45); outline-offset: 2px; }

.venue-info { flex: 1; min-width: 0; }
.venue-name { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.venue-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

.venue-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.bell-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
  flex-shrink: 0;
}

.bell-btn.on {
  background: rgba(125,211,252,.12);
  border-color: rgba(125,211,252,.3);
  color: var(--accent);
}

.bell-btn svg { width: 15px; height: 15px; stroke-linecap: round; stroke-linejoin: round; }

/* ── AUTH / CENTERED VIEWS ──────────────────────────────────── */
.centered-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 140px);
  padding: 20px 4px;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
}

.auth-icon  { font-size: 36px; margin-bottom: 14px; line-height: 1; display: block; }
.auth-title { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 6px; }
.auth-sub   { font-size: 14px; color: var(--muted); margin-bottom: 22px; line-height: 1.55; }

/* ── EMPTY STATE ────────────────────────────────────────────── */
.empty { text-align: center; padding: 48px 20px; color: var(--muted); }
.empty-icon { font-size: 38px; margin-bottom: 14px; opacity: .5; }
.empty h3   { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.empty p    { font-size: 14px; }

/* ── PROFILE ────────────────────────────────────────────────── */
.profile-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 0 20px;
}

.profile-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(125,211,252,.28), rgba(167,139,250,.28));
  border: 2px solid rgba(125,211,252,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.profile-name  { font-size: 18px; font-weight: 700; letter-spacing: -0.2px; }
.profile-email { font-size: 13px; color: var(--muted); margin-top: 2px; }

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.settings-row:last-child { border-bottom: none; }

.settings-label { font-size: 14px; font-weight: 600; }
.settings-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── NOTICE ─────────────────────────────────────────────────── */
.notice {
  background: rgba(125,211,252,.06);
  border: 1px solid rgba(125,211,252,.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ── SUCCESS ────────────────────────────────────────────────── */
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(52,211,153,.12);
  border: 2px solid rgba(52,211,153,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}

