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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
  min-height: 100vh;
}

.coming-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.coming-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: #111;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.coming-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.back-link {
  display: inline-block;
  text-decoration: none;
  color: #ffd200;
  font-weight: 600;
  border: 2px solid #ffd200;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.back-link:hover {
  background: #ffd200;
  color: #111;
}
