/* ==========================================================================
   Little Leaps by WellCare & Nurture — Milestone Screener Styles
   
   This is the dedicated stylesheet for the Little Leaps milestone checker.
   It creates an app-like experience within the WellCare website.
   
   Color System:
   - Navy: #1a3a5c (WellCare primary)
   - Teal/Speech: #5eb6d9
   - Coral/Physical: #e8735a
   - Purple/Cognitive: #9b6fcf  
   - Gold/Social: #e8b84d
   - Success Green: #38a169
   - Growing Teal: #319795
   - Bloom Amber: #d69e2e
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ---------- App Container — Neumorphic Card ---------- */
.ll-app {
  font-family: 'Nunito', 'Quicksand', sans-serif;
  max-width: 520px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3.5rem;
  position: relative;
  background: #f0f4f8;
  border-radius: 30px;
  box-shadow:
    16px 16px 40px rgba(163, 177, 198, 0.7),
    -16px -16px 40px rgba(255, 255, 255, 1);
}

/* Background behind the card */
.ll-app-section {
  background: #d3dbe5;
  padding: 3rem 1rem 4rem;
  overflow: visible;
}

.ll-app * {
  box-sizing: border-box;
}

/* ---------- Views & Transitions ---------- */
.ll-view {
  display: none;
  animation: ll-fadeSlideIn 0.4s ease forwards;
}

.ll-view.active {
  display: block;
}

@keyframes ll-fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---------- Disclaimer — Below the Card ---------- */
.ll-disclaimer-footer {
  max-width: 520px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
  font-family: 'Nunito', 'Quicksand', sans-serif;
}

.ll-disclaimer {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.75rem 0;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: #8a9bb5;
  line-height: 1.6;
  text-align: center;
  position: relative;
}

.ll-disclaimer-toggle {
  background: none;
  border: none;
  color: #6b8aad;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  padding: 0;
  margin-top: 0.25rem;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.ll-disclaimer-full {
  display: none;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #d0d8e4;
  text-align: left;
}

.ll-disclaimer-full.open {
  display: block;
}

.ll-disclaimer .ll-source {
  font-size: 0.72rem;
  color: #9aabbf;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ---------- Welcome Screen ---------- */
.ll-welcome-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
}

.ll-welcome-header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a2e44;
  margin: 0 0 0.5rem;
  letter-spacing: -0.3px;
}

.ll-welcome-header p {
  color: #8a9bb5;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

/* ---------- Age Slider ---------- */
.ll-slider-container {
  position: relative;
  padding: 2.5rem 0.5rem 2.5rem;
}

.ll-slider-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f0f4f8;
  color: #1a2e44;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  transition: left 0.15s ease;
  pointer-events: none;
  box-shadow:
    4px 4px 10px rgba(163, 177, 198, 0.5),
    -4px -4px 10px rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.ll-slider-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #f0f4f8;
}

/* Range input — deep neumorphic groove carved into card surface */
.ll-age-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 14px;
  border-radius: 14px;
  background: #e0e5ec;
  outline: none;
  cursor: pointer;
  margin: 0;
  box-shadow:
    inset 4px 4px 8px rgba(140, 160, 185, 0.55),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}

/* Raised white thumb — pops out of the groove */
.ll-age-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #e6eaf0);
  border: none;
  box-shadow:
    6px 6px 14px rgba(163, 177, 198, 0.6),
    -6px -6px 14px rgba(255, 255, 255, 1);
  cursor: grab;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ll-age-slider::-webkit-slider-thumb:hover {
  box-shadow:
    8px 8px 18px rgba(163, 177, 198, 0.65),
    -8px -8px 18px rgba(255, 255, 255, 1);
  transform: scale(1.06);
}

.ll-age-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
  box-shadow:
    3px 3px 8px rgba(163, 177, 198, 0.5),
    -3px -3px 8px rgba(255, 255, 255, 0.9);
}

.ll-age-slider::-moz-range-thumb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #e6eaf0);
  border: none;
  box-shadow:
    6px 6px 14px rgba(163, 177, 198, 0.6),
    -6px -6px 14px rgba(255, 255, 255, 1);
  cursor: grab;
}

.ll-age-slider::-moz-range-track {
  height: 14px;
  border-radius: 14px;
  background: #e0e5ec;
  box-shadow:
    inset 4px 4px 8px rgba(140, 160, 185, 0.55),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}

