/* ===== THE VINE FAMILY 🌿 - MAIN STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #0d0515 0%, #150825 30%, #1a0a2e 50%, #120620 70%, #0d0515 100%);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  padding: 14px 24px;
  background: rgba(13,5,21,0.7);
  backdrop-filter: blur(20px) saturate(200%);
  border-bottom: 1px solid rgba(124,58,237,0.15);
  transition: all 0.3s;
}
.navbar.scrolled { background: rgba(10,3,18,0.9); backdrop-filter: blur(24px) saturate(220%); }
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #C084FC; font-family: Georgia, serif; font-weight: 700; font-size: 1.2rem; }
.navbar-brand img { height: 38px; width: 38px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 500; font-size: 0.88rem; padding: 6px 14px; border-radius: 8px; transition: all 0.3s; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(124,58,237,0.2); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 10001; }
.hamburger span { width: 28px; height: 2.5px; background: #C084FC; border-radius: 4px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: rgba(13,5,21,0.92); backdrop-filter: blur(30px); flex-direction: column; align-items: center; justify-content: center; gap: 20px; transition: right 0.4s; padding: 80px 32px; border-left: 1px solid rgba(255,255,255,0.04); }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 9999; display: none; }
  .nav-overlay.open { display: block; }
}

/* Scroll Progress */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, #7C3AED, #C084FC, #A855F7); z-index: 10001; width: 0%; transition: width 0.1s; box-shadow: 0 0 16px rgba(124,58,237,0.4); }

/* Glass Card */
.glass-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: all 0.4s;
}
.glass-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.3); box-shadow: 0 12px 48px rgba(124,58,237,0.15); }

/* Page Title */
.page-title { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; background: linear-gradient(135deg, #C084FC, #A855F7, #7C3AED); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-divider { width: 80px; height: 3px; background: linear-gradient(90deg, #7C3AED, #C084FC, #7C3AED); margin: 0 auto 24px; border-radius: 4px; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: linear-gradient(135deg, #7C3AED, #6D28D9); color: #fff; border: none; border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 20px rgba(124,58,237,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(124,58,237,0.5); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: transparent; color: #C084FC; border: 2px solid rgba(124,58,237,0.4); border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer; text-decoration: none; transition: all 0.3s; }
.btn-outline:hover { background: rgba(124,58,237,0.15); border-color: #C084FC; transform: translateY(-3px); box-shadow: 0 0 24px rgba(124,58,237,0.2); }

/* Hero */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 60px; position: relative; overflow: hidden; }

/* Particles */
.particle { position: fixed; pointer-events: none; z-index: 0; border-radius: 50%; animation: float-particle linear infinite; }
@keyframes float-particle { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.4; } 90% { opacity: 0.4; } 100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; } }
.leaf-float { position: fixed; pointer-events: none; z-index: 0; font-size: 1.2rem; animation: float-leaf linear infinite; opacity: 0.15; }
@keyframes float-leaf { 0% { transform: translateY(110vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.2; } 90% { opacity: 0.2; } 100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; } }

/* Profile Image */
.profile-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; object-position: center 25%; border: 3px solid rgba(124,58,237,0.4); box-shadow: 0 0 40px rgba(124,58,237,0.2), 0 0 80px rgba(124,58,237,0.08); transition: all 0.4s; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)); filter: contrast(1.06) brightness(1.06); }
.profile-img:hover { transform: scale(1.08); border-color: #C084FC; box-shadow: 0 0 60px rgba(124,58,237,0.3), 0 0 100px rgba(124,58,237,0.12); }

/* Value Card */
.value-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
.value-card:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(124,58,237,0.3); box-shadow: 0 0 30px rgba(124,58,237,0.12); }
.value-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }

/* Activity Card */
.activity-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 24px 20px; display: flex; align-items: center; gap: 18px; transition: all 0.3s; }
.activity-card:hover { transform: translateX(6px); border-color: rgba(124,58,237,0.25); box-shadow: 0 8px 32px rgba(124,58,237,0.08); }
.activity-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(5,150,105,0.12)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }

/* Gallery */
.gallery-item { position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(124,58,237,0.5), transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.9rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }

