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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #333;
}

.container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 60px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 1.8rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.status {
  display: inline-block;
  background: #f7fafc;
  color: #667eea;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
  border: 2px solid #e2e8f0;
}

p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.footer {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
  color: #a0aec0;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .container {
    padding: 40px 30px;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
}
