/* ============================================================
   CHEERING W/ MY HOMEGIRLS — DESIGN SYSTEM
   Brand Colors extracted from logo
   ============================================================ */

:root {
  --pink: #FF5FA3;
  --pink-dark: #e04a8a;
  --pink-light: #FFD6E9;
  --yellow: #FFE135;
  --yellow-dark: #e6c200;
  --cyan: #00C4CC;
  --cyan-dark: #009EA5;
  --blue: #2563EB;
  --blue-dark: #1d4ed8;
  --orange: #FF8C42;
  --orange-dark: #e07330;
  --lavender: #E8D5F5;
  --purple: #7C3AED;
  --green: #22c55e;
  --dark: #1a1a2e;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg: #f8f7ff;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: #f0eef8;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   APP SHELL — PHONE FRAME
   ============================================================ */
.app-shell {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 24px 16px;
  gap: 32px;
}

.phone-frame {
  position: relative;
  width: 390px;
  min-width: 390px;
  max-width: 390px;
  background: var(--dark);
  border-radius: 50px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--dark);
  border-radius: 0 0 20px 20px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 10;
}

.phone-screen {
  background: var(--bg);
  border-radius: 38px;
  overflow: hidden;
  height: 810px;
  position: relative;
}

/* ============================================================
   SCREENS
   ============================================================ */
.screen {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.screen.active {
  display: flex;
}

/* ============================================================
   SPLASH SCREEN
   ============================================================ */
.splash-bg {
  flex: 1;
  background: linear-gradient(160deg, #fff5fc 0%, #eef4ff 50%, #f0fff4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 36px;
  position: relative;
  overflow: hidden;
}

.splash-bg::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,95,163,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.splash-bg::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,196,204,0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.logo-wrapper {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.splash-logo {
  width: 320px;
  max-width: 88%;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(255,95,163,0.30));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.splash-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.splash-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
  max-width: 280px;
  line-height: 1.5;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.splash-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(255,95,163,0.35);
}
.btn-primary:hover { background: var(--pink-dark); box-shadow: 0 6px 20px rgba(255,95,163,0.45); }

.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover { background: var(--pink-light); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

.btn-text {
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  display: block;
  text-align: center;
  width: 100%;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.2s;
}
.btn-text:hover { color: var(--pink); text-decoration-color: var(--pink); }

/* ============================================================
   STICKER LABEL (from logo design motif)
   ============================================================ */
.sticker-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   ONBOARDING
   ============================================================ */
.onboarding-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.onb-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px 32px;
  overflow-y: auto;
}

.onb-slide.active { display: flex; }

.onb-skip {
  align-self: flex-end;
  background: rgba(0,0,0,0.12);
  border: none;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  color: rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.onb-illustration {
  margin: 20px 0;
}

.onb-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.onb-card {
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.onb-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  margin: 12px 0 10px;
  line-height: 1.2;
}

.onb-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.onb-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: all 0.3s;
}
.dot.active {
  background: var(--pink);
  width: 24px;
  border-radius: 4px;
}

.onb-next-btn {
  width: 100%;
}

/* ============================================================
   PATH SELECT
   ============================================================ */
.path-screen {
  height: 100%;
  overflow-y: auto;
  padding: 24px 20px 40px;
  background: linear-gradient(180deg, #fff5fc 0%, #f8f7ff 100%);
}

.path-header {
  text-align: center;
  margin-bottom: 24px;
}

.path-logo {
  width: 120px;
  margin-bottom: 16px;
}

.path-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}

.path-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
}

.path-divider {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.path-separator {
  text-align: center;
  padding: 12px 0;
  color: var(--text-muted);
  font-weight: 700;
  position: relative;
}
.path-separator::before, .path-separator::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: var(--border);
}
.path-separator::before { left: 0; }
.path-separator::after { right: 0; }

.path-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}

.path-card:active { transform: scale(0.98); }

.path-card-reg:hover { border-color: var(--pink); box-shadow: 0 8px 24px rgba(255,95,163,0.2); }
.path-card-checkin:hover { border-color: var(--cyan); box-shadow: 0 8px 24px rgba(0,196,204,0.2); }

.path-card-icon {
  width: 56px; height: 56px;
  background: var(--pink-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--pink);
}

.path-card-checkin .path-card-icon {
  background: rgba(0,196,204,0.12);
  color: var(--cyan);
}

.path-card-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}

.path-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

.path-card-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.path-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--blue);
  line-height: 1.5;
}

/* ============================================================
   FORM SCREENS
   ============================================================ */
.form-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.form-header {
  padding: 52px 20px 20px;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}

.form-header h2 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 2px;
}

.form-header p {
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 600;
}

.back-btn {
  position: absolute;
  top: 52px; left: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.back-btn:hover { background: rgba(255,255,255,0.3); }
.back-btn.white { color: #fff; }

.progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}

.progress-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 50px;
  transition: width 0.4s ease;
}

