@font-face {
  font-family: 'CustomFont';
  src: url('res/BAHNSCHRIFT.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  /*font-family: 'Bahnschrift', Arial, sans-serif; */
  font-family: 'CustomFont', sans-serif;
  display: flex;
  flex-direction: column;
  margin: 0;
  background-color: #1f1f1f;
  color: #e4e4e4;
  padding: 50px;
  text-align: center;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}

header {
  background-color: #1f1f1f;
  color: white;
  padding: 50px;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #8e9c8f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #f9be0c;
}

#myImageST {
  width: 800px;
  height: auto;
  border: 0px solid black;
  border-radius: 8px;
}

.centered {
  display: block;
  margin: 2vw auto;
  width: 100%;
  max-width: 80%;
  height: auto;
}

.centered2 {
  display: block;
  width: 100%;
  height: auto;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 20px auto;
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}


.tab-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
  background-color: #1f1f1f;
  border-radius: 20px;
  box-shadow: 0 7px 20px rgb(0, 0, 0);
  transition: box-shadow 0.8s ease-in-out;
  margin: 20px 0;
}

.tab-navigation:hover {
  box-shadow: 0px 0 5px rgb(255, 255, 255);
}


.tab-navigation .logo {
  height: 50px;
  padding: 2vw;
  align-self: center;
}

.tab-navigation .logo2 {
  height: 80px;
  padding: 2vw;
  align-self: center;
}

.tab {
  padding: 1vw 2vw;
  text-decoration: none;
  color: #aaa;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 500;
  position: relative;
  border-radius: 8px;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.tab:hover {
  color: #ffffff;
}

.tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.tab:hover::after {
  width: 100%;
}

.tab.active {
  color: #ffffff;
  font-weight: 600;
  transform: translateY(-3px);
}

.tab.active::after {
  width: 100%;
}

.tab.active:hover {
  color: #687f8d;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px;
  flex-wrap: wrap;

}

.download-button {
  display: inline-block;
  padding: 15px;
  background-color: #383838;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 10px;
  text-align: center;
  width: auto;
  min-width: 120px;
  max-width: 100%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0);
  transition: 0.5s ease;
}

.download-button:hover {
  background-color: #4d4d4d;
  border-radius: 50px;
  color: #c7ecec;
  box-shadow: 0px 0px 20px rgba(170, 170, 170, 0.301);
}

.divider {
  height: 10vw;
  background-color: transparent;
}

.linedivider {
  width: 100%;
  height: 1px;
  background-color: #c9c9c9;
  margin: 20px auto;
}

.content-section {
  margin-bottom: 30px;
}

h1 {
  font-size: 5vw;
  display: block;
  margin-bottom: 20px;
  align-self: center;
}

p1 {
  font-size: 1.5vw;
  display: block;
  margin-bottom: 20px;
  align-self: center;
}

.p2 {
  font-size: 2vw;
  display: block;
  margin-bottom: 25px;
  align-self: center;
  font-weight: 500;
}


.info-section {
  width: 100%;
}

.info-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2e2e2e;
  padding: 1vw;
  cursor: pointer;
  font-size: 2vw;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.info-bar:hover {
  background-color: #3a3a3a;
}

.arrow {
  font-size: 2vw;
  margin-left: 1vw;
  transition: transform 0.3s ease;
}

.info-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin-top: 0;
  transition: max-height 1s ease, opacity 1s ease, padding 0.5s ease;
  text-align: left;
}



.info-content h2,
.info-content h3,
.info-content h4 {
  margin-top: 20px;
}

.info-content p,
.info-content ul,
.info-content ol {
  margin: 10px 0;
}

.info-content .center-p {
  color: #ffffff;
  font-size: 1.5vw;
  text-align: center;
  margin: 20px auto;
  padding: 10px;
  max-width: 80%;
  line-height: 1.6;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}


