.chat-fullpage-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a0033, #2a004d, #110022);
  position: relative;
  overflow: hidden;
  color: white;
}

.chat-bg-v2 {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.2) 0%, transparent 60%);
  z-index: 1;
}

.chat-container-v2 {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 2rem;
}

.chat-card-v2 {
  background: rgba(20, 10, 40, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 32px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.6);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pulse-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

.big-name {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  background: linear-gradient(90deg, #f472b6, #c084fc, #a78bfa);

  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.tagline {
  font-size: 1.35rem;
  color: #d8b4fe;
  margin-bottom: 2rem;
}

.chat-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0d1ff;
  margin-bottom: 3rem;
}

.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.btn-main {
  background: linear-gradient(90deg, #ec4899, #c026d3);
  color: white;
  padding: 1.3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 15px 25px -5px rgb(236 72 153 / 40%);
  transition: all 0.4s ease;
}

.btn-main:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 30px -8px rgb(236 72 153 / 50%);
}



.extra-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #c4b5fd;
}

.icon {
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 480px) {
  .chat-card-v2 { padding: 3rem 1.8rem; }
  .big-name { font-size: 2.6rem; }
}