body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle, #1a1a1a, #000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.frame {
  width: 320px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,150,200,0.35);
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

input {
  padding: 10px;
  border-radius: 10px;
  border: none;
  width: 200px;
}

button {
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: #ff9acb;
}