body{margin:0;}
.hero-splash {
  height: 100vh;
max-width:600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
}
.overlay {
text-align:left;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(15,23,42,0.9) 80%);
}
.content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.main-title {
  font-size:6.5rem;
  font-weight:900;
  letter-spacing:8px;
  margin: 0 0 10px 0;
  background: linear-gradient(90deg,#60a5fa,#c084fc,#f472b6);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.actor {
  font-size: 3rem;
  text-shadow: 0 0 40px rgba(96,165,250,0.6);
}
.subtitle {
  font-size: 1.55rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.concept-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 50px 0;
}

.concept-item {
  text-align: center;
}

.number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #67e8f9;
  text-shadow: 0 0 20px #22d3ee;
}

.text {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-top: 8px;
  opacity: 0.85;
}

.tagline {
  font-size: 1.25rem;
  margin: 30px 0 50px;
  font-weight: 500;
  opacity: 0.9;
}

.enter-btn {
  padding: 16px 48px;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border: none;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.enter-btn:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

