/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0b1d3a, #1e3f66); /* deep navy gradient */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 2.5rem;
  background-color: #ffffff; /* bright white */
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid #99ccff; /* soft blue border */
  max-width: 500px;
}

h1 {
  font-size: 2.8rem;
  color: #1e3f66; /* navy blue */
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px #cce6ff;
}

p {
  font-size: 1.2rem;
  color: #336699; /* medium blue */
  margin-bottom: 1rem;
}

.container::after {
  content: "✨ We are working on it!";
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: #66ccff; /* cheerful light blue */
}
