* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f0f2f5;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.construction-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

h1 {
  color: #333;
  margin-bottom: 1.5rem;
}

p {
  color: #666;
  margin-bottom: 2rem;
}

.progress-bar {
  width: 200px;
  height: 6px;
  background: #333333;
  border-radius: 3px;
  margin: 1rem auto;
  overflow: hidden;
}

.progress {
  width: 0%;
  height: 100%;
  background: #00ff00;
  animation: progress 2s ease-in-out infinite;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #333333;
  border-top: 4px solid #00ff00;
  border-radius: 50%;
  margin: 20px auto;
  animation: spin 1s linear infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.developer-gif {
  margin-top: 2rem;
  max-width: 300px;
  margin: 2rem auto 0;
}

.developer-gif img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.countdown {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #333;
}

.countdown span {
  background: #4CAF50;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0 5px;
}

.copyright {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #666;
  font-size: 0.9rem;
}