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

html, body {
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Bebas Neue', sans-serif;
  color: white;
  background: #000;
}

.page-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.4); 
  transition: filter 0.5s ease;
}


/* Header */
.expanding-header {
  position: relative;
  width: 100%;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.logo-center {
  position: absolute;
  top: 0;
  z-index: 3;
  cursor: pointer;
  margin-top: 2.9rem;
}

.logo-center img {
  width: 3rem;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-center:hover img {
  transform: scale(1.1);
}

.logo-center img:active {
  opacity: 0.8;
  width: 2.8rem;
}

.nav-expand-box {
  margin-top: 2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  opacity: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1;
  transition: width 1.2s ease, opacity 0.8s ease;
}

.nav-expand-box.open {
  width: 90%;
  opacity: 1;
}

.nav-left {
  display: flex;
  gap: 4rem;
}

.nav-left a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  position: relative;
}

.nav-left a::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  width: 0%;
  height: 0.125rem;
  background-color: white;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.nav-left a:hover::after {
  width: 100%;
}

.nav-left a:hover {
  color: white;
  transform: scale(1.05);
  transition: ease 0.3s;
}

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

.nav-right button {
  font-family: 'Bebas Neue', sans-serif;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 0.5rem 2rem;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-right button:hover {
  background: white;
  color: black;
}

/* Footer */
footer {
  background-color: rgb(49, 49, 49);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 3rem;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.footer-bottom-left {
  justify-content: flex-start;
  gap: 0.6rem;
}

.footer-bottom-center {
  justify-content: center;
  gap: 5rem;
}

.footer-bottom-right {
  justify-content: flex-end;
}

.footer-logo-sm {
  height: 1.875rem;
}

.footer-bottom-center a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-bottom-center a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease, left 0.3s ease;
}

.footer-bottom-center a:hover {
  color: white;
  transform: scale(1.05);
}

.footer-bottom-center a:hover::after {
  width: 100%;
  left: 0;
}

.footer-bottom-right a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-bottom-right a:hover {
  text-decoration: underline;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 0.5rem 0 1rem;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
}
