/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  color: #222;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2rem;
}

.cta-button {
  background: #ff6f61;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: #ff4a3d;
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}
