/* Inline styles for demonstration; move to style.css in production */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  height: 100%;
}
/* Added overflow: hidden to body to prevent scrollbars if necessary */
body {
  overflow: hidden;
}
.video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  /* Added object-fit to maintain aspect ratio */
  object-fit: cover;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  width: 100%;
}
.logo {
  margin-bottom: 30px;
}
.logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
}
h1 {
  font-size: 3em;
  margin-bottom: 20px;
}
.links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.links a {
  display: block;
  margin: 10px 0;
  padding: 15px 30px;
  font-size: 1.5em;
  color: #fff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 5px;
  transition: background-color 0.3s, border-color 0.3s;
  width: fit-content;
  cursor: pointer;
}
.links a:hover {
  background-color: rgba(255, 255, 255, 0.4);
  border-color: #ffcc00;
}
@media (max-width: 768px) {
  .video-background {
      display: none;
  }
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/html/phone_background.jpg') center center / cover no-repeat;
    z-index: -2;
}
}
