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

body {
  font-family: "Maven Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0f172a;
  color: #f1f5f9;
  overflow: hidden;
  height: 100vh;
}

.container {
  display: flex;
  height: 100vh;
  position: relative;
}

.video-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  padding: 20px 0px;
  position: relative;
}
.video-wrapper video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .video-wrapper video {
    max-height: 90vh;
  }
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #389cd3;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.play-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: rgb(97.7654320988, 176.7777777778, 220.2345679012);
}
.play-overlay:active {
  transform: translate(-50%, -50%) scale(0.95);
}
.play-overlay svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.nav-panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 280px;
  background-color: rgba(1, 30, 50, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateX(280px);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}
.nav-panel.open {
  transform: translateX(0);
}

.nav-toggle {
  position: absolute;
  left: -50px;
  top: 20px;
  width: 50px;
  height: 50px;
  background-color: #389cd3;
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, opacity 0.5s ease;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.nav-toggle.faded {
  opacity: 0.3;
}
.nav-toggle:hover {
  background-color: rgb(39.1111111111, 128, 176.8888888889);
  opacity: 1 !important;
}
.nav-toggle .nav-icon {
  width: 24px;
  height: 2px;
  background-color: transparent;
  position: relative;
  display: block;
}
.nav-toggle .nav-icon::before, .nav-toggle .nav-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #f1f5f9;
  transition: transform 0.3s ease, top 0.3s ease;
}
.nav-toggle .nav-icon::before {
  top: -6px;
}
.nav-toggle .nav-icon::after {
  top: 6px;
}
.open .nav-toggle .nav-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.open .nav-toggle .nav-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-content {
  padding: 12px 16px;
  overflow-y: auto;
  height: 100%;
}
.nav-content h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #f1f5f9;
  letter-spacing: 0.5px;
}

.nav-list {
  list-style: none;
}
.nav-list li {
  margin-bottom: 2px;
}

.nav-item {
  width: 100%;
  background: none;
  border: none;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: #f1f5f9;
  text-align: left;
}
.nav-item:hover {
  background-color: rgba(37, 99, 235, 0.1);
  transform: translateX(4px);
}
.nav-item:active {
  background-color: rgba(37, 99, 235, 0.2);
}
.nav-item .nav-number {
  font-size: 13px;
  font-weight: 700;
  color: #389cd3;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.nav-item .nav-text {
  font-size: 17px;
  font-weight: 500;
  flex: 1;
}

@media (max-width: 768px) {
  .video-wrapper {
    padding: 10px 0px;
  }
  .video-wrapper video {
    border-radius: 8px;
  }
  .nav-panel {
    width: 100%;
    max-width: 320px;
    transform: translateX(100%);
  }
  .nav-toggle {
    left: -46px;
    width: 46px;
    height: 46px;
  }
}
.nav-content::-webkit-scrollbar {
  width: 6px;
}

.nav-content::-webkit-scrollbar-track {
  background: transparent;
}

.nav-content::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.3);
  border-radius: 3px;
}
.nav-content::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.5);
}

/*# sourceMappingURL=styles.css.map */
