@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600&family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --bg: #0d0d0d;
  --bgsec: #1c1c1c;
  --bgsechover: #202020;
  --accent: #a886ff;
  --accent-hover: #b091ff;

  --accent-nav: #cc7aff71;
  --accent-nav2: #d693ff40;
  --text-alpha: #d9d9d979;
  --text-alpha2: #d9d9d920;
  --text: #d9d9d9;
  --text-hover: #ffffff;
  --outline: #2c2c2c;
}
.fade{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;

  background-color: #00000022;
  backdrop-filter: blur(200px);
  pointer-events: none;
  animation: transitionIn 500ms ease-in-out;
  -webkit-animation-fill-mode: forwards;
}
@keyframes transitionIn{
  from{
    opacity: 100;
  }
  to{
    opacity: 0;
  }
}

@keyframes transitionOut{
  from{
    opacity: 0;
  }
  to{
    opacity: 100;
  }
}

.footer-text-wall{
  width: 100%;
  height: 256px;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow:hidden;
}
.footer-text-wall h3{
  font-size: 3rem;
  font-family: "rubik";
  color: var(--accent);
  position: relative;
}
.footer-text-wall p {

  position: relative;
color: var(--text-alpha2);
  font-family: "rubik";
  white-space: nowrap;
  font-size: 1rem !important;
animation: animate var(--t) linear infinite;
text-align: center;
font-size: 2rem;
}
.footer-text-wall .text-wall {
  scale: 1.5;
  background: transparent;
}
.footer-text-wall .username-wall{
  background: transparent;
}

/* Mandated core structure so Lenis can track total window heights */
html.lenis, html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  scroll-behavior: contain;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;

}
body {
  background: var(--bg);
  margin: 0;
  width: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 0;
  color: white;

  font-family: "Noto Sans", sans-serif;
}
h3 {
  color: white;
}

.bg-gradient {
  position: absolute;
  width: 100%;
  top: 0;
  height: 100vmin;
  bottom: 0;
  background-repeat: no-repeat;
  z-index: -1;

  background: linear-gradient(
    hsla(0, 0%, 0%, 0.0) 00%,

    hsla(0, 0%, 0%, .62) 100%
  );
  filter: blur(2px);

}
h1 {
  font-family: "Rubik", sans-serif;
}
.landing {
  display: flex;
  padding-left: 0px;
  align-items: left;
  justify-content: center;
  height: 100vmax;
  flex-direction: column;
}
.landing .title{
  margin-left: 100px;
}
.btn{
  cursor: pointer;
}
.landing .btn-pri {


}
.bg-img{
  position: absolute;
  align-self: center;
  justify-self: center;
  align-self: center;
  z-index: -2;
}