.progress-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
}

.form-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-body::-webkit-scrollbar { width: 4px; }
.form-body::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 2px; }

.step-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
}

.step-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.req { color: var(--pink); }

.form-input, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,95,163,0.12);
}

.form-input::placeholder { color: var(--text-muted); }

.form-row { display: flex; gap: 12px; }
.flex-1 { flex: 1; }

.input-with-icon {
  position: relative;
}
.input-with-icon .form-input { padding-right: 48px; }
.input-icon-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 0.9rem;
}

.info-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.85rem;
  color: var(--blue);
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 8px;
}

/* Option Cards */
.option-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}

.option-card:hover { border-color: var(--pink); }
.option-card.selected {
  border-color: var(--pink);
  background: var(--pink-light);
}

.option-icon { font-size: 1.5rem; }

.option-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.option-card span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Size Grid */
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.size-btn {
  padding: 12px 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
}

.size-btn:hover { border-color: var(--cyan); background: rgba(0,196,204,0.08); }
.size-btn.selected { border-color: var(--cyan); background: rgba(0,196,204,0.15); color: var(--cyan-dark); }

/* Checkboxes & Toggles */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

.checkbox-item input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--pink);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 4px;
}

.optional-badge {
  display: inline-block;
  background: var(--yellow);
  color: #333;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.toggle-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 4px 0;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.toggle-row.bordered {
  border-bottom: 1px solid var(--border);
}
.toggle-row.bordered:last-child { border-bottom: none; }

.toggle-row strong {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.toggle-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.toggle-switch {
  width: 48px; height: 28px;
  background: var(--border);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.toggle-switch.on { background: var(--pink); }

.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch.on .toggle-knob { transform: translateX(20px); }

/* Agreements */
.agreement-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.agreement-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 1.1rem;
}

.agreement-header h4 {
  font-size: 1rem;
  font-weight: 800;
}

.agreement-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  max-height: 120px;
  overflow-y: auto;
}

.agreement-text ul { padding-left: 16px; }
.agreement-text li { margin-bottom: 4px; }

.agreement-sig {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.sig-input {
  border-color: var(--purple);
  font-style: italic;
}

.sig-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.12); }

.form-privacy-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   REGISTRATION CONFIRMATION
   ============================================================ */
.confirm-screen {
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(160deg, #fff5fc 0%, #f0fff8 100%);
  position: relative;
}

.confirm-content {
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  min-height: 100%;
}

.confirm-icon-wrap {
  position: relative;
  width: 100px; height: 100px;
  margin-bottom: 8px;
}

.confirm-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green), #4ade80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 10px; left: 10px;
  box-shadow: 0 8px 24px rgba(34,197,94,0.35);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.confirm-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 3px solid var(--green);
  border-radius: 50%;
  opacity: 0.3;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes popIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.1; }
}

.confirm-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin: 4px 0 12px;
  line-height: 1.2;
}

.confirm-body {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.confirm-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}

.confirm-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  text-align: left;
  font-size: 1.3rem;
}

.confirm-info-card div { display: flex; flex-direction: column; }
.confirm-info-card strong { font-size: 0.9rem; font-weight: 800; color: var(--text); }
.confirm-info-card span { font-size: 0.78rem; color: var(--text-muted); }

.whatsapp-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #dcf8e6, #e8fff0);
  border: 1.5px solid #a8f0c0;
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 16px;
  transition: all 0.2s;
}
.whatsapp-banner:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.whatsapp-icon {
  width: 48px; height: 48px;
  background: #25D366;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.whatsapp-text {
  flex: 1;
  text-align: left;
}
.whatsapp-text strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text); }
.whatsapp-text span { font-size: 0.78rem; color: var(--text-light); }

.confirm-next-steps {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.next-steps-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.confirm-next-steps p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dash-header {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  padding: 52px 20px 20px;
  flex-shrink: 0;
}

.dash-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-greeting {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  padding: 4px;
}

.dash-hey {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin: 0;
}

.dash-name {
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
  margin: 0;
}

.dash-notif-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s;
}
.dash-notif-btn:hover { background: rgba(255,255,255,0.3); }

.notif-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--yellow);
  color: #333;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.65rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.dash-scroll-area {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.dash-scroll-area::-webkit-scrollbar { width: 4px; }
.dash-scroll-area::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 2px; }

.announcement-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fff9e6, #fffce0);
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: all 0.2s;
}
.announcement-banner:hover { transform: translateY(-1px); }

.announcement-dot {
  width: 10px; height: 10px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.announcement-text {
  flex: 1;
  font-size: 0.85rem;
}
.announcement-text strong { display: block; font-weight: 800; color: var(--text); }
.announcement-text span { color: var(--text-light); font-size: 0.78rem; }

.section-label {
  margin: 12px 0 10px;
}

/* Next Class Card */
.next-class-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.25s;
}
.next-class-card:hover { border-color: var(--pink); transform: translateY(-2px); }

