/* ══════════════════════════════════════════════════════
   HUDDLEUP — STYLE.CSS
   ══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #9D6FE8;
  --primary-light: #C4B5FD;
  --accent: #F59E0B;
  --accent2: #EC4899;
  --green: #22C987;
  --bg: #1E1830;
  --surface: #2A2245;
  --surface2: #342B55;
  --text: #EDE9FF;
  --text2: #9E94C0;
  --border: #44395E;
  --shadow: 0 4px 24px rgba(124,58,237,0.20);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font);
  background: linear-gradient(135deg, #1a1530 0%, #2D1B69 50%, #1E1830 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* PHONE FRAME */
.phone-frame {
  width: 390px;
  height: 844px;
  background: #1a1a2e;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 2px #333;
  position: relative;
  flex-shrink: 0;
}
.phone-notch {
  width: 120px; height: 30px;
  background: #1a1a2e;
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}

/* SCREENS */
.screen {
  position: absolute; inset: 0;
  overflow-y: auto; overflow-x: hidden;
  display: none; flex-direction: column;
  background: var(--bg);
  scrollbar-width: none;
}
.screen::-webkit-scrollbar { display: none; }
.screen.active { display: flex; }

/* SCREEN HEADER */
.screen-header { padding: 48px 20px 12px; background: var(--bg); flex-shrink: 0; }
.prog-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.prog-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent2)); border-radius: 3px; transition: width 0.5s ease; }
.step-lbl { font-size: 12px; color: var(--text2); font-weight: 500; }

/* SCREEN BODY */
.screen-body { flex: 1; padding: 16px 20px 24px; overflow-y: auto; scrollbar-width: none; }
.screen-body::-webkit-scrollbar { display: none; }
.screen-body.no-pad { padding: 0; }
.screen-body.center-v { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; }

