
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(120deg, #fbc02d, #ffffff);
  background-attachment: fixed;
  background-size: cover;
  color: #333;
  overflow-x: hidden;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.8);
  min-height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 900px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: fadeIn 1.5s ease-in;
}

.logo {
  width: 160px;
  animation: slideDown 1s ease-out;
}

h1 {
  color: #222;
  font-size: 2.8em;
  margin-top: 10px;
}

p {
  font-size: 1.2em;
  margin: 15px 0;
}

#countdown {
  font-size: 2.2em;
  margin: 30px 0;
  color: #d32f2f;
  font-weight: bold;
  animation: pulse 1.2s infinite alternate;
}

.contact {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 15px;
  margin-top: 35px;
  text-align: left;
}

.contact h2 {
  color: #fbc02d;
  text-align: center;
}

.contact a {
  color: #1976d2;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.social {
  text-align: center;
  margin-top: 10px;
}

.map {
  margin-top: 30px;
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
