/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background Style */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('under_construction.jpg') center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1;
}

/* Main Content Container */
.container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
  background: rgba(0, 0, 0, 1);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Headings */
.title {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #ffcb00; /* Tow-truck yellow */
}

.subtitle {
  font-size: 1.5rem;
  color: #ddd;
  margin-bottom: 1rem;
}

/* Message and Info */
.message {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info p {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.info a {
  color: #ffcb00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info a:hover {
  color: #fff;
}

/* Footer */
.footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 600px) {
  .title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.3rem;
  }
  .message {
    font-size: 1rem;
  }
}