.class-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.class-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 14px;
  padding: 10px 12px;
  color: #fff;
  min-width: 52px;
  flex-shrink: 0;
}

.class-day { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; }
.class-num { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.class-month { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; }

.class-card-info {
  flex: 1;
}
.class-card-info h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.class-card-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.class-status-pill {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.status-confirmed { background: rgba(34,197,94,0.12); color: var(--green); }
.status-waitlisted { background: rgba(255,193,7,0.15); color: #b45309; }
.status-unpaid { background: rgba(255,140,66,0.12); color: var(--orange-dark); }

.class-card-capacity {
  margin-bottom: 12px;
}

.capacity-bar {
  height: 8px;
  background: var(--border);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 4px;
}

.capacity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 50px;
  transition: width 0.4s ease;
}

.capacity-fill.full { background: linear-gradient(90deg, var(--orange), var(--pink)); }

.capacity-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.class-card-payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.payment-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.payment-chip {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
}
.payment-unpaid { background: rgba(255,140,66,0.12); color: var(--orange-dark); }
.payment-paid { background: rgba(34,197,94,0.12); color: var(--green); }

.btn-pay-now {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-pay-now:hover { background: var(--orange-dark); }

/* Status Grid */
.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.status-tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.2rem;
}

.status-tile-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
}

.status-tile-value {
  font-size: 0.8rem;
  font-weight: 800;
}

/* Announcements List */
.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.announcement-item {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.2s;
}
.announcement-item:hover { transform: translateX(2px); }

.ann-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
  min-width: 36px;
  padding-top: 2px;
}

.ann-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.ann-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Quick Links */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.quick-link {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.3rem;
}
.quick-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.quick-link span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  line-height: 1.2;
}

/* ============================================================
   BOTTOM NAV
   ============================================================ */
.bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 0 16px;
  flex-shrink: 0;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 10px;
  transition: all 0.2s;
  min-width: 52px;
  color: var(--text-muted);
}

.nav-item i { font-size: 1.1rem; }
.nav-item span { font-size: 0.62rem; font-weight: 700; }

.nav-item.active {
  color: var(--pink);
}
.nav-item.active i { color: var(--pink); }
.nav-item.active span { color: var(--pink); }

/* ============================================================
   CLASSES SCREEN
   ============================================================ */
.screen-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 16px 16px;
  color: #fff;
  flex-shrink: 0;
}

.screen-header-bar h2 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.checkin-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 14px;
  border: 1px solid rgba(37,99,235,0.15);
}

.filter-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  margin-bottom: 4px;
}
.filter-strip::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  color: var(--text-light);
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-btn.active { background: var(--pink); color: #fff; border-color: var(--pink); }

.class-list-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.class-list-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.class-list-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 12px;
  padding: 8px 10px;
  color: #fff;
  min-width: 46px;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
}
.class-list-date strong { font-size: 1.4rem; font-weight: 900; line-height: 1; }

.class-list-details { flex: 1; }
.class-list-details h3 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.class-list-details p {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.class-open-badge {
  background: rgba(34,197,94,0.12);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.class-full-badge {
  background: rgba(255,95,163,0.12);
  color: var(--pink-dark);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.class-soon-badge {
  background: rgba(124,58,237,0.1);
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.class-capacity-wrap {
  margin-bottom: 12px;
}
.class-capacity-wrap span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.waitlist-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(255,193,7,0.1);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* ============================================================
   MODALS / OVERLAYS
   ============================================================ */
.overlay-modal {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,46,0.7);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  background: #fff;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 28px 24px 40px;
  width: 100%;
  text-align: center;
  animation: slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 90%;
  overflow-y: auto;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-md);
}

.modal-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.modal-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.modal-status-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px;
  margin: 0 0 20px;
  text-align: left;
}

.modal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  padding: 6px 0;
  color: var(--text);
  font-weight: 600;
}

.modal-note {
  background: rgba(255,193,7,0.1);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.82rem;
  color: #92400e;
  margin-bottom: 16px;
  text-align: left;
}

.modal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-header-row h3 { font-size: 1.1rem; font-weight: 900; }

.modal-close-btn {
  width: 32px; height: 32px;
  background: var(--border);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
}

/* ============================================================
   PAYMENTS SCREEN
   ============================================================ */
