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

body {
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80');
  background-size: cover;
  background-position: center;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 50px 60px;
  border-radius: 16px;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  animation: fadeIn 1.5s ease-in-out;
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #9be15d, #00e3ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.views {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 25px;
  border-radius: 10px;
  display: inline-block;
  backdrop-filter: blur(4px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}