* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #e6f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* BLOCK */
.chat-popup {
  width: 95%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* HEADER */
.chat-popup__header {
  background: #1da1f2;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-popup__title {
  font-weight: bold;
  font-size: 16px;
}

.chat-popup__close-icon {
  font-size: 18px;
  cursor: pointer;
}

/* BODY */
.chat-popup__body {
  padding: 16px;
  text-align: center;
  background: #fff;
}

.chat-popup__profile-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  border: 2px solid #1da1f2;
}

.chat-popup__status-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

/* PAYMENT FRAME */
.chat-popup__payment-frame {
  margin: 12px auto 6px;
  display: flex;
  justify-content: center;
}

.chat-popup__iframe {
  width: 80%;
  height: 100px;
  border-radius: 30px;
  border: none;
  color: #fff;
}

.chat-popup__trial-text {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  margin-top: 8px;
}

/* SUGGESTED MATCHES */
.chat-popup__suggested {
  margin-top: 10px;
  padding: 10px 10px 20px;
  width: 100%;
  background: #f0f5fb;
  border-top: 1px solid #dde7f2;
  border-radius: 12px 12px 0 0;
}

.chat-popup__suggested-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a73e8;
  text-align: center;
  font-size: 16px;
}

/* MATCH LIST */
.chat-popup__matches {
  display: flex;
  justify-content: space-around;
  gap: 8px;
}

/* INDIVIDUAL MATCH */
.chat-popup__match {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  color: #444;
  cursor: pointer;
}

.chat-popup__match-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 4px;
  border: 2px solid #1da1f2;
}

.chat-popup__match-label {
  font-size: 13px;
  color: #444;
}