/* Testimonial */
.testimonial-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 32px; position: relative; transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(124,58,237,0.08); }
.testimonial-quote { font-size: 3rem; color: #C084FC; opacity: 0.2; position: absolute; top: 16px; left: 24px; font-family: Georgia, serif; line-height: 1; }

/* Form */
.form-input { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; color: #fff; font-size: 1rem; transition: all 0.3s; outline: none; }
.form-input:focus { border-color: #C084FC; box-shadow: 0 0 0 3px rgba(124,58,237,0.12); }
.form-input::placeholder { color: rgba(255,255,255,0.35); }
textarea.form-input { resize: none; }

/* Footer */
.footer { background: linear-gradient(135deg, #0a0312, #0d0515, #0a0312); border-top: 1px solid rgba(255,255,255,0.04); padding: 60px 24px 0; position: relative; }
.footer::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #7C3AED, #C084FC, #7C3AED, transparent); }

/* Back to Top */
#back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background: rgba(124,58,237,0.15); backdrop-filter: blur(12px); border: 1px solid rgba(124,58,237,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #C084FC; cursor: pointer; z-index: 9990; opacity: 0; visibility: hidden; transition: all 0.3s; }
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: #7C3AED; color: #fff; transform: translateY(-4px); }

/* Lightbox */
#lightbox { position: fixed; inset: 0; z-index: 1000000; background: rgba(0,0,0,0.92); backdrop-filter: blur(16px); display: none; align-items: center; justify-content: center; padding: 40px; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 16px; box-shadow: 0 20px 80px rgba(0,0,0,0.6); animation: li-in 0.3s; }
@keyframes li-in { 0%{transform:scale(0.9);opacity:0} 100%{transform:scale(1);opacity:1} }
#lightbox-close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 2.5rem; cursor: pointer; transition: transform 0.3s; }
#lightbox-close:hover { transform: rotate(90deg); }

/* Loading */
#loader { position: fixed; inset: 0; z-index: 100000; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #0d0515, #1a0a2e); transition: opacity 0.8s, visibility 0.8s; }
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-icon { font-size: 4rem; animation: pulse-glow 1.5s ease-in-out infinite; }
@keyframes pulse-glow { 0%,100%{text-shadow:0 0 20px rgba(192,132,252,0.5);transform:scale(1)} 50%{text-shadow:0 0 40px rgba(192,132,252,0.8);transform:scale(1.05)} }
.loader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-top: 24px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #7C3AED, #C084FC); animation: load-fill 2s ease forwards; }
@keyframes load-fill { 0%{width:0%} 100%{width:100%} }

/* Social Icon */
.social-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; text-decoration: none; }
.social-icon:hover { transform: translateY(-3px); }

/* Utility */
.container { max-width: 1200px; width: 100%; margin: 0 auto; position: relative; z-index: 2; }
section { padding: 100px 24px; position: relative; }
@media (max-width: 768px) { section { padding: 70px 16px; } .profile-img { width: 140px; height: 140px; } }

/* ===== FELLOWSHIP FEATURES ===== */
.feature-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(5,150,105,0.05));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 20px 60px rgba(124,58,237,0.15), 0 0 40px rgba(5,150,105,0.08);
}
.feature-card:hover::before { opacity: 1; }
.feature-card.neon-hover:hover {
  border-color: #C084FC;
  box-shadow: 0 0 20px rgba(192,132,252,0.2), 0 0 40px rgba(192,132,252,0.1), 0 0 60px rgba(5,150,105,0.05);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(5,150,105,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: all 0.4s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 30px rgba(124,58,237,0.2);
}

/* Notification Bell */
.notif-bell {
  position: relative;
  display: inline-flex;
  animation: bell-ring 2s ease-in-out infinite;
}
@keyframes bell-ring {
  0%, 50%, 100% { transform: rotate(0deg); }
  5%, 15% { transform: rotate(15deg); }
  10%, 20% { transform: rotate(-15deg); }
}
.notif-badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  background: #EF4444;
  border-radius: 20px;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  padding: 0 5px;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.notif-popup {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.4s;
  animation: notif-slide 0.5s ease-out;
}
@keyframes notif-slide {
  0% { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.notif-popup:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.2);
  transform: translateX(6px);
}
.notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34D399;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,211,153,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.notif-time {
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
  margin-left: auto; white-space: nowrap;
}

/* Progress Bar */
.progress-track {
  width: 100%; height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #7C3AED, #C084FC, #34D399);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 20px;
  background: rgba(255,255,255,0.3);
  filter: blur(4px);
}
.progress-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.progress-label span:first-child {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
}
.progress-label span:last-child {
  font-size: 0.85rem; font-weight: 700; color: #C084FC;
}

/* Media Card */
.media-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.4s;
  cursor: pointer;
}
.media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5,150,105,0.3);
  box-shadow: 0 12px 40px rgba(5,150,105,0.1);
}
.media-thumb {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(5,150,105,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: all 0.4s;
}
.media-card:hover .media-thumb {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(124,58,237,0.2);
}
.media-info { flex: 1; }
.media-info h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.media-info p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.media-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  border: none; color: #C084FC;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  font-size: 0.9rem;
}
.media-btn:hover {
  background: #7C3AED; color: #fff;
  transform: scale(1.15);
}

/* Chat */
.chat-bubble {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  animation: chat-in 0.4s ease-out;
}
@keyframes chat-in {
  0% { transform: translateY(10px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.chat-bubble.received {
  background: rgba(124,58,237,0.12);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-bubble.sent {
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(5,150,105,0.15));
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-bubble .time {
  font-size: 0.65rem; color: rgba(255,255,255,0.3);
  margin-top: 4px; text-align: right;
}
.chat-input-area {
  display: flex; gap: 10px; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  padding: 6px 6px 6px 18px;
}
.chat-input-area input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  color: #fff;
  font-size: 0.9rem;
}
.chat-input-area input::placeholder { color: rgba(255,255,255,0.3); }
.chat-send-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #059669);
  border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(124,58,237,0.3);
}
.chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
}
.chat-online {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34D399;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
.typing-indicator {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 16px;
  background: rgba(124,58,237,0.08);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  max-width: 60px;
}
.typing-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: typing-bounce 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); background: #C084FC; }
}

/* System Card */
.system-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.system-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.system-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 20px 60px rgba(124,58,237,0.12);
}
.system-card:hover::before { opacity: 1; }
.system-card .icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.4s;
}
.system-card:hover .icon { transform: scale(1.2) rotate(-5deg); }
.system-card h3 { font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.system-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Counters */
.counter-item { text-align: center; }
.counter-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #C084FC, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.counter-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Fellowship BG */
.fellowship-bg { position: relative; }
.fellowship-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(124,58,237,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(5,150,105,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(168,85,247,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Subsections */
.feature-subsection { margin-bottom: 80px; }
.feature-subsection:last-child { margin-bottom: 0; }
.subsection-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.subsection-desc { color: rgba(255,255,255,0.4); font-size: 0.95rem; margin-bottom: 32px; }

@media (max-width: 768px) {
  .feature-card { padding: 20px 16px; }
  .chat-bubble { max-width: 90%; }
  .counter-number { font-size: 2.2rem; }
}
