* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  height: 100%;
  font-family: 'Bebas Neue', sans-serif;
  background: #dedede;
  overflow: hidden;
}

.split-page {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  position: relative;
}

.half {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: .5rem;
}

.left {
  background-color: #081a26;
  align-items: flex-end;
}

.right {
  background-color: #dedede;
  align-items: flex-start;
}

.label {
  font-size: 11vw;
  text-transform: uppercase;
  margin: 0;
  padding: 0 0.3rem;
  white-space: nowrap;
  line-height: 1;
}

.left-text {
  color: #dedede;
  text-align: right;
}

.right-text {
  color: #081a26;
  text-align: left;
}

.video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1024px;
  z-index: 10;
}

video {
  width: 100%;
  border-radius: 8px;
  border: none;
  display: block;
}

.footer-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #dedede;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0.8rem 0;
  gap: 1rem;
  z-index: 20;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-link {
  color: #081a26;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0.3rem;
  border-radius: 4px;
  width: 2rem;
  height: 2rem;
}

.footer-link:hover {
  color: #081a26;
  background: rgba(8, 26, 38, 0.1);
}

.footer-link i {
  font-size: 1.1rem;
  color: #081a26;
}

.footer-link .x-icon {
  width: 2rem;
  height: 2rem;
  color: #081a26;
}

.footer-link .linkedin-icon {
  width: 2rem;
  height: 2rem;
  color: #081a26;
}

.footer-link span {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
