* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1f3c88, #2b5876);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  text-align: center;
}

.container {
  max-width: 700px;
  width: 100%;
}

.card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  margin-bottom: 30px;
  animation: fadeIn 1s ease;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

.desc {
  font-size: 1.1em;
  margin-bottom: 25px;
  opacity: 0.9;
}

.progress-bar {
  background-color: rgba(255,255,255,0.2);
  border-radius: 10px;
  height: 20px;
  width: 80%;
  margin: 0 auto 30px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 65%;
  background-color: #ffd700;
  animation: loading 3s ease-in-out infinite;
}

.notify-form {
  margin-bottom: 25px;
}

.notify-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 8px;
  width: 60%;
  max-width: 300px;
  margin-top: 10px;
}

.notify-form button {
  margin-left: 10px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.contact a, .footer a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.footer {
  font-size: 0.9em;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-section {
  margin-bottom: 10px;
}

.socials a {
  display: inline-block;
  margin: 0 8px;
  font-size: 1em;
}

@keyframes loading {
  0%, 100% { width: 20%; }
  50% { width: 85%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
