/* Video background styles */
#myVideo {
  position: fixed;
  top: -5%; /* Aligns the video to match the original look */
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%);
  background: url('image/static.jpg') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}

/* Top section styles */
.contenttop {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  text-align: center;
  padding: 5px 0; /* Reduced padding to match original height */
  z-index: 10;
}

.contenttop h2 {
  margin: 4px 0; /* Adjusted margins for tighter layout */
  font-family: Lucida Console;
  font-size: 24px;
}

/* Bottom section styles */
.contentbottom {
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
}

.leftSection, .rightSection {
  width: 48%;
  text-align: center;
}

/* Logo and unselectable text */
.lustboundlogo {
  display: block;
  margin: 0 auto;
  margin-bottom: -10px;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-touch-callout: none;
}

p.unselectable {
  margin: 4px 0; /* Reduced spacing for compact layout */
  font-family: Lucida Console;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Button styles */
.button {
  border: none;
  border-radius: 8px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  font-family: Lucida Console;
  width: 146px;
  height: 52px;
}

.link {
  background-color: #252525;
  color: white;
  border: 2px solid #252525;
}

.link:hover {
  background-color: #e5e5e5;
  color: white;
  border: 2px solid #e5e5e5;
}

/* Anchor styles */
a:link, a:visited, a:hover, a:active {
  color: #ce5775;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #ff9187;
}