.section .bg-img{
 z-index: 0;
 margin: 0;
 width: 100%;
 height: 100vmin;
 -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
 mask-image: linear-gradient(to right, transparent 0%, black 60%);
 object-fit: cover;
}
.landing .noise-background {
  z-index: -2;
}
.section .noise-background{
  min-height: 100%;
  position: absolute;
  top: 0;
}
.noise-background {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  z-index: 0;
  mix-blend-mode: soft-light;

  /* 1. Base dark red/crimson background color */
  background-color: #5d5d5d; 
  
  /* 2. Seamless pixel grid texture (2px dots spaced out) */
  background-image: radial-gradient(rgba(255, 255, 255, .5) 1px, transparent 2px);
  background-size: 4px 4px; /* Adjust grid square spacing here */
}
.featsec .noise-background {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  z-index: -2;
  mix-blend-mode: soft-light;

  /* 1. Base dark red/crimson background color */
  background-color: #5d5d5d; 
  
  /* 2. Seamless pixel grid texture (2px dots spaced out) */
  background-image: radial-gradient(rgba(255, 255, 255, .5) 1px, transparent 2px);
  background-size: 4px 4px; /* Adjust grid square spacing here */
}
.landing-p{
  text-align: left;
  font-weight: 400;
  font-family: "Rubik";
  font-size: 1.25rem;
  opacity: 0.85;
  margin-top: 50px;
  margin-left: 25px;
  margin-bottom: 50px;
}
.landing-title {
  text-align: left;
  font-weight: 800;
  font-family: "Rubik";
  font-size: 6rem;
  margin: 0;
}
.MBLogo {
  left: 0;
  position: relative;
  margin-top: 50;
  margin-left: -40;
  padding: 50px;
  width: 70vmin;
  max-width: 50vmax;
}
p {
  font-size: 20px;
  color: var(--text);
}
.secbtn {
  cursor: pointer;
  padding: 5px 20px 5px 20px;
  margin-right: 30px;
  background-color: #101010;
  border: #3e3e3e solid 2px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.2rem;
  font-family: "Noto Sans", sans-serif;
  transition: 100ms ease-in-out;
  transition-property: color, border;
}
.secbtn:hover {
  color: var(--text-hover);
  border: #797979 solid 2px;
}
.landing {
  height: 100vh;
}
.community-banner{
  height: 15vmin;
  overflow: hidden;
  margin: 0;
  display: flex;
  justify-content: center;
  align-content: center;
}
.community-banner-text{
  position: absolute;
  justify-self: center;
  align-self: center;
}
.community-banner-text h3{
text-align: center;
font: 'Rubik';
font-size: 1.5rem;
margin: 0;

font-weight: 300;
}
.community-banner-text h1{
text-align: center;
font: 'Rubik';
font-weight: 700;
font-size: 3rem;
margin: 0;
}
.nav-bar {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 150px;

  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
}
.nav-bar::before {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  backdrop-filter: blur(1px);
  background: linear-gradient(to bottom, black, transparent 0%);
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent);
  mask-image: linear-gradient(to bottom, black 90%, transparent);
}
#nav-bar {
}
.nav-bar ul {
  height: 40%;
  top: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 50px;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--bgsec);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--accent);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--accent-hover) 100%, #ffffff 20%);
}
.nav-bar li {
  color: var(--text);
  margin-left: 75px;
  text-decoration: none;
  list-style-type: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Rubik";
  opacity: 75%;
  transition: 100ms ease-in-out;
  transition-property: color, opacity;
  cursor: pointer;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.75));
}
.nav-bar li:hover,
.nav-bar .active {
  color: var(--accent-hover);
  opacity: 100%;
}
.nav-bar li a{
  color: inherit;
}
.logo {
  position: absolute;
  height: 50px;
  margin-top: 20px;
  margin-left: 50px;
}

.about{
  width: 100%;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top:  200px;
  background-color: #0d0d0d;
}
.about h1{
  font-size: 3rem;
  margin: 0;
  mix-blend-mode: overlay;
}
.about-section{
  display: flex;
  align-items: center;
  flex-direction: column;

}
.about-item{
  width: 200px;
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
  flex-direction: column;

}
.about-item .text{
  position: absolute;
  padding: 10px;
}
.about-item h2{
  margin: 0;
}
.about-item p{
  margin: 0;
}
.about-item img{
  width: 100%;
  height: 100%;

}
.about-section .items{
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about-item{
  border: solid 2px white;
}
.bg {
  top: 0;
  width: 70%;
  right: -10rem;
  position: absolute;
  filter: drop-shadow(15px 15px 125px #0000003b);
  z-index: 2;
}

.bg img {
  position: absolute;
      filter: drop-shadow(10px 10px 50px rgba(0, 0, 0, 0.75)) !important;

}
.misect .bg #app-screenshot{
  scale: 0.75;
    margin-bottom: 15rem;
  margin-right: 25rem;
      filter: drop-shadow(10px 10px 50px rgba(0, 0, 0, 0.75)) !important;

}
.misect .bg #splash{
  scale: 0.8;
  margin-top: 15rem;
  margin-left: 25rem;
      filter: drop-shadow(10px 10px 50px rgba(0, 0, 0, 0.75)) !important;

}
.bg #splash {
  position: absolute;
  width: 600px;
  margin: 120px;
}
.bg #splash2 {
  width: 600px;
  position: absolute;
  margin: 450px;
  margin-top: 450px;
}

.bg section {
}

.random-gradient {
  position: absolute;
  width: 2000px;
  height: 2000px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(0,0);
  overflow: hidden;
  mix-blend-mode: normal;
  z-index: 15;
    filter: blur(100px);
  /* This creates the smooth animation between random states */
}

#gradient1 {
  left: -1200px;
  top: 1000px; /* Changed margin-top to top for better absolute positioning */
  background: radial-gradient(var(--accent-nav) 0%, transparent 70%);
  transition: transform 5s ease-in-out, opacity 5s ease-in-out;
  opacity: 0.5;
