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

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: black;
color: white;
font-family: Arial, Helvetica, sans-serif;
overflow-x: hidden;
}

.hero {
position: relative;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
background: black;
}

.background-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

.overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
}

.hero h1 {
font-size: 7rem;
letter-spacing: 14px;
margin-bottom: 20px;
text-shadow:
0 0 15px rgba(255, 255, 255, 0.6),
0 0 40px rgba(255, 0, 255, 0.4);
}

.hero p {
font-size: 1.4rem;
opacity: 0.95;
margin-bottom: 45px;
letter-spacing: 2px;
}

.enter-button {
display: inline-block;
padding: 18px 44px;
border: 2px solid #ff00ff;
color: white;
text-decoration: none;
border-radius: 6px;
background: rgba(255, 0, 255, 0.15);
transition: 0.35s;
}

.enter-button:hover {
background: #ff00ff;
box-shadow:
0 0 20px #ff00ff,
0 0 60px #ff00ff;
transform: translateY(-3px);
}

#about {
min-height: 100vh;
background: #050505;
}
