@font-face {
  font-family: 'Roxborough CF';
  src: url('fonts/roxborough-cf-regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Roxborough CF', Arial, sans-serif;
  background-color: #4684bf;
  color: white;
}

/* Landing Page */
#enter-page {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
}

.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

#enter-text {
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.3s;
}

#enter-text:hover {
  transform: scale(1.1);
}

/* Main Page */
#main-page {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
  padding: 0 20px;
}

.centered-content h1 {
  font-size: 5rem;
  margin-bottom: 48px;
}

.centered-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.centered-content p:last-child {
  margin-top: 40px;
  margin-bottom: 0;
}

#enter-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  padding: 16px 32px;
  font-size: 1.2rem;
  background: #fff;
  color: #4684bf;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
#enter-btn:hover {
  background: #4684bf;
  color: #fff;
  transform: scale(1.05);
}
