body {
  margin: 0;
  background: #f2f2f2;
  font-family: sans-serif;
  color: #111;
}

.enter-screen video {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enter-controls {
  position: fixed;
  bottom: 40px;
  left: 40px;
}

.enter-controls a {
  margin-right: 20px;
  font-size: 20px;
  text-decoration: none;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 10px 20px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 180px;
  height: 100%;
  background: #f0f0f0;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}

nav a {
  padding: 12px 20px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

main {
  margin-left: 200px;
  padding: 40px;
}


.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.release-card {
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.video-grid iframe {
  width: 100%;
  height: 200px;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}