.payment-due-card {
  background: linear-gradient(135deg, var(--orange), #ff6b6b);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(255,140,66,0.35);
}

.payment-due-top {
  text-align: center;
  margin-bottom: 10px;
}

.payment-due-amount {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  line-height: 1;
  margin: 8px 0 4px;
}

.payment-due-top p {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 600;
  margin: 0;
}

.payment-due-note {
  font-size: 0.78rem;
  opacity: 0.85;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  line-height: 1.4;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.pay-method-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.pay-method-card:hover { border-color: var(--pink); }
.pay-method-card.selected { border-color: var(--pink); background: var(--pink-light); }

.pay-method-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cashapp-logo { background: #00D632; color: #fff; }

/* CashApp-only big card */
.cashapp-big-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #00D63210, #00a82508);
  border: 2px solid #00D63240;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.cashapp-big-card:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,214,50,0.15); }
.cashapp-big-logo {
  width: 56px; height: 56px;
  background: #00D632;
  color: #fff;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,214,50,0.3);
}
.cashapp-big-info { flex: 1; }
.cashapp-big-info h3 { font-size: 1rem; font-weight: 900; margin: 0 0 6px; color: var(--text); }
.cashapp-handle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #00a825;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.cashapp-big-info p { font-size: 0.8rem; color: var(--text-light); margin: 0; line-height: 1.5; }

.pay-method-info { flex: 1; }
.pay-method-info strong { display: block; font-size: 0.9rem; font-weight: 800; }
.pay-method-info span { font-size: 0.78rem; color: var(--text-light); }

.pay-method-check {
  color: var(--border);
  font-size: 1.2rem;
  transition: color 0.2s;
}
.pay-method-card.selected .pay-method-check { color: var(--green); }

.payment-instructions {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-top: 8px;
  border: 2px solid #00D63230;
}

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.upload-zone i { font-size: 1.8rem; color: var(--pink); }
.upload-zone:hover { border-color: var(--pink); background: var(--pink-light); }

.donation-card {
  background: linear-gradient(135deg, #faf0ff, var(--lavender));
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  border: 1.5px solid rgba(124,58,237,0.15);
}

.donation-icon {
  font-size: 2rem;
  color: var(--purple);
  margin-bottom: 10px;
}

.donation-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.donation-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin-bottom: 14px; }

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.donation-btn {
  padding: 10px 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.donation-btn:hover { border-color: var(--purple); background: rgba(124,58,237,0.08); color: var(--purple); }
.donation-btn.selected { border-color: var(--purple); background: var(--purple); color: #fff; }

.payment-history { margin-bottom: 16px; }

.payment-hist-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}

.hist-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hist-icon.paid { background: rgba(34,197,94,0.12); color: var(--green); }
.hist-icon.donation { background: rgba(124,58,237,0.1); color: var(--purple); }

.hist-info { flex: 1; }
.hist-info strong { display: block; font-size: 0.88rem; font-weight: 700; }
.hist-info span { font-size: 0.75rem; color: var(--text-muted); }

.hist-amount { font-weight: 900; font-size: 0.95rem; }
.hist-amount.paid { color: var(--green); }
.hist-amount.donation { color: var(--purple); }

/* ============================================================
   COMMUNITY SCREEN
   ============================================================ */
.whatsapp-big-card {
  background: linear-gradient(135deg, #e8fff2, #d0f8e4);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 16px;
  border: 2px solid rgba(37,211,102,0.3);
  box-shadow: 0 8px 24px rgba(37,211,102,0.15);
}

.whatsapp-big-icon {
  width: 70px; height: 70px;
  background: #25D366;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

.whatsapp-big-text h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 6px; }
.whatsapp-big-text p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

.community-toggle-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.community-announcements {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.comm-ann-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.comm-ann-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comm-ann-tag {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.comm-ann-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.comm-ann-card h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 6px; }
.comm-ann-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; margin: 0; }

.social-links-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.social-link-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.2s;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.social-link-btn span { font-size: 0.7rem; font-weight: 700; }

.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.tiktok { background: #000; color: #fff; }
.facebook { background: #1877F2; color: #fff; }

.teams-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

.team-tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.team-emoji { font-size: 1.5rem; }
.team-tile strong { font-size: 0.85rem; font-weight: 800; }
.team-tile span { font-size: 0.72rem; color: var(--text-muted); }

.team-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0 8px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ============================================================
   DOCUMENTS SCREEN
   ============================================================ */
.docs-intro {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.docs-section-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.doc-list {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 4px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.doc-item:last-child { border-bottom: none; }
.doc-item:hover { background: var(--bg); }

.doc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.doc-info { flex: 1; }
.doc-info strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text); }
.doc-info span { font-size: 0.75rem; color: var(--text-muted); }

.doc-modal-card {
  text-align: left;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  max-height: 85%;
}

.doc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.doc-modal-body {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  overflow-y: auto;
  max-height: 60vh;
}

/* ============================================================
   SIGNIN SCREEN
   ============================================================ */
.signin-logo-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.signin-logo { width: 120px; }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   ADMIN SCREENS
   ============================================================ */
.admin-login-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(26,26,46,0.06);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-stat-card {
  border-radius: var(--radius);
  padding: 16px 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.stat-icon {
  position: absolute;
  bottom: 6px; right: 8px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.2);
}

.admin-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-action-btn {
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  font-size: 1.4rem;
  text-align: center;
}
.admin-action-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.admin-action-btn span { font-size: 0.62rem; font-weight: 700; color: var(--text-light); line-height: 1.3; }

.admin-class-row {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}

.admin-class-info strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.admin-class-info span { font-size: 0.75rem; color: var(--text-muted); }

.admin-class-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.admin-mini-btn {
  padding: 6px 14px;
  border: 1.5px solid var(--blue);
  border-radius: 50px;
  background: transparent;
  color: var(--blue);
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-mini-btn:hover { background: var(--blue); color: #fff; }

.admin-payment-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}

.participant-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.admin-pay-info { flex: 1; }
.admin-pay-info strong { display: block; font-size: 0.88rem; font-weight: 700; }
.admin-pay-info span { font-size: 0.75rem; color: var(--text-muted); }

.admin-pay-actions { display: flex; gap: 8px; }

.verify-btn {
  width: 32px; height: 32px;
  background: rgba(34,197,94,0.12);
  border: 1.5px solid var(--green);
  border-radius: 50%;
  cursor: pointer;
  color: var(--green);
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.verify-btn:hover, .verify-btn.done { background: var(--green); color: #fff; }

.reject-btn {
  width: 32px; height: 32px;
  background: rgba(255,95,163,0.08);
  border: 1.5px solid var(--pink);
  border-radius: 50%;
  cursor: pointer;
  color: var(--pink);
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.reject-btn:hover { background: var(--pink); color: #fff; }

/* ============================================================
   ADMIN CHECK-IN TOOL
   ============================================================ */
.admin-class-header-card {
  background: linear-gradient(135deg, var(--dark), #2d2d50);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-md);
}

.admin-class-header-card h3 { font-size: 1.1rem; font-weight: 800; margin: 8px 0 6px; }
.admin-class-header-card p {
  font-size: 0.8rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.class-day-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cds-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
}
.cds-pill.green { background: rgba(34,197,94,0.2); color: #86efac; }
.cds-pill.orange { background: rgba(255,140,66,0.2); color: #fcd34d; }
.cds-pill.red { background: rgba(255,95,163,0.2); color: #fca5a5; }
.cds-pill.blue { background: rgba(37,99,235,0.2); color: #93c5fd; }

.search-wrap {
  position: relative;
  margin-bottom: 12px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.search-input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  transition: all 0.2s;
}
.search-input:focus { outline: none; border-color: var(--pink); }

.roster-list { display: flex; flex-direction: column; gap: 8px; }

.roster-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: all 0.2s;
}

.roster-row.present { border-left-color: var(--green); background: rgba(34,197,94,0.04); }
.roster-row.noshow { border-left-color: var(--border); background: rgba(0,0,0,0.02); opacity: 0.65; }

.roster-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.roster-info { flex: 1; }
.roster-info strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.roster-chips { display: flex; gap: 5px; flex-wrap: wrap; }

.chip {
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
}
.chip-confirmed { background: rgba(37,99,235,0.1); color: var(--blue); }
.chip-present { background: rgba(34,197,94,0.12); color: var(--green); }
.chip-paid { background: rgba(34,197,94,0.12); color: var(--green); }
.chip-unpaid { background: rgba(255,140,66,0.12); color: var(--orange-dark); }
.chip-noshow { background: rgba(156,163,175,0.2); color: #6b7280; }
.chip-waitlisted { background: rgba(255,193,7,0.15); color: #b45309; }

.roster-actions { display: flex; gap: 6px; }

.roster-present-btn {
  width: 34px; height: 34px;
  background: rgba(34,197,94,0.1);
  border: 1.5px solid var(--green);
  border-radius: 50%;
  cursor: pointer;
  color: var(--green);
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.roster-present-btn:hover, .roster-present-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

.roster-info-btn {
  width: 34px; height: 34px;
  background: rgba(255,140,66,0.1);
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  cursor: pointer;
  color: var(--orange);
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.roster-info-btn:hover { background: var(--orange); color: #fff; }

.waitlist-admin-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.waitlist-admin-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--yellow);
}

.waitlist-num {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--orange);
  min-width: 24px;
}

.waitlist-info { flex: 1; }
.waitlist-info strong { display: block; font-size: 0.85rem; font-weight: 700; }
.waitlist-info span { font-size: 0.72rem; color: var(--text-muted); }

.promote-btn {
  padding: 6px 14px;
  background: var(--yellow);
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  color: #333;
  transition: all 0.2s;
}
.promote-btn:hover { background: var(--yellow-dark); }

/* ============================================================
   ADMIN ROSTER SCREEN
   ============================================================ */
.roster-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.full-roster-list { display: flex; flex-direction: column; gap: 8px; }

.full-roster-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.2s;
}
.full-roster-row:hover { transform: translateX(2px); }

.roster-avatar-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.full-roster-info { flex: 1; }
.full-roster-info strong { display: block; font-size: 0.88rem; font-weight: 700; }
.full-roster-info span { font-size: 0.72rem; color: var(--text-muted); }

.full-roster-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.team-badge {
  padding: 3px 10px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  white-space: nowrap;
}

.size-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
}

.roster-export-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ============================================================
   NOTIFICATIONS
   ============================================================ */
.notif-modal-card {
  text-align: left;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.notif-list { display: flex; flex-direction: column; gap: 10px; }

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--bg);
  position: relative;
  transition: background 0.2s;
}
.notif-item.unread { background: rgba(255,95,163,0.06); border: 1px solid rgba(255,95,163,0.12); }

.notif-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  position: absolute;
  top: 12px; right: 12px;
}

.notif-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.notif-content { flex: 1; }
.notif-content strong { display: block; font-size: 0.88rem; font-weight: 800; margin-bottom: 3px; }
.notif-content p { font-size: 0.78rem; color: var(--text-light); line-height: 1.4; margin: 0 0 4px; }
.notif-time { font-size: 0.7rem; color: var(--text-muted); }

/* ============================================================
   DEMO NAV (outside phone frame)
   ============================================================ */
.demo-nav {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 200px;
  align-self: flex-start;
  position: sticky;
  top: 24px;
}

.demo-nav-title {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.demo-nav button {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: all 0.2s;
  white-space: nowrap;
}

.demo-nav button:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-light); }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   CONFETTI ANIMATION
   ============================================================ */
.confetti-piece {
  position: absolute;
  width: 10px; height: 10px;
  animation: confettiFall linear forwards;
  border-radius: 2px;
}

@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(500px) rotate(720deg); opacity: 0; }
}

/* ============================================================
   PAYMENT INSTRUCTIONS CONTENT
   ============================================================ */
.pay-instructions-box {
  text-align: center;
  padding: 8px 0;
}

.pay-instructions-box .pay-handle {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 8px 0;
  color: var(--text);
}

.pay-instructions-box .pay-amount {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--pink);
  margin: 4px 0;
}

.pay-instructions-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   EMPTY STATES
   ============================================================ */
.empty-state-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.empty-state-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}

.empty-state-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.empty-state-sm {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-state-sm p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 260px;
}

/* ============================================================
   PAYMENT INFO CARD (replaces payment-due-card for empty state)
   ============================================================ */
.payment-info-card {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.payment-info-top {
  text-align: center;
  margin-bottom: 10px;
}

.payment-info-top p {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 600;
  margin: 4px 0 0;
}

.payment-info-note {
  font-size: 0.78rem;
  opacity: 0.85;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   TUTORIAL STYLES
   ============================================================ */
.tutorial-hero {
  background: linear-gradient(160deg, #fff5fc 0%, #eef4ff 100%);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 16px;
  border: 1.5px solid var(--border);
}

.tutorial-hero h2 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tutorial-hero p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.tutorial-section {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}

.tutorial-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
}

.tutorial-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tutorial-intro-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.tutorial-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tutorial-step-num {
  width: 28px;
  height: 28px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.tutorial-step strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}

.tutorial-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.tutorial-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,225,53,0.1);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
}

.tutorial-role-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px;
  border-left: 3px solid var(--border);
}

.tutorial-role-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.tutorial-role-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.tutorial-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px;
}

.tutorial-checklist-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.tip-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,225,53,0.06);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  border: 1px solid rgba(255,193,7,0.15);
}

.tip-card i { margin-top: 2px; flex-shrink: 0; }
.tip-card p { margin: 0; }

.tutorial-link-row {
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.tutorial-cta-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(124,58,237,0.06));
  border: 1.5px solid rgba(37,99,235,0.15);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  margin: 16px 0;
  transition: all 0.2s;
}

.tutorial-cta-banner:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.tutorial-cta-banner i:first-child {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
}

.tutorial-cta-banner strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text); }
.tutorial-cta-banner span { font-size: 0.78rem; color: var(--text-light); }

/* Check-In How-to Grid */
.checkin-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.how-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.how-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}

.how-card strong { font-size: 0.85rem; font-weight: 800; }
.how-card p { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; margin: 0; }

/* ============================================================
   EXTRA POLISHING
   ============================================================ */

/* Splash confetti container */
.splash-confetti {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Confirm confetti container */
.confirm-confetti {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ============================================================
   EQUIPMENT WISH LIST SCREEN
   ============================================================ */

/* Hero banner */
.wishlist-hero {
  background: linear-gradient(135deg, var(--purple), #9333ea);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  text-align: center;
  margin: 8px 0 12px;
  color: #fff;
}
.wishlist-hero-icon { font-size: 2.8rem; margin-bottom: 8px; }
.wishlist-hero h3 { font-size: 1.2rem; font-weight: 900; margin: 0 0 8px; color: #fff; }
.wishlist-hero p { font-size: 0.84rem; line-height: 1.6; opacity: 0.92; margin: 0; }

/* Progress card */
.wishlist-progress-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.wishlist-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.wishlist-progress-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple);
}

/* Category title */
.wishlist-category-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  padding: 4px 2px 6px;
  margin-top: 8px;
}

/* Individual wish list item card */
.wishlist-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--purple);
  transition: all 0.25s;
}
.wishlist-item.fulfilled {
  border-left-color: var(--green);
  background: rgba(34, 197, 94, 0.04);
  opacity: 0.7;
}
.wishlist-item-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.wishlist-item-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.wishlist-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wishlist-item-info strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.wishlist-item-qty {
  font-size: 0.74rem;
  color: var(--purple);
  font-weight: 700;
}
.wishlist-item-note {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.4;
}
.wishlist-item-price {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
  background: rgba(255,140,66,0.1);
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
}
.wishlist-item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wishlist-buy-btn {
  flex: 1;
  min-width: 140px;
  font-size: 0.8rem;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-color: var(--purple);
  color: var(--purple);
}
.wishlist-buy-btn:hover { background: var(--purple); color: #fff; }
.wishlist-mark-btn {
  flex: 1;
  min-width: 130px;
  font-size: 0.8rem;
  padding: 9px 12px;
  background: rgba(34,197,94,0.08);
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}
.wishlist-mark-btn:hover { background: var(--green); color: #fff; }
.wishlist-mark-btn.done {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
/* Fulfilled overlay label */
.wishlist-fulfilled-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

/* Footer CTA card */
.wishlist-footer-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(37,99,235,0.06));
  border: 1.5px solid rgba(124,58,237,0.18);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  margin: 16px 0 24px;
}
.wishlist-footer-icon { font-size: 2rem; margin-bottom: 10px; }
.wishlist-footer-card h4 { font-size: 1rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.wishlist-footer-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.wishlist-footer-handles {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text);
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
}
.wishlist-footer-handles span { display: flex; gap: 6px; }

/* Community CTA card for wish list */
.wishlist-cta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.07), rgba(37,99,235,0.05));
  border: 1.5px solid rgba(124,58,237,0.18);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: all 0.2s;
}
.wishlist-cta-card:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.wishlist-cta-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}
.wishlist-cta-icon { font-size: 1.8rem; flex-shrink: 0; }
.wishlist-cta-card strong { font-size: 0.92rem; font-weight: 800; color: var(--text); display: block; margin-bottom: 4px; }
.wishlist-cta-card p { font-size: 0.78rem; color: var(--text-light); margin: 0; line-height: 1.4; }

