* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff4d6d;
}

nav a {
  margin-left: 20px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
}

.hero {
  background: linear-gradient(to right, #ff6ec7, #ff4d6d);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.profiles {
  padding: 60px 20px;
  text-align: center;
}

.profiles h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #ff4d6d;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.profile-card {
  background: #ffe4ec;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: scale(1.05);
}

.profile-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
}

.profile-card h3 {
  font-size: 1.3rem;
  color: #ff4d6d;
}

.profile-card p {
  font-size: 0.95rem;
  margin: 10px 0 20px;
}

.btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff4d6d, #ff6ec7);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

footer {
  padding: 20px;
  text-align: center;
  background: #fff0f5;
  font-size: 0.9rem;
}
/* Popup Chat Styles */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #fff;
  border: 2px solid #f05a8d;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  text-align: center;
  animation: slideUp 0.6s ease;
}

.chat-popup h4 {
  color: #f05a8d;
  margin-bottom: 10px;
  font-size: 18px;
}

.chat-popup p {
  font-size: 14px;
  color: #333;
  margin: 0 0 10px 0;
}

.chat-btn {
  background-color: #f05a8d;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
}

.close-chat {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #888;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fake-users {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

.fake-users span {
  display: inline-block;
  margin-right: 8px;
}
