* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f0f0;
  color: #333;
}

.maintenance-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, #e0e0e0, #ffffff);
}

.content {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
  width: 100px;
  margin-bottom: 20px;
}

.content h1 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.countdown div {
  background: #f7f7f7;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.countdown span {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #444;
}

.countdown small {
  font-size: 0.75rem;
  color: #666;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.socials {
  margin-top: 20px;
}

.socials a {
  font-size: 1.5rem;
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.socials a:hover {
  transform: scale(1.2);
}
