/* 🌐 Base Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #111;
  color: #f2f2f2;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.form-popup-message {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  border-left: 5px solid #007aff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  z-index: 10000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-popup-message.show {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

