* {
  font-family: "Jost", Arial, sans-serif;
  box-sizing: border-box;
}

body, html {
  padding: 0;
  margin: 0;
}

body {
  background-color: #191a21;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

button {
  outline: none;
  border: none;
  padding: 10px 20px;
  background-color: #4cffc6;
  font-size: 18px;
  color: black;
  border-radius: 10px;
  cursor: pointer;
}

#content {
  width: min(1600px, 60vw);
  margin: 0 auto;
  flex: 1;
  border-radius: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 16px;
  align-items: center;
}

.carousel-arrow {
  background: transparent;
  border: none;
  color: white;
  width: 80px;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: background 0.25s ease;
}

.carousel-arrow.left {
  grid-column: 1;
  grid-row: 1;
}

.carousel-arrow.right {
  grid-column: 3;
  grid-row: 1;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
}

.arrow-icon {
  display: inline-block;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.carousel-arrow:hover .arrow-icon {
  transform: translateY(-2px);
  color: #4cffc6;
  text-shadow: 0 0 12px rgba(76, 255, 198, 0.6);
}


.carousel-arrow:active {
  transform: translateY(0);
}

.carousel-viewport {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  border-radius: 25px;
  height: 100%;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.pack-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vh;
  min-height: 60vh;
}

.content-banner {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 25px 25px 0 0;
  background-repeat: no-repeat;
  background-color: #28283b;
}


.content-karl {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  pointer-events: none;
}

.content-karl img {
  margin-left: auto;
  padding-right: 50px;
  width: 55%;
}

@media (max-width: 768px) {
  .content-karl {
    display: none;
  }
}

.content-bottom {
  flex: 0;
  background-color: #28283b;
  border-radius: 0 0 25px 25px;
  display: flex;
  flex-direction: column;
}

.content-text {
  padding-left: 40px;
  z-index: 2;
}

.content-title {
  font-size: 25px;
  margin-bottom: 4px;
  margin-top: 32px;
  font-weight: 800;
}

.content-description {
  font-size: 18px;
  opacity: 80%;
  margin-bottom: 0;
  margin-top: 0;
  padding-right: 25px;
}

.content-installers {
  display: flex;
  margin: 30px;
  gap: 15px;
  padding-left: 10px;
  flex-wrap: wrap;
}

.content-installers button {
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s;
}

.content-installers button:hover {
  transform: scale(1.05);
}

.content-installers button.disabled:hover {
  transform: none;
}

.content-installers .secondary {
  background-color: rgba(0.2, 0.2, 0.2, 0.2);
  border: 3px solid rgba(76, 255, 198, 0.5);
  color: white;
  box-sizing: border-box;
}

.content-installers .primary {
  border: 3px solid rgba(76, 255, 198, 1.0);
}

.content-installers button.disabled {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  border: 3px solid rgba(255, 255, 255, 0.3);
  cursor: default;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  grid-column: 1 / -1;
  grid-row: 2;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: #4cffc6;
}

#footer {
  position: relative;
  background-color: #0c0e15;
  width: 100%;
  padding: 25px 50px 25px 30px;
  box-sizing: border-box;
}

.footercontent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tutlinks {
  display: flex;
  flex-direction: column;
}

#footer p {
  font-size: 24px;
  opacity: 50%;
  margin: 0;
}

.footer-karl-stripe {
  padding-left: inherit;
  padding-right: inherit;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 15%, rgba(76, 255, 198, 1) 50%, rgba(255, 255, 255, 1) 85%, rgba(255, 255, 255, 0) 100%);
  height: 3px;
  width: 100%;
}

.footer-discord {
  margin-top: 5px;
  height: 35px;
}

.tut-link {
  font-size: 18px;
  color: #4cffc6;
  opacity: 100%;
  text-decoration: none;
}
