:root {
  --black: #000;
  --white: #fff;
  --red: #d31313;
  --gray: #aaa;
  --font: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
}

.traverse {
  height: 2svh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  position: relative;

  a {
    text-decoration: none;
    color: white;
  }
}

.traverse .fa-solid:hover {
  color: tomato;
}

/* Header */
.bp-header {
  background-color: #0a0a0c;
  padding: 1.5rem 2rem;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.logo {
  height: 2rem;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: "Orbitron", sans-serif;
  position: relative;
  text-decoration: none;
  font-size: 1rem;
  color: #aaa;
  font-weight: 500;
  letter-spacing: 0.05rem;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background-color: #9b5de5;
  transition: width 0.3s ease;
}

.nav-link::before {
  right: 100%;
  margin-right: 0.5rem;
}

.nav-link::after {
  left: 100%;
  margin-left: 0.5rem;
}

.nav-link:hover::before,
.nav-link:hover::after {
  width: 0.5rem;
}

.next-btn {
  margin-left: auto;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.next-btn:hover {
  color: #c62828;
}

/* Container */
.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.left-section {
  flex: 1;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.content {
  text-align: center;
  max-width: 31.25rem;
  width: 100%;
}

.logo-img {
  width: 100%;
  max-width: 40rem;
  height: auto;
  margin-bottom: 1.25rem;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.875rem;
  line-height: 1.6;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.btn {
  padding: 0.75rem 1.5625rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 0.125rem solid var(--white);
  background: transparent;
  color: var(--white);
  transition: 0.3s ease all;
}

.btn.primary {
  background-color: var(--red);
  border: none;
}

.btn.primary:hover {
  opacity: 0.85;
}

.btn.secondary:hover {
  background-color: #222;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.thumb {
  text-align: center;
  font-size: 0.8rem;
}

.thumb img {
  width: 15rem;
  height: 20rem;
  object-fit: cover;
  border: 0.125rem solid #333;
  margin-bottom: 0.3125rem;
}

.right-section {
  flex: 1;
  background-color: #111;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.9) contrast(1.15);
}

.trailer-btn {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 0.0625rem solid white;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

.trailer-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer {
  width: 100%;
  padding: 2rem 3rem;
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.footer-logo {
  width: 6rem;
  height: auto;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
}

.footer-link {
  font-family: "Orbitron", sans-serif;
  color: #aaa;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}