overflow: clip;
}

#gradient2 {
  left: 1200px;
  top: 300px;
  background: radial-gradient(var(--accent-nav) 0%, transparent 70%);
  transition: transform 8s ease-in-out, opacity 8s ease-in-out;
  opacity: 0.5;
overflow: clip;
}

#gradient3 {
  left: -1500px;
  top: 300px;
  background: radial-gradient(var(--accent-nav)  0%, transparent 70%);
  transition: transform 6.5s ease-in-out, opacity 6.5s ease-in-out;
  opacity: 0.5;
overflow: clip;
}
.gradients{
  position: relative;

}
#gradient4 {
  margin: -170px;
pointer-events: none;
  width: 550px;
  min-width: 300px;

  height: 300px;
  z-index: 1;
  background: radial-gradient(var(--accent-nav2)0%, transparent 70%);
}
#p_left {
  left: 0;
  background-image: url("././images/Pattern\ Left.png");
  background-size: 100%;
  background-repeat: repeat-y;
  image-rendering: pixelated;
  z-index: -6;
}
#p_right {
  background-image: url("././images/Pattern\ Right.png");
  background-size: 100%;
  right: 0;
  background-repeat: repeat-y;
  image-rendering: pixelated;
  z-index: -4;
}

.section {
  position: relative;
  color: var(--text);
  align-items: center;
  perspective: 1500px; 
  display: flex;
  height: auto;
  background-color: #06050a;
  height: 100%;
  padding: 0px;
}
#ignore-3d{
  margin-left: 50px;
}
.section .title{
  z-index: 10;
  padding: 0;
  margin-top: 0;
  transform-style: preserve-3d;
  margin-left: 200px;
  transition: cubic-bezier(1, 0, 0, 1) !important; 
  
  /* Initial fallback state before JS runs */
  transform: rotateX(0deg) rotateY(15deg) rotateZ(0deg); 

    /* 1. Forces the browser to calculate sub-pixel smoothing in 3D space */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* 2. Pushes a micro depth buffer trick that stops font texture compression */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  
  /* 3. Forces the rendering engine to prioritize ultra-sharp vector shapes */
  text-rendering: optimizeLegibility;
}
.btn-group-title{

  padding:10px;
   display: flex;
  gap:15px;
}
.featsec {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
}

.latest-download {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
}

.section .title h2 {
  font-size: 1.9rem;
  font-weight: 400;
  margin: 0;
}
.vernum {
  font-family: "Rubik";
  display: flex;
  gap: 10px;
}
.vernum #tag {
  font-weight: 800;
  color: var(--accent);
}
.section .title h1 {
  margin: 0;
  font-size: 5rem;
}
.donate-container{
  width: 100%;
  height: 100%;
background: #06050a;
}
.donate-sect{

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 20px;
}
.donate-sect h1{
  margin: 0;
  font-size: 5rem;
  mix-blend-mode: soft-light;
}
.donate-sect p{
  margin: 0;
}
#donate-btn{
  height: 40px;
  font-size: 1.2rem;
  font-family: 'rubik';
  gap:10px;
  font-weight: 600;
  position: relative;
  z-index: 10;
}
.donate-container #gradient1{
margin-top: 0;
top: -1000;
left: -250;
}
.mbsect .bg-img{
  filter: blur(5px);
}

.misect::before {
  content: "";
  transform: translateX(-50%);
  left: 50%;
  position: absolute;
  top: -100px;
  width: 100%;
  height: 100px;
  /* background: linear-gradient(to top, #06050a, transparent); */

  padding: 0;
}
.section h1,
.downloads h1 {
  color: var(--text);
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
}

.text-wall{
  background-color: var(--bg);
    margin: 0;
align-self: flex-start;
width: 200%;
transform: translate(0px,-100px);
    font-weight: 400;
    word-spacing: 0px;
    overflow:hidden;
    flex-direction: column;
    z-index: -1;
    position: absolute;
    
    font-size: 2rem;
    rotate: -1deg;
    filter: blur(1px) brightness(.5);
}
.username-wall {
  position: relative; /* Crucial: Keeps the absolute paragraphs inside */
  display: flex;
  overflow: hidden;
  height: 2rem; /* Set a height since absolute children will collapse the parent */
  width: 100%;
  rotate: -5deg;
}