/* Form body animated entrance */
.form-body .form-group {
  animation: fadeSlideUp 0.3s ease both;
}

.form-body .form-group:nth-child(1) { animation-delay: 0.05s; }
.form-body .form-group:nth-child(2) { animation-delay: 0.1s; }
.form-body .form-group:nth-child(3) { animation-delay: 0.15s; }
.form-body .form-group:nth-child(4) { animation-delay: 0.2s; }
.form-body .form-group:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Screen header for non-form screens */
.screen-header-bar .back-btn {
  position: static;
  background: rgba(255,255,255,0.2);
}

/* Dash header back btn */
.dash-header .back-btn {
  position: absolute;
  top: 52px; left: 16px;
}

/* Payment confirmed animation */
.hist-icon.pending {
  background: rgba(255,193,7,0.15);
  color: #d97706;
}

/* Active nav item indicator */
.nav-item.active::before {
  content: '';
  position: absolute;
  top: -2px;
  width: 24px;
  height: 3px;
  background: var(--pink);
  border-radius: 0 0 3px 3px;
}
.nav-item { position: relative; }

/* Hover effect on class cards */
.class-list-card:hover {
  border-color: var(--pink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Scrollbar for form body */
.form-screen > .form-body::-webkit-scrollbar { width: 3px; }
.form-screen > .form-body::-webkit-scrollbar-thumb { background: var(--pink-light); }

/* Community toggle border */
.toggle-row.bordered:last-child { border-bottom: none; }

/* Admin stat card animation */
.admin-stat-card {
  animation: fadeIn 0.4s ease both;
}

/* Signature field special style */
.sig-input {
  font-size: 1rem !important;
  color: var(--purple) !important;
  font-family: 'Nunito', sans-serif !important;
}

/* ============================================================
   ADMIN CHECK-IN ROSTER
   ============================================================ */

.checkin-class-header {
  background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 4px;
  color: #fff;
}
.checkin-class-header h3 { font-size: 0.95rem; color: #fff; }

.roster-row {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.2s;
}
.roster-row.present { border-left: 4px solid var(--green); }
.roster-row-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
}
.roster-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.roster-info { flex: 1; min-width: 0; }
.roster-info strong { font-size: 0.88rem; font-weight: 800; display: block; margin-bottom: 4px; }
.roster-chips { display: flex; gap: 5px; flex-wrap: wrap; }

.roster-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.roster-btn {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: all 0.18s;
}
.present-btn { background: rgba(34,197,94,0.12); color: var(--green); }
.present-btn.active { background: var(--green); color: #fff; }
.present-btn:hover { background: var(--green); color: #fff; }
.cash-btn { background: rgba(0,214,50,0.12); color: #00a825; }
.cash-btn:hover { background: #00D632; color: #fff; }
.emergency-btn { background: rgba(255,140,66,0.12); color: var(--orange); }
.emergency-btn:hover { background: var(--orange); color: #fff; }

.checkin-legend {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 12px 0 20px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 600;
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

/* Chip variants */
.chip-unpaid { background: rgba(255,140,66,0.15); color: var(--orange); }
.chip-paid { background: rgba(34,197,94,0.15); color: #15803d; }
.chip-sm { padding: 2px 8px; font-size: 0.68rem; border-radius: 20px; font-weight: 800; }

/* ============================================================
   CASH PAYMENT MODAL
   ============================================================ */
.cash-modal-form { text-align: left; width: 100%; }
.cash-type-row {
  display: flex;
  gap: 8px;
}
.cash-type-opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--text-light);
  font-family: 'Nunito', sans-serif;
}
.cash-type-opt.selected {
  border-color: #00D632;
  background: rgba(0,214,50,0.08);
  color: #00a825;
}
.cash-confirm-check {
  margin-top: 12px;
  padding: 10px;
  background: rgba(0,214,50,0.06);
  border-radius: 10px;
  border: 1px solid rgba(0,214,50,0.2);
}

/* ============================================================
   ADMIN ROSTER — PROFILE CARDS
   ============================================================ */
.roster-profile-card {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: border-color 0.2s;
}
.roster-profile-card:hover { border-left-color: var(--pink); }

.rp-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 10px;
}
.rp-info { flex: 1; }
.rp-info strong { font-size: 0.92rem; font-weight: 800; display: block; margin-bottom: 5px; }
.rp-meta { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }

.rp-pay-history {
  padding: 10px 14px 8px;
  border-top: 1px solid var(--border);
  background: rgba(0,214,50,0.03);
}
.rp-pay-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.rp-pay-empty {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 4px 0 8px;
}
.rp-pay-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 0.82rem;
}
.rp-pay-entry.cash-entry { background: rgba(34,197,94,0.08); color: #15803d; }
.rp-pay-entry.cashapp-entry { background: rgba(0,214,50,0.08); color: #00a825; }
.rp-pay-entry i { font-size: 1rem; flex-shrink: 0; }
.rp-pay-entry-info { flex: 1; }
.rp-pay-entry-info strong { display: block; font-size: 0.82rem; font-weight: 800; }
.rp-pay-entry-info span { font-size: 0.73rem; opacity: 0.8; }

.rp-actions {
  padding: 10px 14px 14px;
}
.rp-cash-btn {
  width: 100%;
  background: linear-gradient(135deg, #00D63210, #00a82508);
  border: 1.5px solid #00D63240;
  color: #00a825;
  font-size: 0.83rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.2s;
  font-family: 'Nunito', sans-serif;
}
.rp-cash-btn:hover { background: #00D632; color: #fff; border-color: #00D632; }

/* WhatsApp hover */
.whatsapp-big-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.25);
}

/* Selected option card checkmark */
.option-card.selected::after {
  content: '✓';
  background: var(--pink);
  color: #fff;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  margin-left: auto;
  flex-shrink: 0;
}

/* Doc item hover */
.doc-item:active { background: var(--pink-light); }

/* Announcement item unread dot */
.announcement-item.unread {
  border-left: 3px solid var(--pink);
}

/* Class full state */
.class-list-card.full-class {
  border-color: rgba(255,95,163,0.2);
}

/* Confirm screen position relative for confetti */
.confirm-screen { position: relative; }

/* ============================================================
   RESPONSIVE — On small screens, hide demo nav
   ============================================================ */
@media (max-width: 650px) {
  .app-shell {
    padding: 0;
    justify-content: center;
  }
  
  .phone-frame {
    border-radius: 0;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    padding: 0;
    box-shadow: none;
  }
  
  .phone-notch { display: none; }
  
  .phone-screen {
    border-radius: 0;
    height: 100vh;
    height: -webkit-fill-available;
  }
  
  .demo-nav { display: none; }
}
