html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  color: #fff;
}

#app,
.home-shell {
  height: 100%;
}

.video-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  background: #000;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.inner {
  max-width: 900px;
}

.dj {
  margin-bottom: 10px;
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.title {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 700;
}

.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  text-align: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate-box {
  max-width: 720px;
}

.gate-title {
  margin-bottom: 14px;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gate-text {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.small {
  margin-top: 14px;
  font-size: 0.88rem;
  opacity: 0.72;
}

@media (max-width: 768px) {
  .dj {
    font-size: 1.4rem;
  }

  .title {
    font-size: 2.4rem;
  }

  .gate-title {
    font-size: 1.6rem;
  }
}