.username-wall p {
  position: absolute; /* Crucial: Stacks them exactly on top of each other */
  width: max-content; /* Ensures text doesn't wrap */
  top: 0;
  margin: 0;
  color: var(--text-alpha2);
  font-family: "rubik";
  white-space: nowrap;
  font-size: 1rem !important;
  
  /* Make sure the timing calculation matches for both elements */
  animation: animate calc(var(--t) * 5) linear infinite;
}

.username-wall p:nth-child(2) {
  /* Exactly half the duration of the animation so it follows perfectly */
  animation-delay: calc((var(--t) * 5) / -2);
}

/* Use your first keyframe! Starting off-screen right, ending off-screen left */
@keyframes animate {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.lbg::before{
  content: '';
  position: absolute;
  width: 300px;
  height: 200;
  z-index:2;
  background: radial-gradient(at bottom right,  #000000FF -10%, transparent 70%);

}
.fit-bg img{
  height: 100% !important;
  width: auto !important;
}
    .text-tr {
      align-self: flex-start !important;
      margin-right: 25px !important;
  text-align: right !important;
      margin: 0;
      font-weight: 400;
    }
.feature-items {
  display: flex;
  flex-wrap: wrap;
  height: auto;

  padding: 100px;
  row-gap: 100px;

  justify-content: center;
}
.big-item {
  width: 730px !important;
  grid-column: span 2;
}
#small-item {
  flex-basis: calc(100% / 3);

}
.feat-item {
  display: flex;
  width: 350px;
  align-items: flex-end;
  justify-content: flex-end;
  height: 270px;
    border: solid 3px var(--text);
    overflow:hidden;
}

.feat-item h2 {
  margin-right: 10px;
  margin: 10px;
  position: absolute;
  font-family: "Rubik", sans-serif;
  color: var(--text);
  z-index: 2;
  text-align: right;
  pointer-events: none;
}
.feat-text {
  text-align: center;
}
.feat-text-2 h2{
  position: relative;
  pointer-events: none;
}
.feat-text-2{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}
.feat-text-2 h2{
  text-align: left !important;
  pointer-events: none;

}
.feat-text-2 i{
  font-size: 2rem;
}
.feat-item p {
  text-align: left !important;
  pointer-events: none;

  font-size: 14px;
}

.feat-item video {
  width: 100vw;
  height: 100vw;
  object-fit: cover;

  outline: var(--accent) solid 5px;

  position: relative;
}
#small-items{
    height: 276;
  display: grid;
  grid-template-rows: 180px auto;
  gap: 20px;
  
}
#small-items .text-wall{
  position: relative;
}
#small-items .feat-item{
  height: auto;
}
.feature-grid{
display: grid;
  grid-template-columns: repeat(3, 350px); /* 3 columns */
  grid-template-rows: repeat(2, 256px);    /* 2 rows  */
  grid-gap: 50px 30px;
  
  /* HIGHLY RECOMMENDED: This prevents empty holes in your grid 
     if a double-width item is forced to drop to the next row. */
  grid-auto-flow: dense;

}
.invert{
  background-color: var(--text);
  color: var(--bg);

}
.invert h2{
  color: var(--bg);
}
.feature-grid img{
  width: 100%;
  height: auto;
}
.feature-grid #small-items img {

  width: auto;


}
.downloads {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: auto;
  perspective: 1500px; 
  padding: 50px 0px 50px 0px;
}
.download-items {
  margin-top: 200px;
  width: 100%;
  position: relative;

}
.download-items ul{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.latest-download #tag{
  text-align: center;

}
.latest-download{
    display: flex;
    flex-direction: row;
      perspective: 1500px; 
            justify-content: space-between;

}
.latest-download .icon{
  position: absolute;
  height: 100%;
  right: 20px;
  margin-right: 50px;
}
#glowicon{
  height: 100%;
  position: absolute;
  right: 20px;
  filter: blur(70px);
  opacity: 0.5;
  mix-blend-mode: screen;
}
.download-items li{
display: grid;
gap:10px;
    width: 75%;
    grid-template-columns: minmax(auto, .975fr) auto ;
}
.download-items .vernum p {
    font-size: 1.7rem;
}
.download-items .vernum .size{
  font-weight: 300;
  color: var(--text-alpha);
}
.download-items li div{
  margin:0;
  height: 100%;
  align-items: center;
  display: flex;
  gap: 15px;
  font-size: 1.5rem ;
    border: 3px;
      border-style: dashed;
      height: 50px;
      padding-left: 20px;
      font-family: "Rubik";
      font-weight: 600;
      border-color: var(--outline);
      z-index: 10;
}
.download-items li .btn:hover{
      border-color: var(--text);
}
.download-items li a{
      font-weight: 400;
}

