/* ===== BACKGROUND ===== */
.content {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f7f1, #baddcf, #f8fefb);
  font-family: 'Helvetica', Arial, sans-serif;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

/* Animated background bubbles */
.bubble-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

/* ===== MESSAGE CONTAINER ===== */
.message-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MESSAGE BUBBLE DESIGN ===== */
.message-bubble {
  background: white;
  border-radius: 32px;
  padding: 40px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Message tail/arrow */
.message-bubble::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 40px;
  width: 30px;
  height: 30px;
  background: white;
  transform: rotate(45deg);
  border-radius: 8px 0 0 0;
  box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.05);
}

/* ===== ICON SECTION ===== */
.message-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 25px auto;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
  }
}

.message-icon i {
  font-size: 40px;
  color: white;
}

/* ===== MESSAGE CONTENT ===== */
.message-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  text-align: center;
}

.message-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
  margin-bottom: 25px;
}

.message-text p {
  margin-bottom: 12px;
}

/* ===== VERIFICATION STATUS ===== */
.verification-status {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 15px 20px;
  border-radius: 12px;
  margin: 25px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.verification-status i {
  font-size: 20px;
  color: #f59e0b;
}

.verification-status span {
  font-size: 14px;
  color: #78350f;
  flex: 1;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(15deg); }
  20%, 40%, 60%, 80% { transform: rotate(-10deg); }
}

/* ===== LOADING SPINNER ===== */
.spinner-small {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== FOOTER NOTE ===== */
.footer-note {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .message-bubble {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .message-bubble::before {
    left: 30px;
  }
  
  .message-icon {
    width: 60px;
    height: 60px;
    margin-top: -45px;
  }
  
  .message-icon i {
    font-size: 28px;
  }
  
  .message-title {
    font-size: 20px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .btn-action {
    justify-content: center;
  }
}