h2 { font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.screen-sub { font-size: 14px; color: var(--text2); line-height: 1.5; margin-bottom: 16px; }

/* BACK BUTTON */
.back-btn { background: none; border: none; color: var(--primary); font-size: 14px; font-weight: 600; cursor: pointer; padding: 48px 20px 12px; display: block; }
.back-btn-inline { background: none; border: none; color: var(--primary); font-size: 14px; font-weight: 600; cursor: pointer; padding: 0 0 10px 0; display: block; font-family: var(--font); }
.screen-header-plain { padding: 48px 20px 0; flex-shrink: 0; }

/* BUTTONS */
.btn-primary {
  width: 100%; padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: white; border: none; border-radius: var(--radius);
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  margin-top: 8px; letter-spacing: 0.2px; font-family: var(--font);
}
.btn-primary:active { transform: scale(0.97); opacity: 0.9; }
.btn-primary.btn-xl { padding: 16px 20px; font-size: 17px; }
.btn-primary.btn-mt { margin-top: 20px; }

.btn-secondary {
  width: 100%; padding: 12px 20px;
  background: transparent; color: var(--primary-light);
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 8px;
  font-family: var(--font);
}

.btn-gemini {
  width: 100%; padding: 14px 20px;
  background: linear-gradient(135deg, #1A73E8, #4285F4, #8B5CF6);
  color: white; border: none; border-radius: var(--radius);
  font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 8px;
  letter-spacing: 0.5px; font-family: var(--font);
}
.btn-gemini:active { transform: scale(0.97); }

.input-field {
  width: 100%; padding: 13px 16px;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px; color: var(--text);
  outline: none; margin-top: 8px; transition: border-color 0.2s; font-family: var(--font);
}
.input-field::placeholder { color: var(--text2); }
.input-field:focus { border-color: var(--primary-light); }

/* ── SCREEN 1: WELCOME ── */
.welcome-bg {
  position: relative; min-height: 100%;
  background: linear-gradient(160deg, #2D1B69 0%, #1a1a2e 60%, #0F0A1E 100%);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; animation: bfloat 6s ease-in-out infinite; }
.blob-1 { width: 240px; height: 240px; background: #7C3AED; top: -60px; right: -60px; }
.blob-2 { width: 180px; height: 180px; background: #EC4899; bottom: 80px; left: -40px; animation-delay: 2s; }
.blob-3 { width: 140px; height: 140px; background: #F59E0B; bottom: -40px; right: 40px; animation-delay: 4s; }
@keyframes bfloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }

.welcome-content {
  position: relative; z-index: 2;
  padding: 60px 32px 40px;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 0;
  width: 100%;
}
/* Logo image — welcome screen */
.w-logo-img {
  height: 56px; width: 56px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: logo-orbit 3s ease-in-out infinite, logo-glow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(167,139,250,0.6));
}
@keyframes logo-orbit {
  0%   { transform: rotate(0deg) scale(1); }
  25%  { transform: rotate(8deg) scale(1.06); }
  50%  { transform: rotate(0deg) scale(1.1); }
  75%  { transform: rotate(-8deg) scale(1.06); }
  100% { transform: rotate(0deg) scale(1); }
}
@keyframes logo-glow {
  0%,100% { filter: drop-shadow(0 0 10px rgba(167,139,250,0.5)) drop-shadow(0 0 20px rgba(236,72,153,0.2)); }
  50%      { filter: drop-shadow(0 0 20px rgba(167,139,250,0.9)) drop-shadow(0 0 40px rgba(236,72,153,0.4)); }
}

/* Logo in tab headers */
.tab-logo-img { height: 28px; width: auto; object-fit: contain; }

.w-eyebrow { font-size: 11px; font-weight: 700; color: var(--primary-light); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.w-headline { font-size: 28px; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px; }
.w-sub { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 400; margin-bottom: 24px; line-height: 1.65; }
.w-faces { display: flex; align-items: center; margin-bottom: 8px; }
.w-face { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #1a1a2e; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #1a1a2e; margin-left: -8px; flex-shrink: 0; }
.w-face:first-child { margin-left: 0; }
.w-face-more { background: rgba(255,255,255,0.15); color: white; font-size: 11px; font-weight: 700; border-color: rgba(255,255,255,0.2); }
.w-community { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 24px; margin-top: 4px; font-family: var(--font); }
.btn-w-cta { width: 100%; padding: 16px 20px; background: linear-gradient(135deg, var(--primary), var(--accent2)); color: white; border: none; border-radius: var(--radius); font-size: 16px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: transform 0.15s; letter-spacing: -0.2px; }
.btn-w-cta:active { transform: scale(0.97); }
.btn-w-login { width: 100%; padding: 12px 20px; background: transparent; color: rgba(255,255,255,0.6); border: none; font-size: 14px; font-weight: 500; cursor: pointer; font-family: var(--font); text-align: center; margin-top: 4px; }
.btn-w-login:hover { color: rgba(255,255,255,0.9); }
.w-footer { font-size: 10px; color: rgba(255,255,255,0.2); margin-top: 14px; width: 100%; text-align: center; line-height: 1.6; }

/* ── SCREEN 1B: SIGNUP (dark theme) ── */
.signup-bg {
  position: relative; min-height: 100%;
  background: var(--bg);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.signup-content {
  position: relative; z-index: 2;
  padding: 60px 32px 40px;
  display: flex; flex-direction: column; align-items: flex-start; width: 100%;
}
.signup-back { background: none; border: none; color: var(--text2); font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font); padding: 0 0 24px 0; }
.signup-field {
  width: 100%; padding: 14px 16px;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px; color: var(--text);
  outline: none; margin-top: 10px; font-family: var(--font);
  transition: border-color 0.2s;
}
.signup-field::placeholder { color: var(--text2); }
.signup-field:focus { border-color: var(--primary-light); }
.signup-terms { font-size: 11px; color: var(--text2); margin-top: 16px; line-height: 1.6; width: 100%; text-align: center; }

/* ── INVITE BANNER ── */
.ed-invite-banner { display: flex; align-items: center; gap: 12px; background: var(--surface2); border: 2px solid var(--primary); border-radius: var(--radius); padding: 14px; margin-bottom: 16px; }
.ed-invite-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: white; flex-shrink: 0; }
.ed-invite-text { font-size: 13px; color: var(--text); line-height: 1.5; }

/* ── SCREEN 2: NAME ── */
.avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 8px; }
.avatar-circle { width: 80px; height: 80px; background: var(--surface2); border: 3px dashed var(--primary-light); border-radius: 50%; font-size: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.avatar-hint { font-size: 12px; color: var(--text2); }

/* ── SCREEN 3: QUIZ ── */
.quiz-counter { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.q-of { font-size: 20px; color: var(--text2); font-weight: 400; }
.quiz-q { font-size: 20px; margin-bottom: 20px; line-height: 1.4; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt { padding: 14px 16px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); text-align: left; font-size: 15px; font-weight: 500; color: var(--text); cursor: pointer; transition: all 0.2s; font-family: var(--font); }
.quiz-opt:hover, .quiz-opt.selected { border-color: var(--primary); background: var(--surface2); color: var(--primary); }

/* ── SCREEN 4: RESULT ── */
.result-pre { font-size: 13px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; }
.result-card { background: linear-gradient(135deg, var(--primary), var(--accent2)); border-radius: 24px; padding: 28px 24px; width: 100%; color: white; box-shadow: 0 12px 40px rgba(124,58,237,0.3); }
.result-emoji { display: none; }
.result-type { font-size: 28px; font-weight: 800; margin-bottom: 10px; color: white; }
.result-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.9); }
.type-chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; width: 100%; }
.type-chip { padding: 6px 12px; background: var(--surface); border: 2px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text2); }
.type-chip.selected { background: var(--surface2); border-color: var(--primary); color: var(--primary); }

/* ── SCREEN 5: HUDDLELIST ── */
.huddle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.huddle-item { padding: 12px 10px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; cursor: pointer; font-size: 13px; font-weight: 500; color: var(--text); transition: all 0.2s; line-height: 1.3; }
.huddle-item span:first-child { font-size: 22px; }
.huddle-item.selected { border-color: var(--primary); background: var(--surface2); color: var(--primary); font-weight: 600; }

/* ── SCREEN 6: CATEGORIES ── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cat-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 14px 8px; display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; transition: all 0.2s; text-align: center; }
.cat-card:hover, .cat-card.selected { border-color: var(--primary); background: var(--surface2); transform: scale(1.03); }
.cat-icon { font-size: 28px; }
.cat-name { font-size: 11px; font-weight: 600; color: var(--text2); }
.cat-card.selected .cat-name { color: var(--primary); }

/* ── SCREEN 6B: DRILL-DOWN ── */
.cat-detail-hdr { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cat-big-icon { font-size: 44px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag { padding: 7px 13px; background: var(--surface); border: 2px solid var(--border); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--text); cursor: pointer; transition: all 0.15s; }
.tag.selected { background: var(--primary); border-color: var(--primary); color: white; }
.plat-section { margin-top: 4px; }
.plat-label { font-size: 13px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.plat-mini { display: flex; flex-direction: column; gap: 8px; }
.plat-mini-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; }
.plat-mini-row:hover { border-color: var(--primary-light); }
.plat-mini-row.connected { border-color: var(--green); }
.pmr-logo { font-size: 20px; }
.pmr-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.pmr-status { font-size: 12px; font-weight: 600; color: var(--primary); padding: 3px 10px; background: var(--surface2); border-radius: 12px; }
.pmr-status.done { background: #D1FAE5; color: var(--green); }

/* ── SCREEN 7: PLATFORMS ── */
.plat-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.plat-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.2s; }
.plat-row:hover { border-color: var(--primary-light); }
.plat-row.connected { border-color: var(--green); background: rgba(34,201,135,0.08); }
.plat-logo { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: white; flex-shrink: 0; }
.pl-contacts { background: linear-gradient(135deg, #34C759, #30D158); }
.pl-linkedin { background: #0077B5; }
.pl-instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.pl-tiktok { background: #010101; }
.pl-twitter { background: #000000; }
.pl-facebook { background: #1877F2; }
.pl-spotify { background: #1DB954; }
.pl-strava { background: #FC4C02; }
.pl-goodreads { background: #553B08; }
.pl-letterboxd { background: #00C030; }
.pl-luma { background: #FF5E00; }
.pl-eventbrite { background: #F05537; }
.pl-audible { background: #F9A825; }
.plat-info { flex: 1; }
.plat-name { font-size: 14px; font-weight: 700; color: var(--text); }
.plat-desc { font-size: 12px; color: var(--text2); margin-top: 2px; }
.plat-toggle { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 12px; transition: all 0.2s; border: none; cursor: pointer; font-family: var(--font); }
.plat-toggle.off { background: var(--surface2); color: var(--primary); }
.plat-toggle.on { background: rgba(34,201,135,0.15); color: var(--green); }

/* ── SCREEN 8: PROFILE READY ── */
.ready-big { font-size: 60px; animation: pop 0.5s ease; }
@keyframes pop { 0% { transform: scale(0); } 80% { transform: scale(1.15); } 100% { transform: scale(1); } }
.ready-h { font-size: 28px; font-weight: 800; color: var(--text); line-height: 1.2; }
.ready-h span { color: var(--primary-light); }
.ready-card { width: 100%; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.rc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border); gap: 8px; }
.rc-row:last-child { border-bottom: none; }
.rc-lbl { font-size: 12px; color: var(--text2); font-weight: 500; flex-shrink: 0; }
.rc-val { font-size: 13px; font-weight: 700; color: var(--text); text-align: right; }
.rc-green { color: var(--green); }

/* ── TAB HEADER + NAV ── */
.tab-hdr { display: flex; align-items: center; justify-content: space-between; padding: 48px 20px 10px; background: var(--bg); flex-shrink: 0; }
.tab-logo { font-size: 16px; font-weight: 800; color: var(--text); }
.icon-btn { background: var(--surface); border: 2px solid var(--border); border-radius: 12px; padding: 6px 10px; font-size: 16px; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.pts-badge { font-size: 11px; font-weight: 700; color: var(--primary); }
.filter-row { display: flex; gap: 6px; padding: 4px 20px 8px; overflow-x: auto; scrollbar-width: none; flex-shrink: 0; }
.filter-row::-webkit-scrollbar { display: none; }
.fchip { padding: 6px 12px; background: var(--surface); border: 2px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text2); cursor: pointer; white-space: nowrap; transition: all 0.15s; font-family: var(--font); }
.fchip.active { background: var(--primary); border-color: var(--primary); color: white; }
.bottom-nav { display: flex; background: var(--surface); border-top: 1px solid var(--border); flex-shrink: 0; padding-bottom: 8px; }
.bnav { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; background: none; border: none; cursor: pointer; font-size: 10px; font-weight: 600; color: var(--text2); transition: color 0.15s; font-family: var(--font); }
.bnav span:first-child { font-size: 20px; }
.bnav.active { color: var(--primary); }

/* ── SCREEN 9: EVENT FEED ── */
.surprise-strip { display: flex; align-items: center; gap: 12px; margin: 8px 16px; padding: 12px 16px; background: linear-gradient(135deg, var(--primary), var(--accent2)); border-radius: var(--radius); cursor: pointer; color: white; flex-shrink: 0; }
.ss-dice { font-size: 24px; }
.ss-txt { flex: 1; }
.ss-txt strong { font-size: 14px; display: block; }
.ss-txt p { font-size: 11px; opacity: 0.85; margin-top: 2px; }
.ss-arr { font-size: 18px; opacity: 0.8; }
.event-list { padding: 4px 16px 16px; display: flex; flex-direction: column; gap: 12px; }
.event-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.2s; }
.event-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }
.event-img { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 36px; position: relative; }
.event-img-photo { background-size: cover; background-position: center; background-repeat: no-repeat; }
.event-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.35)); border-radius: 0; }
.event-cat-badge { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,0.5); color: white; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 10px; }
.event-pts-badge { position: absolute; top: 8px; right: 8px; background: var(--accent); color: white; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 10px; }
.event-body { padding: 12px 14px; }
.event-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.event-meta { font-size: 12px; color: var(--text2); margin-bottom: 8px; line-height: 1.5; }
.event-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.event-conns { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--primary); }
.event-cal { font-size: 11px; color: var(--green); font-weight: 600; background: rgba(34,201,135,0.15); padding: 3px 8px; border-radius: 10px; }
.gemini-review { font-size: 11px; color: var(--text2); font-style: italic; margin-top: 4px; padding-top: 8px; border-top: 1px solid var(--border); }
.gemini-review::before { content: '✦ '; color: var(--primary); font-style: normal; }

/* ── SCREEN 10: LIVE ROOM ── */
.live-pill { background: #FEE2E2; color: #DC2626; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 12px; }
.room-banner { display: flex; align-items: center; gap: 12px; padding: 12px 20px; background: var(--surface); border-bottom: 1px solid var(--border); flex-shrink: 0; }
.rb-icon { font-size: 32px; }
.rb-info { flex: 1; }
.rb-title { font-size: 14px; font-weight: 700; color: var(--text); }
.rb-sub { font-size: 12px; color: var(--text2); margin-top: 2px; }
.rb-count { text-align: center; font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.rb-count small { font-size: 10px; color: var(--text2); font-weight: 500; }
.room-hint { font-size: 13px; color: var(--text2); padding: 8px 20px; background: var(--surface2); border-bottom: 1px solid var(--border); flex-shrink: 0; }
.attendee-list { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }
.attendee-card { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); transition: all 0.2s; }
.attendee-card.met { border-color: var(--green); background: rgba(34,201,135,0.08); }
.att-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: white; font-weight: 700; }
.att-info { flex: 1; }
.att-name { font-size: 14px; font-weight: 700; color: var(--text); }
.att-type { font-size: 11px; color: var(--primary); font-weight: 600; margin-bottom: 3px; }
.att-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.att-tag { font-size: 10px; background: var(--surface2); color: var(--text2); padding: 2px 7px; border-radius: 8px; font-weight: 500; }
.att-match { font-size: 11px; font-weight: 700; color: var(--green); background: #D1FAE5; padding: 2px 8px; border-radius: 8px; flex-shrink: 0; }
.met-btn { padding: 7px 12px; background: var(--primary); color: white; border: none; border-radius: 10px; font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; font-family: var(--font); transition: all 0.2s; }
.met-btn.done { background: var(--green); }
.met-btn:active { transform: scale(0.95); }
.huddle-match-badge { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.35); color: var(--accent); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 8px; display: inline-block; margin-top: 3px; }

/* ── SCREEN 11: DEBRIEF ── */
.gem-pill { background: var(--surface2); color: var(--primary-light); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 12px; border: 1px solid var(--border); }
.debrief-hdr { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.dh-icon { font-size: 40px; }
.debrief-hdr h2 { font-size: 18px; margin-bottom: 2px; }
.dh-sub { font-size: 12px; color: var(--text2); }
.debrief-intro { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 20px; }
.debrief-conn-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; }
.dcc-header { display: flex; align-items: center; gap: 12px; padding: 14px 14px 10px; }
.dcc-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.dcc-info { flex: 1; }
.dcc-name { font-size: 15px; font-weight: 700; color: var(--text); }
.dcc-role { font-size: 12px; color: var(--text2); margin-top: 2px; }
.dcc-priority { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 8px; }
.dcc-priority.high { background: rgba(245,158,11,0.15); color: var(--accent); }
.dcc-reason { font-size: 13px; color: var(--text2); line-height: 1.5; padding: 0 14px 10px; border-bottom: 1px solid var(--border); }
.dcc-reason strong { color: var(--text); }
.dcc-message { padding: 12px 14px; }
.dcc-msg-label { font-size: 11px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.dcc-msg-label::before { content: '✦'; color: var(--primary); }
.dcc-msg-text { font-size: 13px; color: var(--text); line-height: 1.6; background: var(--surface2); border-radius: 10px; padding: 10px 12px; border-left: 3px solid var(--primary); font-style: italic; }
.dcc-actions { display: flex; gap: 8px; margin-top: 10px; }
.dcc-send { flex: 1; padding: 9px; background: linear-gradient(135deg, var(--primary), var(--accent2)); color: white; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font); }
.dcc-edit { padding: 9px 14px; background: var(--surface2); color: var(--primary); border: 2px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font); }
.dcc-sent { padding: 9px 14px; background: rgba(34,201,135,0.15); color: var(--green); border-radius: 10px; font-size: 13px; font-weight: 700; text-align: center; }
.dcc-edit-textarea { width: 100%; padding: 10px 12px; background: var(--surface2); border: 2px solid var(--primary); border-radius: 10px; font-size: 13px; color: var(--text); font-family: var(--font); line-height: 1.6; resize: none; min-height: 80px; outline: none; margin-bottom: 8px; }
.gem-loading { text-align: center; padding: 24px; }
.load-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; }
.load-dots span { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; animation: ldot 1.2s infinite; }
.load-dots span:nth-child(2) { animation-delay: 0.2s; }
.load-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes ldot { 0%,80%,100% { transform: scale(0.6); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }
.key-note { font-size: 11px; color: var(--text2); margin-top: 6px; text-align: center; line-height: 1.5; }

/* ── SCREEN 12: CONNECTIONS ── */
.conn-list { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }
.conn-card { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.2s; }
.conn-card:hover { border-color: var(--primary-light); }
.conn-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.conn-info { flex: 1; }
.conn-name { font-size: 15px; font-weight: 700; color: var(--text); }
.conn-role { font-size: 12px; color: var(--text2); margin-top: 2px; }
.conn-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 5px; }
.conn-tag { font-size: 10px; background: var(--surface2); color: var(--primary); padding: 2px 7px; border-radius: 8px; font-weight: 600; }
.conn-meta { text-align: right; }
.conn-strength { font-size: 14px; letter-spacing: -2px; }
.conn-met { font-size: 10px; color: var(--text2); margin-top: 3px; white-space: nowrap; }
.conn-event-tag { font-size: 10px; background: #EDE9FE; color: var(--primary); padding: 2px 7px; border-radius: 8px; font-weight: 600; margin-top: 3px; }

/* ── SCREEN 13: QUESTS ── */
.pts-banner { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg, var(--primary), var(--accent2)); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 20px; color: white; }
.pts-left { text-align: center; }
.pts-big { font-size: 40px; font-weight: 800; line-height: 1; }
.pts-lbl { font-size: 11px; opacity: 0.85; margin-top: 2px; }
.pts-right { flex: 1; }
.pts-next { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.pts-track { height: 8px; background: rgba(255,255,255,0.3); border-radius: 4px; overflow: hidden; }
.pts-prog { height: 100%; background: white; border-radius: 4px; }
.pts-sub { font-size: 11px; opacity: 0.75; margin-top: 5px; }
.sec-title { font-size: 14px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.quest-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.qi { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-sm); }
.qi.done { border-color: var(--green); background: rgba(34,201,135,0.08); }
.qi.inprog { border-color: var(--accent); background: rgba(245,158,11,0.08); }
.qi.locked { opacity: 0.6; }
.qi-ico { font-size: 20px; flex-shrink: 0; }
.qi-body { flex: 1; }
.qi-name { font-size: 14px; font-weight: 600; color: var(--text); }
.qi-pts { font-size: 12px; margin-top: 2px; color: var(--text2); }
.done-pts { color: var(--green); font-weight: 700; }
.inprog-pts { color: #D97706; font-weight: 700; }
.reward-list { display: flex; flex-direction: column; gap: 8px; }
.ri { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-sm); }
.ri.unlocked-ri { border-color: var(--green); background: rgba(34,201,135,0.08); }
.ri-ico { font-size: 24px; flex-shrink: 0; }
.ri-body { flex: 1; }
.ri-name { font-size: 14px; font-weight: 600; color: var(--text); }
.ri-status { font-size: 12px; color: var(--text2); margin-top: 2px; }
.green-lbl { color: var(--green); font-weight: 700; }
.ri-use { padding: 7px 14px; background: var(--green); color: white; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font); }
.ri-lock { font-size: 16px; opacity: 0.5; }

/* ── EVENT DETAIL (SCREEN 15) ── */
.ed-hero { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 56px; border-radius: var(--radius); margin-bottom: 16px; }
.ed-meta { font-size: 13px; color: var(--text2); margin: 6px 0 12px; }
.ed-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.ed-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 12px; }
.ed-badge-cat { background: var(--surface2); color: var(--primary-light); }
.ed-badge-pts { background: rgba(245,158,11,0.15); color: var(--accent); }
.ed-badge-free { background: rgba(34,201,135,0.15); color: var(--green); }
.ed-review { font-size: 13px; color: var(--text2); font-style: italic; line-height: 1.6; margin-bottom: 14px; padding: 12px; background: var(--surface2); border-radius: var(--radius-sm); border-left: 3px solid var(--primary); }
.ed-review::before { content: '✦ '; color: var(--primary); font-style: normal; }
.ed-conn-row { font-size: 13px; font-weight: 600; color: var(--primary); background: var(--surface2); padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; }
.ed-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.ed-confirmed { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px; background: rgba(34,201,135,0.1); border: 2px solid var(--green); border-radius: var(--radius); margin-top: 16px; text-align: center; }
.ed-conf-icon { font-size: 40px; }
.ed-conf-text { font-size: 18px; font-weight: 800; color: var(--green); }
.ed-conf-pts { font-size: 13px; font-weight: 600; color: var(--text2); }

/* ── SEARCH BAR ── */
.search-bar-wrap { padding: 8px 16px 4px; flex-shrink: 0; }
.event-search-input {
  width: 100%; padding: 10px 16px;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: 24px; font-size: 14px; color: var(--text);
  outline: none; font-family: var(--font); transition: border-color 0.2s;
}
.event-search-input::placeholder { color: var(--text2); }
.event-search-input:focus { border-color: var(--primary); }

/* ── CALENDAR ── */
.cal-week-strip { display: flex; gap: 6px; padding: 12px 16px 8px; overflow-x: auto; scrollbar-width: none; flex-shrink: 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.cal-week-strip::-webkit-scrollbar { display: none; }
.cal-day-chip { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 10px; border-radius: 12px; cursor: pointer; min-width: 44px; transition: all 0.2s; border: 2px solid transparent; }
.cal-day-chip:hover { background: var(--surface2); }
.cal-day-chip.cal-selected { background: var(--primary); border-color: var(--primary); }
.cal-day-chip.cal-today .cal-day-num { color: var(--primary-light); font-weight: 800; }
.cal-day-chip.cal-selected .cal-day-name,
.cal-day-chip.cal-selected .cal-day-num { color: white; }
.cal-day-name { font-size: 10px; font-weight: 600; color: var(--text2); text-transform: uppercase; }
.cal-day-num { font-size: 16px; font-weight: 700; color: var(--text); }
.cal-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); }
.cal-dot-empty { width: 6px; height: 6px; }
.cal-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 16px; scrollbar-width: none; }
.cal-body::-webkit-scrollbar { display: none; }
.cal-avail-section, .cal-events-section { display: flex; flex-direction: column; gap: 8px; }
.cal-section-title { font-size: 12px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.cal-avail-chip { display: inline-block; padding: 6px 14px; background: rgba(34,201,135,0.15); color: var(--green); border-radius: 20px; font-size: 13px; font-weight: 600; margin-right: 6px; margin-bottom: 4px; }
.cal-avail-chip.cal-busy { background: rgba(239,68,68,0.12); color: #F87171; }
.cal-event-card { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 12px; transition: all 0.2s; }
.cal-event-card:hover { border-color: var(--primary); }
.cal-event-emoji { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cal-event-info { flex: 1; }
.cal-event-title { font-size: 14px; font-weight: 700; color: var(--text); }
.cal-event-time { font-size: 12px; color: var(--text2); margin-top: 3px; }
.cal-rsvp-btn { padding: 7px 14px; background: linear-gradient(135deg, var(--primary), var(--accent2)); color: white; border: none; border-radius: 10px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: var(--font); white-space: nowrap; }
.cal-empty { font-size: 13px; color: var(--text2); }

/* ── TAB GREETING ── */
.tab-greeting { font-size: 12px; color: var(--text2); font-weight: 500; margin-top: 2px; }

/* ── INVITE SECTION ── */
.invite-section { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 14px; margin-bottom: 16px; }
.invite-hdr { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.invite-icon { font-size: 22px; }
.invite-title { font-size: 15px; font-weight: 700; color: var(--text); margin: 0; }
.invite-sub { font-size: 12px; color: var(--text2); margin: 2px 0 0; }
.invite-people-list { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.invite-people-list::-webkit-scrollbar { display: none; }
.invite-person-chip { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 10px; border-radius: 12px; border: 2px solid var(--border); cursor: pointer; min-width: 54px; transition: all 0.2s; background: var(--surface2); }
.invite-person-chip:hover { border-color: var(--primary); }
.invite-person-chip.selected { border-color: var(--primary); background: rgba(157,111,232,0.2); }
.invite-avatar { font-size: 22px; }
.invite-name { font-size: 10px; font-weight: 600; color: var(--text2); white-space: nowrap; }
.invite-person-chip.selected .invite-name { color: var(--primary-light); }
.invite-event-picker { margin-top: 12px; border-top: 1px solid var(--border); padding-top: 12px; }
.invite-picker-label { font-size: 12px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.invite-event-options { display: flex; flex-direction: column; gap: 6px; }
.invite-event-btn { width: 100%; padding: 10px 14px; background: var(--surface2); border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; text-align: left; font-family: var(--font); transition: all 0.2s; }
.invite-event-btn:hover { border-color: var(--primary); color: var(--primary-light); }
.invite-sent-msg { margin-top: 10px; padding: 10px 14px; background: rgba(34,201,135,0.12); border: 2px solid var(--green); border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; color: var(--green); text-align: center; }

/* ── INCOMING INVITE CARD ── */
.incoming-invite-card { background: var(--surface2); border: 2px solid var(--primary); border-radius: var(--radius); padding: 14px; margin-bottom: 16px; }
.inc-invite-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.inc-invite-emoji { font-size: 28px; flex-shrink: 0; }
.inc-invite-text { font-size: 13px; color: var(--text); line-height: 1.5; }
.inc-invite-actions { display: flex; gap: 8px; }
.inc-accept-btn { flex: 1; padding: 9px; background: var(--green); color: #0D0D14; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font); }
.inc-decline-btn { flex: 1; padding: 9px; background: var(--surface); border: 2px solid var(--border); color: var(--text2); border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font); }

/* ── SHARE LINK ── */
.share-link-row { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding: 10px 12px; background: var(--surface2); border: 2px solid var(--border); border-radius: var(--radius-sm); }
.share-link-info { flex: 1; }
.share-link-title { font-size: 12px; font-weight: 700; color: var(--text2); margin-bottom: 3px; }
.share-link-url { font-size: 13px; font-weight: 600; color: var(--primary-light); }
.share-link-btn { padding: 6px 14px; background: linear-gradient(135deg, var(--primary), var(--accent2)); color: white; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font); white-space: nowrap; }
.share-link-copied { margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--green); text-align: center; }

/* ── FRIEND SUGGESTIONS ── */
.friends-suggestion-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.friend-suggest-card { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); transition: all 0.2s; }
.friend-suggest-card:hover { border-color: var(--primary-light); }
.friend-suggest-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.friend-suggest-info { flex: 1; }
.friend-suggest-name { font-size: 14px; font-weight: 700; color: var(--text); }
.friend-suggest-mutual { font-size: 11px; color: var(--text2); margin: 2px 0 5px; }
.friend-suggest-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.friend-add-btn { padding: 7px 14px; background: var(--surface2); border: 2px solid var(--primary); color: var(--primary-light); border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font); white-space: nowrap; transition: all 0.2s; }
.friend-add-btn:hover { background: var(--primary); color: white; }

/* ── CONNECTIONS SECTION TITLE ── */
.conn-section-title { font-size: 12px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }

/* ── LOGOUT BUTTON ── */
.logout-btn { background: none; border: 2px solid var(--border); border-radius: 12px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--text2); cursor: pointer; font-family: var(--font); transition: all 0.2s; }
.logout-btn:hover { border-color: #DC2626; color: #DC2626; }

/* ── OAUTH PERMISSION MODAL ── */
.oauth-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 20px; }
.oauth-sheet { background: #2A2245; border-radius: 24px; width: 100%; max-width: 360px; padding: 24px 24px 28px; }
.oauth-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.oauth-logo-circle { width: 52px; height: 52px; border-radius: 14px; background: var(--surface2); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.oauth-asking { font-size: 12px; color: var(--text2); margin-bottom: 3px; }
.oauth-app-name { font-size: 20px; font-weight: 800; color: var(--text); }
.oauth-divider { height: 1px; background: var(--border); margin-bottom: 12px; }
.oauth-read-only { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.oauth-perms { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.oauth-perm-item { font-size: 13px; color: var(--text); background: var(--surface2); border-radius: 10px; padding: 10px 14px; border-left: 3px solid var(--primary); }
.oauth-actions { display: flex; flex-direction: column; gap: 8px; }
.oauth-allow { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary), var(--accent2)); color: white; border: none; border-radius: var(--radius); font-size: 16px; font-weight: 700; cursor: pointer; font-family: var(--font); }
.oauth-deny { width: 100%; padding: 12px; background: transparent; color: var(--text2); border: 2px solid var(--border); border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font); }

/* ── CALENDAR SYNC BANNER (calendar screen) ── */
.cal-sync-banner { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; background: var(--surface2); border-bottom: 1px solid var(--border); flex-shrink: 0; gap: 10px; }
.cal-sync-text { flex: 1; }
.cal-sync-title { font-size: 13px; font-weight: 700; color: var(--text); }
.cal-sync-sub { font-size: 11px; color: var(--text2); margin-top: 2px; }
.cal-sync-btns { display: flex; gap: 6px; }
.cal-sync-btn { padding: 6px 12px; border-radius: 10px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: var(--font); border: 2px solid transparent; transition: all 0.2s; }
.cal-sync-google { background: #4285F4; color: white; }
.cal-sync-apple { background: #1C1C1E; color: white; }

/* ── CALENDAR SYNC OPTION (onboarding) ── */
.cal-sync-option { display: flex; align-items: center; gap: 14px; width: 100%; padding: 14px 16px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.2s; text-align: left; }
.cal-sync-option:hover { border-color: var(--primary); }
.cal-sync-option.selected { border-color: var(--primary); background: rgba(157,111,232,0.1); }
.cal-sync-opt-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: white; flex-shrink: 0; }
.cal-sync-opt-info { flex: 1; }
.cal-sync-opt-name { font-size: 15px; font-weight: 700; color: var(--text); }
.cal-sync-opt-sub { font-size: 12px; color: var(--text2); margin-top: 2px; }
.cal-sync-opt-check { font-size: 18px; font-weight: 700; color: var(--green); width: 24px; text-align: center; }

/* ── SCREEN 14: SURPRISE ME ── */
.surprise-top { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.surprise-dice { font-size: 56px; animation: spin 0.5s ease; }
@keyframes spin { 0% { transform: rotate(0deg) scale(0.5); } 100% { transform: rotate(360deg) scale(1); } }
.surprise-card { width: 100%; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 16px; }
.surprise-reason { width: 100%; background: var(--surface2); border-left: 3px solid var(--primary); border-radius: 0 10px 10px 0; padding: 12px 14px; font-size: 13px; color: var(--text); line-height: 1.6; }
.surprise-pts { font-size: 13px; font-weight: 700; color: var(--accent); background: rgba(245,158,11,0.15); padding: 8px 14px; border-radius: 10px; text-align: center; width: 100%; }
