body, html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'neue-haas-grotesk-text', sans-serif;
  background: #000;
}

a {
  color: #000;
  text-decoration: none;
  text-align: center;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.video-container {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
}
.bg-video {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 0;
  display: none;
}
#desktopVideo { display: block; }
#mobileVideo { display: none; }

@media (max-width: 768px) {
  #desktopVideo { display: none; }
  #mobileVideo { display: block; }
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 32px;
}
.nav-link {
  color: #E2BFBA;
  font-size: 16px;
  line-height: normal;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  text-align: center;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  background: #fff;
  width: 100%;
  position: absolute;
  left: 0; bottom: -2px;
  border-radius: 1px;
  transition: left 0.3s cubic-bezier(.77,0,.18,1), width 0.3s cubic-bezier(.77,0,.18,1);
}

.info-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  color: #000;
  z-index: 10;
  display: none;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 40px 0;
  background: rgba(226, 191, 186, 0.95);
}
.info-overlay.active {
  display: flex;
}
.info-content {
  max-width: 550px;
  margin: auto;
  font-size: 0.875rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
  font-style: normal;
}
.info-content .info-title {
  margin: 18px 0 6px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  border-bottom: 1px solid #000;
  display: inline-block;
  padding-bottom: 2px;
}
.info-content p { margin: 8px 0; }

.contributors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
  text-align: center;
}

.contributor-column p {
  margin: 2px 0;
  line-height: 1.2;
}

/* Mobile font size adjustments */
@media (max-width: 768px) {
  .nav-link {
    font-size: .7rem;
    color: #E2BFBA;
    border-bottom: none;
  }
  
  .info-overlay {
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 20px 0 !important;
    background: rgba(226, 191, 186, 0.95);
    color: #000;
    height: 100vh !important;
    min-height: 100vh !important;
  }
  
  .info-overlay.active {
    display: flex !important;
  }
  
  .info-content {
    font-size: 0.75rem;
    max-width: 85%;
    padding: 0 20px;
    margin-top: 20px;
    color: #000;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .info-overlay a {
    color: #000;
  }
  
  .info-content .info-title {
    margin: 14px 0 4px 0;
    font-size: 0.65rem;
    padding-bottom: 0px;
    color: #000;
    border-bottom: 1px solid #000;
  }
  
  .info-content .info-title:first-child {
    margin-top: 0;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .info-content p {
    margin: 6px 0;
    font-size: 0.65rem;
  }
  
  .info-content p:first-child {
    margin-top: 0;
  }
  
  .contributors-grid {
    gap: 8px;
    margin: 15px 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contributor-column p {
    margin: 1px 0;
    font-size: 0.65rem;
    line-height: 1.1;
  }
} 