body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  overflow: hidden;
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  transition: filter 0.3s ease;
  padding: 10px;
  box-sizing: border-box;
}
header {
  text-align: center;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5em;
  margin: 0;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 700; /* Elegant font weight */
}
.container {
  position: relative;
  z-index: 1;
}
button {
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}
button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
.message-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #ffffff, #f0f4f7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  z-index: 2; /* Ensure it's above the blur */
  display: none;
  animation: slideIn 0.5s ease;
  max-width: 90%;
  box-sizing: border-box;
}
.message-panel h2 {
  margin: 0 0 10px;
  font-size: 2em;
  font-weight: bold;
  color: #333;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.message-panel p {
  margin: 10px 0;
  font-size: 1.2em;
  line-height: 1.6;
  text-align: left;
  color: #555;
  animation: fadeInText 1.5s ease;
}
.message-panel ul {
  padding-left: 20px;
  text-align: left;
}
.message-panel button {
  background-color: #dc3545;
  margin-top: 10px;
}
.message-panel button:hover {
  background-color: #b12c36;
  transform: scale(1.1);
}
.blur {
  filter: blur(5px);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInText {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translate(-50%, -70%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }
  button {
    padding: 8px 16px;
    font-size: 0.9em;
  }
  .message-panel {
    font-size: 0.9em;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }
  button {
    padding: 6px 12px;
    font-size: 0.8em;
  }
  .message-panel {
    font-size: 0.8em;
    padding: 10px;
  }
}
