:root {
  --background: #111111;
  --foreground: #ffffff;
}

/*@media (prefers-color-scheme: dark) {*/
/*  :root {*/
/*    --background: #0a0a0a;*/
/*    --foreground: #ededed;*/
/*  }*/
/*}*/

body {
  color: var(--foreground);
  background: var(--background);
  font-family: Inter, Helvetica, sans-serif;
}

body.with_background {
  background-image: url("/static/assets/background.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-attachment: scroll;
}


.outlined-container {
  padding: 24px 30px;
  border: 4px SOLID #f1f1f1;
}

.outlined-container--active {
  border: 4px SOLID #555555;
}

.outlined-light-container {
  padding: 24px 30px;
  border: 1px SOLID #f1f1f1;
}

.shaded-container {
  padding: 24px 30px;
  background-color: #f9f9f9;
}

.container-mini {
  padding: 14px 20px;
}

.history {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
}

.history::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ccc;
}

.entry {
  display: flex;
  align-items: flex-start;
  padding-left: 60px;
  position: relative;
  flex-wrap: wrap;
}

.entry::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 11px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #999999;
  border-radius: 50%;
  z-index: 1;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 4px;
  margin-right: 6px;
  margin-top: 5px;
  color: #fff;
}

.badge.new {
  background-color: #00b67a;
}

.badge.announcement {
  background-color: #6e46ff;
}

.images img {
  max-width: 100px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.slideshow-menu-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.slideshow-menu-item p {
  padding: 8px 12px;
  color: #ccc;
  transition: color 0.3s ease, transform 0.2s ease;
  margin: 0;
  position: relative;
  z-index: 1;
}

.slideshow-menu-item:hover p {
  color: #fff;
  transform: translateY(-2px);
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #2a2a2a;
  border-radius: 8px;
  z-index: 0;
}

.slideshow-menu-item.active .progress-bar {
  width: 0%;
  animation: progress 5s linear forwards;
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.slideshow-image.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.pricing-cards {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 600px;
}

.pricing-card--primary {
  position: absolute;
  left: 47%;
  top: 50%;
  transform: translate(-100%, -50%);
  margin-left: -30px; /* Half of overlap amount for centering */
  width: 380px;
  background: #191919;
  border-radius: 16px;
  /* padding: 60px 50px; */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.pricing-card--secondary {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-40%, -50%);
  margin-left: 0px; /* Half of overlap amount for centering */
  width: 470px;
  background: #111111;
  border-radius: 16px;
  border: 5px solid #191919;
  /* padding: 70px 60px; */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  z-index: 2;
}




@media (max-width: 1000px) {
  body.with_background {
    background-size: auto 600px;
    background-position: center top;
  }

  .slideshow-menu{
      flex-direction: column;
  }

  .pricing-cards {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .pricing-card--primary {
    position: unset;
    left: unset;
    top: unset;
    transform: unset;
    margin-left: 0;
    width: 100%;
    margin-bottom: 20px;
  }

  .pricing-card--secondary {
    position: unset;
    left: unset;
    top: unset;
    transform: unset;
    margin-left: 0px;
    width: 100%;
  }

}