* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(135deg, #e9eef7, #ffffff),
    repeating-linear-gradient(
      to right,
      rgba(0,0,0,0.02) 0px,
      rgba(0,0,0,0.02) 1px,
      transparent 1px,
      transparent 120px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,0.02) 0px,
      rgba(0,0,0,0.02) 1px,
      transparent 1px,
      transparent 120px
    );
  overflow: hidden;
}

/* SOFT BLOBS */
.background-blobs::before,
.background-blobs::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: -1;
}

.background-blobs::before {
  background: #cbb4ff;
  top: -100px;
  left: -100px;
}

.background-blobs::after {
  background: #ffc6e0;
  bottom: -120px;
  right: -100px;
}

/* PHONE CARD */
.phone-container {
  width: 390px;
  height: 780px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(30px);
  border-radius: 45px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 25px;
}

.header h2 {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
}

.header p {
  font-size: 15px;
  color: #666;
}

/* AI ORB */
.ai-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a18cd1, #6a82fb);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 40px rgba(106,130,251,0.4);
  animation: float 4s ease-in-out infinite;
  margin: 0 auto 25px auto;
}

.eyes {
  width: 40px;
  height: 20px;
  background: white;
  border-radius: 20px;
  position: relative;
}

.eyes::before,
.eyes::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  background: #6a82fb;
  border-radius: 5px;
  top: 5px;
}

.eyes::before { left: 8px; }
.eyes::after { right: 8px; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* PROMPT BUTTONS */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.quick-actions button {
  padding: 12px 14px;
  border-radius: 20px;
  border: none;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.quick-actions button:hover {
  transform: scale(1.03);
  background: white;
}

/* CHAT AREA */
.chat-area {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.message {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 15px;
  max-width: 80%;
  font-size: 14px;
}

.user {
  background: #6a82fb;
  color: white;
  align-self: flex-end;
}

.bot {
  background: rgba(255,255,255,0.9);
}

/* INPUT */
.input-area {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 30px;
  padding: 10px 14px;
  box-shadow:
    0 15px 35px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.attach {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  margin-right: 10px;
  transition: 0.2s;
}

.attach:hover {
  background: rgba(0,0,0,0.1);
}

.input-area input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 6px;
  font-size: 14px;
}

.input-area button {
  border: none;
  background: #6a82fb;
  color: white;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
}