.dl-item h2 {
  letter-spacing: 5px;
  font-size: 2rem;
  font-family: "Rubik", sans-serif;
  color: white;
}
.dl-item p {
  margin: 20px;
  letter-spacing: 2px;
  font-size: 1.2rem;
  line-height: 60px;
  font-family: "Rubik", sans-serif;
  color: white;
}
a {
  text-decoration: none;
}
.inactive{
  color: var(--bg);
  pointer-events: none;
  opacity: 0.5 !important;

}
.btn-pri {
  cursor: pointer;
  background: var(--accent);
  padding: 8px 18px; /* Slightly increased padding to make room for the inset shadows */
  display: flex;
  text-align: center;
  justify-content: center;
  min-width: 150px;
  font-family: "Rubik", sans-serif;
  font-weight: 600 !important;
  gap: 5px;
  color: var(--bg);
  font-size: 0.9rem;
  transition: 100ms ease-in-out;
  transition-property: background;

  /* 1. Remove the actual border */
  border: none; 
  
  /* 2. Use inset box-shadows to draw sharp, flat lines on each side */
  box-shadow: 
    inset 0 4px 0 rgba(255, 255, 255, 0.3),  /* Top edge */
    inset -4px 0 0 rgba(255, 255, 255, 0.3), /* Right edge */
    inset 0 -4px 0 rgba(0, 0, 0, 0.3),       /* Bottom edge */
    inset 4px 0 0 rgba(128, 128, 128, 0.3);  /* Left edge */
}
.btn-pri:hover {
  background: var(--accent-hover);
  transition: 100ms ease-in-out;
  transition-property: background;
}

.btn-sec {
  cursor: pointer;

  background: var(--bgsec);
  padding: 3px 13px 3px 13px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  font-family: "Rubik";
  font-weight: 400 !important;
  border-style: solid;
  letter-spacing: 1px;
  border-width: 2px;
  color: var(--text);
  font-weight: 400;
  gap: 10px;
  border-color: var(--outline);
  font-size: 0.9rem;
  transition: 100ms ease-in-out;
  transition-property: background;
}
.btn-sec:hover {
  background: var(--bgsechover);
  transition: 100ms ease-in-out;
  transition-property: background;
}
.btn-sec a {
  color: var(--text);
  font-weight: 800;
}

.btn-pri a {
  color: var(--bg);
  font-weight: 800;
}
.dl-item {
  display: block;
}
.dl-item .icon {
  position: absolute;
  right: 10%;
  z-index: -1;
  width: 30vmin;
}
#splash1 {
  transform: translateY(0);
}
#splash2 {
  transform: translateY(0);
}
#splash3 {
  transform: translateY(0);
}
.splash,
.splash-front {
  z-index: -1;
  position: absolute;
  transform: translateY(0);
  top: 2%;
  right: 5%;
  width: 40rem;
}
.splash {
  animation: MoveUpDown 5s ease-in-out infinite;
}
.splash-front {
  animation: MoveUpDown 5s ease-in-out infinite;
  animation-delay: 1000ms;
}
.splash img,
.splash-front img {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 40rem;
}

@keyframes MoveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