.info-content a {
  color: #709dce;
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

.contacty {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contacty h1 {
  font-size: 5vw;
  display: inline-block;
  color: #ffffff;
  opacity: 0;
  transition: opacity 2.5s ease, color 2.5s ease;
}

.contacty h2 a {
  font-size: 8vw;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  transition: color 2.5s ease;
}

.contacty h3 {
  font-size: 4.5vw;
  display: inline-block;
  color: #ffffff;
  opacity: 0;
  transition: opacity 2.5s ease, color 2.5s ease;

}

.contacty h1:hover {
  color: #27e402;
  opacity: 1;
}

.contacty h2 a:hover {
  text-decoration: underline;
  opacity: 1;
}


.contacty h1:hover~h2 {
  color: rgb(255, 255, 255);
  opacity: 1;
}

.contacty h1:hover~h3 {
  color: rgb(209, 19, 19);
  opacity: 1;
}

.contacty h1::selection,
.contacty h2::selection,
.contacty h3::selection {
  color: #3d4140;
}

.contact_foot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.contact_foot p {
  margin: 0px;
  font-size: 12px;
  color: white;
  line-height: 1;
}

.contact_foot a {
  margin: 0px;
  font-size: 10px;
  color: #c9c9c9;
  text-decoration: none;
  transition: ease-in 0.7s;
  line-height: 1;
  vertical-align: bottom;
}


.contact_foot a:hover {
  color: #2f7299;
}



.plugin-overview {
  background-color: #1f1f1f;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: left;
}

.plugin-overview h2 {
  font-size: 24px;
  color: #faf8f8;
  margin-bottom: 16px;
  border-bottom: 2px solid #709dce;
  padding-bottom: 8px;
}

.plugin-overview h3 {
  font-size: 20px;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 12px;
}

.plugin-overview p {
  font-size: 16px;
  margin-bottom: 16px;
}

.plugin-overview ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 24px;
}

.plugin-overview ul li {
  font-size: 16px;
  margin-bottom: 8px;
}

.plugin-overview ul li:hover {
  color: #709dce;
}

.snapshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2vw;
  margin-top: 16px;
}

.snapshot-gallery img {
  width: 60%;
  height: auto;
  border-radius: 3px;
  transition: transform 0.3s ease, box-shadow 0.6s ease;
  display: block;
  margin: 0 auto;
}

.snapshot-gallery img.SSmain {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto;
}

.snapshot-gallery img:hover {}

.social-container a {
  display: inline-block;
  text-decoration: none;
  padding: 1%;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery img {
  width: 50%;
  height: auto;
  padding: 4vw;
  border-radius: 8px;
  transition: opacity 0.2s ease-in-out;
}


.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

button {
  background: none;
  border: none;
  font-size: 5vw;
  cursor: pointer;
}

.social-container {
  display: flexbox;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  justify-content: center;
  text-decoration: none;
}

.social-container img {
  width: 6vw;
  height: auto;
  transition: transform 0.4s;
}

.social-container img:hover {
  transform: scale(1.4);
}



.about p {
  font-size: 3vw;
}



.creators p {
  font-size: 2vw;
}

.links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  justify-content: space-between;
}

.links-container a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5vw;
  text-align: center;
  box-sizing: border-box;
  flex: 1 1 calc(33.333% - 15px);
  max-width: calc(33.333% - 15px);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.5s;
}

.links-container a:hover {
  color: #73c8ce;
  text-decoration: none;
  font-size: 1.7vw;
}

.about-ani {
  opacity: 0;
  transform: translateY(-100%);
  transition: .5s ease-in-out;
}


.left {
  opacity: 0;
  transform: translateX(-100%);
  transition: 1s ease-in-out;
}

.right {
  opacity: 0;
  transform: translateX(100%);
  transition: 1.5s ease-in-out;
}

.up {
  opacity: 0;
  transform: translateY(200%);
  transition: 2s ease-in-out;
}

.about-logo {
  height: 20vw;
  padding: 2vw;
  align-self: flex-start;
  transition: transform .8s ease-out;
  animation: rotateLogo 5s linear infinite;
}


.about-ani.visible {
  color: #ffffff;
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.patreon-logo {
  width: 20vw;
  height: auto;
  transition: 0.4s;
}

.patreon-logo:hover {
  transform: scale(1.2);
}

.patron-container {
  width: 100%;
  font-size: 2.5vw;
  overflow: hidden;
  white-space: nowrap;
  color: rgb(255, 255, 255);
  padding: 10px 0;
  position: relative;
}

.patron-banner {
  display: flex;
  white-space: nowrap;
  animation: scrollBanner 30s linear infinite;
  width: max-content;
}

@keyframes scrollBanner {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.logo-divider {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 0;
  width: 100%;
  overflow: hidden;
}

.d-logo {
  height: 2vw;
  width: auto;
}

/* if ur reading this ur a shnooper */