/* Endpoint labels below slider */
.ll-slider-endpoints {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding: 0 2px;
}

.ll-slider-endpoints span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #a0aec0;
}

/* ---------- Step Progress Bar ---------- */
.ll-step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.ll-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  opacity: 0.35;
  transition: all 0.3s ease;
  position: relative;
}

.ll-step.active {
  opacity: 1;
  transform: scale(1.1);
}

.ll-step.completed {
  opacity: 0.7;
}

.ll-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: white;
  border: 3px solid #e2e8f0;
  transition: all 0.3s ease;
}

.ll-step.active .ll-step-dot {
  border-color: var(--step-color, #5eb6d9);
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.ll-step.completed .ll-step-dot {
  background: var(--step-color, #5eb6d9);
  border-color: var(--step-color, #5eb6d9);
}

.ll-step-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ll-step.active .ll-step-name {
  color: #1a3a5c;
  font-weight: 800;
}

.ll-step-line {
  flex: 1;
  height: 3px;
  background: #e2e8f0;
  margin: 0 0.25rem;
  margin-bottom: 1rem;
  border-radius: 2px;
  transition: background 0.3s ease;
  min-width: 20px;
  max-width: 50px;
}

.ll-step-line.completed {
  background: linear-gradient(90deg, #5eb6d9, #319795);
}

/* ---------- Discipline Header ---------- */
.ll-discipline-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ll-back-btn {
  background: none;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #1a3a5c;
  transition: all 0.2s ease;
  font-family: inherit;
  flex-shrink: 0;
}

.ll-back-btn:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

.ll-discipline-info {
  flex: 1;
}

.ll-discipline-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a3a5c;
  margin: 0;
}

.ll-discipline-info span {
  font-size: 0.82rem;
  color: #8a9ab5;
  font-weight: 600;
}

.ll-checklist-hint {
  text-align: center;
  font-size: 0.82rem;
  color: #7a8ea8;
  font-weight: 500;
  margin: 0 auto 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(94, 182, 217, 0.08);
  border-radius: 20px;
  max-width: fit-content;
  letter-spacing: 0.01em;
}

/* ---------- Screening Recommendation Box ---------- */
.ll-screening-rec {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0.5rem 0;
  text-align: center;
  opacity: 0;
  animation: ll-fadeUp 0.5s 1.1s ease forwards;
}

.ll-screening-rec.recommend {
  background: linear-gradient(135deg, #ebf8ff 0%, #e6fffa 100%);
  border: 2px solid #5eb6d9;
}

.ll-screening-rec.strongly-recommend {
  background: linear-gradient(135deg, #fffaf0 0%, #fefcbf 100%);
  border: 2px solid #d69e2e;
}

.ll-screening-rec.no-concern {
  background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
  border: 2px solid #38a169;
}

.ll-screening-rec-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: #1a3a5c;
}

.ll-screening-rec-text {
  font-size: 0.88rem;
  color: #4a6a7a;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Milestone Items ---------- */
.ll-milestones-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.ll-milestone-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.ll-milestone-item:hover {
  border-color: #cbd5e0;
  background: #fafbfc;
}

.ll-milestone-item.checked {
  border-color: var(--disc-color, #5eb6d9);
  background: linear-gradient(135deg, rgba(94,182,217,0.06) 0%, rgba(94,182,217,0.02) 100%);
}

/* Custom checkbox */
.ll-checkbox {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2.5px solid #d0d8e4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.ll-milestone-item.checked .ll-checkbox {
  background: var(--disc-color, #5eb6d9);
  border-color: var(--disc-color, #5eb6d9);
  animation: ll-checkBounce 0.4s ease;
}

.ll-checkbox-mark {
  opacity: 0;
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  transition: all 0.2s ease;
  transform: scale(0);
}

.ll-milestone-item.checked .ll-checkbox-mark {
  opacity: 1;
  transform: scale(1);
}

@keyframes ll-checkBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  50% { transform: scale(0.9); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.ll-milestone-text {
  font-size: 0.92rem;
  color: #2d3748;
  line-height: 1.4;
  font-weight: 600;
}

.ll-milestone-item.checked .ll-milestone-text {
  color: #4a6a7a;
}

/* ---------- Progress Ring ---------- */
.ll-progress-section {
  text-align: center;
  padding: 1.5rem 0;
}

.ll-progress-ring-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 0.75rem;
}

.ll-progress-ring {
  transform: rotate(-90deg);
}

.ll-progress-ring-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 8;
}

.ll-progress-ring-fill {
  fill: none;
  stroke: #5eb6d9;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
}

.ll-progress-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ll-progress-count {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1a3a5c;
  line-height: 1;
}

.ll-progress-label {
  font-size: 0.7rem;
  color: #8a9ab5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Action Buttons ---------- */
.ll-btn-primary {
  display: block;
  width: 60%;
  margin: 0 auto;
  padding: 1rem 2rem;
  background: linear-gradient(145deg, #f8fbff, #e4e9f0);
  color: #1a2e44;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  text-align: center;
  box-shadow:
    8px 8px 20px rgba(163, 177, 198, 0.6),
    -8px -8px 20px rgba(255, 255, 255, 1);
}

.ll-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    10px 10px 24px rgba(163, 177, 198, 0.65),
    -10px -10px 24px rgba(255, 255, 255, 1);
  color: #1a2e44;
}

.ll-btn-primary:active {
  transform: translateY(1px);
  box-shadow:
    inset 4px 4px 10px rgba(163, 177, 198, 0.5),
    inset -4px -4px 10px rgba(255, 255, 255, 0.8);
}

.ll-btn-secondary {
  display: block;
  width: 60%;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  background: linear-gradient(145deg, #f8fbff, #e4e9f0);
  color: #1a2e44;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  text-align: center;
  box-shadow:
    5px 5px 14px rgba(163, 177, 198, 0.45),
    -5px -5px 14px rgba(255, 255, 255, 0.9);
}

.ll-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow:
    7px 7px 18px rgba(163, 177, 198, 0.5),
    -7px -7px 18px rgba(255, 255, 255, 1);
  color: #1a2e44;
}

.ll-btn-screening {
  width: 60%;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
  background: linear-gradient(145deg, #f8fbff, #e4e9f0);
  color: #1a2e44;
  border: none;
  box-shadow:
    6px 6px 16px rgba(163, 177, 198, 0.5),
    -6px -6px 16px rgba(255, 255, 255, 0.95);
}

.ll-btn-screening:hover {
  box-shadow:
    10px 10px 24px rgba(163, 177, 198, 0.65),
    -10px -10px 24px rgba(255, 255, 255, 1);
  color: #1a2e44;
}

.ll-btn-subtext {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 0.2rem;
}

.ll-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  opacity: 0;
  animation: ll-fadeUp 0.5s 1.3s ease forwards;
}

/* ---------- Results View (Compact, Animated) ---------- */
.ll-results-header {
  text-align: center;
  margin-bottom: 0.75rem;
}

.ll-results-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.25rem;
  animation: ll-emojiBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.575) forwards;
}

@keyframes ll-emojiBounce {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}

.ll-results-label {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 0.15rem;
  animation: ll-fadeUp 0.5s 0.2s ease both;
}

.ll-results-subtitle {
  font-size: 0.88rem;
  color: #5a7a8a;
  margin: 0;
  font-weight: 600;
  animation: ll-fadeUp 0.5s 0.3s ease both;
}

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

/* ---------- 2×2 Mini Donut Grid ---------- */
.ll-donut-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.75rem 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.ll-donut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  opacity: 0;
  transform: scale(0.5);
  animation: ll-donutPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.575) forwards;
}

.ll-donut-item:nth-child(1) { animation-delay: 0.4s; }
.ll-donut-item:nth-child(2) { animation-delay: 0.55s; }
.ll-donut-item:nth-child(3) { animation-delay: 0.7s; }
.ll-donut-item:nth-child(4) { animation-delay: 0.85s; }

@keyframes ll-donutPop {
  0% { opacity: 0; transform: scale(0.3); }
  70% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.ll-donut-svg-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}

.ll-donut-svg {
  transform: rotate(-90deg);
  width: 80px;
  height: 80px;
}

.ll-donut-bg {
  fill: none;
  stroke: #edf2f7;
  stroke-width: 7;
}

.ll-donut-fill {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.ll-donut-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.15rem;
  font-weight: 900;
  color: #1a3a5c;
}

.ll-donut-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #5a7a8a;
  text-align: center;
}

.ll-donut-emoji {
  font-size: 0.85rem;
}

/* ---------- Sparkle Effect ---------- */
@keyframes ll-sparkle {
  0% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
  100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

.ll-sparkle {
  position: absolute;
  pointer-events: none;
  font-size: 1rem;
  animation: ll-sparkle 0.6s ease forwards;
}

/* ---------- Confetti ---------- */
@keyframes ll-confetti-fall {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.ll-confetti-piece {
  position: fixed;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: ll-confetti-fall 2.5s ease-in forwards;
  z-index: 9999;
  pointer-events: none;
}

/* ---------- Page Hero Override ---------- */
.ll-page-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 50%, #3a7ab0 100%);
  padding: 2.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ll-page-hero .container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ll-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(94,182,217,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.ll-page-hero .ll-logo-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.ll-page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin: 0 0 0.25rem;
  position: relative;
  z-index: 1;
}

.ll-page-hero .ll-brand {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.ll-page-hero .ll-tagline {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.ll-page-hero .ll-description {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .ll-app {
    padding: 0 0.75rem 1.5rem;
  }

  .ll-slider-labels span {
    font-size: 0.6rem;
  }

  .ll-discipline-tabs {
    gap: 0.5rem;
  }

  .ll-tab-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .ll-page-hero h1 {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .ll-app {
    padding: 0 2rem 3rem;
  }
}

/* ---------- Activities View ---------- */
.ll-back-btn {
  background: none;
  border: none;
  color: #8a9bb5;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.ll-back-btn:hover {
  color: #1a2e44;
}

.ll-activities-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ll-activities-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a2e44;
  margin: 0 0 0.25rem;
}

.ll-activities-subtitle {
  color: #8a9bb5;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.ll-disc-group {
  margin-bottom: 1.25rem;
}

.ll-disc-group-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a2e44;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.ll-disc-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: #8a9bb5;
}

.ll-unchecked-item {
  margin-bottom: 0.5rem;
}

.ll-unchecked-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2e44;
  transition: all 0.2s ease;
  background: linear-gradient(145deg, #f8fbff, #e4e9f0);
  box-shadow:
    3px 3px 8px rgba(163, 177, 198, 0.35),
    -3px -3px 8px rgba(255, 255, 255, 0.85);
}

.ll-unchecked-text:hover {
  box-shadow:
    4px 4px 12px rgba(163, 177, 198, 0.45),
    -4px -4px 12px rgba(255, 255, 255, 0.95);
}

.ll-unchecked-text.active {
  box-shadow:
    inset 3px 3px 8px rgba(163, 177, 198, 0.35),
    inset -3px -3px 8px rgba(255, 255, 255, 0.85);
}

.ll-unchecked-dot {
  color: #8a9bb5;
  flex-shrink: 0;
}

.ll-toggle-arrow {
  margin-left: auto;
  color: #8a9bb5;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.ll-unchecked-text.active .ll-toggle-arrow {
  transform: rotate(180deg);
}

/* Activity cards — hidden by default, expand on click */
.ll-activity-cards {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0.5rem;
}

.ll-activity-cards.open {
  max-height: 600px;
  padding: 0.5rem;
}

.ll-activity-card {
  background: #f0f4f8;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  box-shadow:
    inset 2px 2px 6px rgba(163, 177, 198, 0.25),
    inset -2px -2px 6px rgba(255, 255, 255, 0.7);
}

.ll-activity-card-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.ll-activity-emoji {
  font-size: 1.2rem;
}

.ll-activity-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1a2e44;
}

.ll-activity-desc {
  font-size: 0.82rem;
  color: #4a6a7a;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.ll-activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: #8a9bb5;
  font-weight: 600;
}

.ll-activities-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(163, 177, 198, 0.2);
}

.ll-activities-footer p {
  color: #8a9bb5;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0;
}

.ll-no-activities {
  text-align: center;
  color: #8a9bb5;
  font-size: 0.95rem;
  padding: 2rem 0;
}

/* ── Clipboard Toast Notification ── */
.ll-clipboard-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a3a5c;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 420px;
  text-align: center;
}
.ll-clipboard-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
