body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b0f1a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.logo {
  width: 80px;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  margin: 10px 0;
}

.subtitle {
  font-size: 18px;
  color: #aaa;
}

.stage {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

video {
  width: 100%;
  display: block;
}

.links {
  margin-top: 20px;
}

.links a {
  margin: 0 10px;
  color: #888;
  text-decoration: none;
}

.links a:hover {
  color: #fff;
}