.credits {
  margin: 0;
  display: flex;

  padding: 20px 20px 50px 20px;

  height: 200px;

  width: 100vw;
  background-color: #040404;
  z-index: 50000;
}
.credits div {
  margin-top: -50px;
}
.credits p {
  position: relative;
  text-align: left;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  opacity: 50%;
  letter-spacing: 3px;
  margin-top: 70px;

  margin-left: 30px;
  font-size: 0.8rem;
}
.credits a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  transition: 100ms ease-in-out;
  transition-property: color;
}
.credits a:hover {
  color: color-mix(in srgb, var(--accent-hover) 100%, #ffffff 50%);
}
.credits .right {
  position: absolute;
  right: 0%;
}
.credits .right p {
  margin-right: 50px;

  text-align: right;
  z-index: 1000;
}

.change-log {
  margin-top: 100px;
  outline: solid var(--outline) 1px;
  padding: 20px 0 20px 0;

  transition: 300ms ease-in-out;
  background-color: var(--bgsec);
}

.change-log h2 {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;

  /*
         Introduced in IE 10.
         See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
       */
  -ms-user-select: none;
  user-select: none;
  margin-left: 50px;
  margin-top: auto;
  margin-bottom: 0;
}
.change-log ul {
  display: block;
  display: flex;
  flex-direction: column;
  align-content: flex-end;

  margin-left: 50px;
  overflow: hidden;
  line-height: 40px;
  transition: 300ms ease-in-out;
}
.hidden {
  padding: 10px 0 0px 0;
  background: transparent;
}
.hidden ul {
  max-height: 0;
  transition: 300ms ease-in-out;
}
.change-log h3 {
  font-size: 2rem;
}

@media only screen and (max-width: 1066px) {
  body {
    overflow-x: hidden;
  }
  .landing {
    margin-top: 20px;
  }
  .landing p {
    font-size: 2vmin;
    margin-top: 0;

    text-align: left;
  }
  .secbtn {
    margin-top: 10px;
    margin: 5px;
    font-size: 0.9rem;
    margin-top: 20px;
  }

  .splash,
  .splash-front {
    opacity: 50%;
    position: absolute;
    right: -20vmax;

    width: 40rem;
  }
  .landing {
  }
  .feature-grid{
    display: grid;
    grid-template-columns: repeat(3,128p);  /* 3 columns */
    grid-template-rows: repeat(2,256px); /* 3 rows  */
    scale: 0.75;

  }
  .MBLogo {
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    margin-top: 40px;
    margin-left: 0;
    width: 70vmin;
  }
  .download-items ul{
    padding: 0;
  }
  .download-items{
    padding: 0;
  }
  .download-items li{
    width: 100%;
    margin-left: 15px;
  }
  .splash img,
  .splash-front img {
    width: 30rem;
  }
  .nav-bar {
    display: block;
    height: 100px;
  }
  .nav-bar ul {
    width: 70%;
    position: relative;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }
  .nav-bar li {
    text-align: center;
    font-size: 0.7rem;
    width: 100%;
    margin: 0 0 30 0;
  }


  .nav-bar .logo {
    left: 50%;

    transform: translateX(-50%);
    position: relative;
  }

  .section h1,
  .downloads h1 {
    font-size: 2rem;
  }
  #big-item {
    flex-basis: calc(100% / 2);
  }

  #small-item {
    flex-basis: calc(100% / 2);
  }
  #big-item video {
    width: 35vw;
    height: 35vw;
  }

  .feat-item video {
    width: 35vw;
    height: 35vw;
  }
  .credits{
    z-index: 50000;
    position: absolute;
    padding: 0;
  }
  .credits .right p {
    font-size: .6rem;
    margin-right: 20px;
  }
  .dl-item .icon {
    opacity: 50%;
  }
  .download-items {
    padding: 20px;
  }
  .change-log h2 {
    margin-left: 10px;
    margin-top: auto;
    margin-bottom: 0;
  }

  .change-log ul {
    margin-left: 10px;
  }

  .change-log dd {
    margin-left: 0;
    font-size: 1rem;
  }

  .change-log h3 {
    font-size: 2rem;
  }

  .nav-bar ul {
    height: 40%;
    top: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 0px;
    padding: 10px;
  }

    .feat-item video {
      width: 60vw;
      height: 60vw;
    }
    .landing p{

    }
    .landing .btn-pri{
      font-size: 1rem;
      margin-top: 1px;
    }


    .nav-bar .logo{
      padding: 0;

      width: 40vmax;
      display: flex;

    }
    .nav-bar a img{
      width: 75%;
      height: auto;
      left: 0;

      margin: 0;
      margin-top: 20px;
    }
    .nav-bar .logo{

    }
    .section .title h1{
      font-size: 3rem;
    }
    .section .title{
      margin:1rem;
    }

    .section .bg{
      right: 70%;
      width: 15%;
      height: auto;

      z-index: 1;
      scale: .7;
    }


    .latest-download .icon{

      height: 100%;
      margin-right: 10px;
    }
}
@media only screen and (max-width: 1080px) {
  #big-item video {
    width: 60vw;
    height: 60vw;
  }
}


