*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
.no-select {
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none; 
  user-select: none; 
  pointer-events: none;
}
header{
  position: sticky;
  width: 100%;
  top:0;
  background-color:#363636;
  color:#fff;
  display:flex;
  align-items:center;
}
header a{
  color:#fff;
  text-decoration:none;
  padding:10px;
}
header img{
  width:50px;
  height:50px;
}
header h1{
  padding: 5px;
}
nav{
  display: none;
}
section{
  background-image: url("img/Home.jpg"); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color:#000;
  height: 100vh;
}
.text1{
  font-size: 90px;
  text-align: center;
  color:white;
  padding-bottom: 350px;
}
.text2{
  text-align: right;
  color:white;
  font-size: 23px;
  padding-bottom: 190px;
}
.text3{
  text-align: center;
  color:white;
  font-size: 70px;
  background-color: rgba(0, 0, 0, 1);
}
section2, About,container{
  align-items: center;
  display: flex;
  height: 600px;
}
section2 p{
  padding-right: 20px;
  font-size: 30px;
  margin-right: 20px;
  text-align: justify;
}
video{
  width: 40%; 
  height: 40%;
  float: left;
  margin-right: 2%;
}
section3, System requirements{
  background-color:#363636;
  color: #fff;
  align-items: center;
  justify-content: center;
  display:flex;
}
section3, System requirements,table{
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
section4,Shop{
  font-size:30px;
  zoom:130%;
}
table2{
  color: #000;
  text-align: center;
  font-size: 20px;
}
#System_requirements,h2{
  font-size:40px;
  text-align:center;
}
#Shop,h4{
  font-size:50px;
}
section5, Preview{
  background-color:#363636;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  display:list-item;
  margin: 0 auto;
  padding: 30px;
}
#Preview h1{
  font-size:40px;
  text-align:center;
}
input{
  color: #000000;
  background: #ffffff;
  font-size: 13px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
  outline: 2px solid #252a2e;
}
button{
  color: #fff;
  background: #252a2e;
  font-size: 15px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
}
h1{
  font-size: 30px;
  text-align: center;
}
footer{
  position: relative;
  left: 0;
  width: 100%;
  background: #363636;
  color: #ffffff;
  text-align: center;
  font-size: 25px;
}
footer a {
  color:#ffffff;
  text-decoration: none;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
.Socials{
  width: 2%; 
  height: 2%;
  text-align: center;
  margin: 0 auto;
}
.product-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 30px;
}
.product-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.player-card {
  display: flex;
  align-items: center;
  max-width: 500px; 
  padding: 15px;
  border-radius: 8px;
  background-color: #383838;
  box-sizing: border-box;
  margin: 0 auto;
}
.custom-play-button {
  background-color: #383838;
  border: none;
  outline: none;
  cursor: pointer;
  padding-right: 15px;
  flex-shrink: 0;
}
.custom-play-button img {
  width: 50px;
  height: 50px;
}
.waveform-container {
  width: 100%;
  position: relative;
}
.waveform {
  width: 100%;
  height: 80px;
}
@media screen and (max-width: 1000px){
  header{
    position: sticky;
    width: 100%;
    top:0;
    background-color:#363636;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content: space-between;
    zoom: 195%;
    height: var(-- header-height);
  }
  .desktop-menu{
    display: none;
  }
  header h1{
    font-size:25px;
    margin-bottom: 2px;
    text-align: center;
  }
  .nav {
    position: sticky;
    display: flex;
    right: 10px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-toggle-label {
    display: inline-block;
    cursor: pointer;
  }
  .nav-toggle-label span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 4px;
    transition: 0.3s;
  }
  .nav-toggle-label span:before,.nav-toggle-label span:after {
    content: "";
    display: block;
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    transition: 0.3s;
    text-align: center;
  }
  .nav-toggle-label span:before {
    top: -10px;
  }
  .nav-toggle-label span:after {
    top: 10px;
  }
  .nav-toggle:checked + .nav-toggle-label span {
    background-color: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span:before {
    transform: rotate(45deg);
    margin-top: 20px;
  }
  .nav-toggle:checked + .nav-toggle-label span:after {
    transform: rotate(-45deg);
  }
  .nav-menu {
    list-style:none;
    display: none;
    flex-direction: column; 
  }
  .nav-menu a {
    color: #ffffff;
    text-decoration: none;
    width: 15px;
    text-align: center;
    position: relative; 
    height: 10px;
  }
  select{
    font-size:25px;
  }
  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }
  footer{
    position: relative;
    left: 0;
    width: 100%;
    background: #363636;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
  }
  footer a {
    color:#ffffff;
    text-decoration: none;
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
  }
  footer p, h5{
    font-size: 30px;
  }
  .Socials{
    width: 8%; 
    height: 8%;
    text-align: center;
    margin: 0 auto;
  }
  section {
    height: auto;
    zoom:120%;
  }
  .text1 {
    font-size: 35px;
    padding:30px;
    padding-bottom: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  .text2{
    font-size: 5px;
    text-align: center;
    padding-bottom: 360px;
  }
  .text3{
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.5);
  }
  input{
    color: #000000;
    background: #ffffff;
    font-size: 30px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: 2px solid #252a2e;
  }
  button{
    color: #fff;
    background: #252a2e;
    font-size: 35px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  section2, About,container{
    align-items: center;
    display: flex;
    height: 520px;
  }
  section2 p{
    padding-right: 20px;
    font-size: 20px;
    margin-right: 20px;
    text-align: justify;
  }
  video{
    width: 50%; 
    height: 50%;
    float: left;
    margin-right: 2%;
  }
  section5, Preview{
    background-color:#363636;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    display:list-item;
    margin: 0 auto;
    padding: 100px;
    font-size: 50px;
    
  }
  .product-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 10px;
}
  .product-container {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
  }
  .product-card p{
    font-size: 30px;
  }
  .product-card h3{
    font-size: 50px;
  }
}
@media(max-width: 900px){
  .player-card {
    display: flex;
    align-items: center;
    width: 1000px;
    padding: 10px;
    border-radius: 8px;
    background-color: #383838;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .waveform-container {
    width: 200%;
    position: relative;
  }
  .waveform {
    width: 100%;
    height: 80px;
  }
}
@media screen and (max-width: 600px){
  header{
    position: sticky;
    width: 100%;
    top:0;
    background-color:#363636;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content: space-between;
    height: var(-- header-height);
    zoom: 100%;
  }
  .desktop-menu{
    display: none;
  }
  header h1{
    font-size:30px;
    margin-bottom: 2px;
    text-align: center;
  }
  section{
    background-image: url("img/Home.jpg"); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color:#000;
    height: 300vh;
  }
  .nav {
    position: sticky;
    display: flex;
    right: 10px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-toggle-label {
    display: inline-block;
    cursor: pointer;
  }
  .nav-toggle-label span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 4px;
    transition: 0.3s;
  }
  .nav-toggle-label span:before,.nav-toggle-label span:after {
    content: "";
    display: block;
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    transition: 0.3s;
    text-align: center;
  }
  .nav-toggle-label span:before {
    top: -10px;
  }
  .nav-toggle-label span:after {
    top: 10px;
  }
  .nav-toggle:checked + .nav-toggle-label span {
    background-color: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span:before {
    transform: rotate(45deg);
    margin-top: 20px;
  }
  .nav-toggle:checked + .nav-toggle-label span:after {
    transform: rotate(-45deg);
  }
  .nav-menu {
    list-style:none;
    display: none;
    flex-direction: column; 
  }
  .nav-menu a {
    color: #ffffff;
    text-decoration: none;
    width: 15px;
    text-align: center;
    position: relative; 
    height: 10px;
  }
  select{
    font-size:25px;
  }
  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }
  footer{
    position: relative;
    left: 0;
    width: 100%;
    background: #363636;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
  }
  footer a {
    color:#ffffff;
    text-decoration: none;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
  }
  footer p, h5{
    font-size: 30px;
  }
  .Socials{
    width: 8%; 
    height: 8%;
    text-align: center;
    margin: 0 auto;
  }
  section {
    height: auto;
    zoom:120%;
  }
  .text1 {
    font-size: 35px;
    padding:30px;
    padding-bottom: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  .text2{
    font-size: 15px;
    text-align: center;
    padding-bottom: 360px;
  }
  .text3{
    font-size: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  }
  input{
    color: #000000;
    background: #ffffff;
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: 2px solid #252a2e;
  }
  button{
    color: #fff;
    background: #252a2e;
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 15px;
    margin-bottom: 10px;
  }
  section2, About,container{
    align-items: center;
    display: flex;
    height: 520px;
  }
  section2 p{
    padding-right: 20px;
    font-size: 20px;
    margin-right: 20px;
    text-align: justify;
  }
  video{
    width: 50%; 
    height: 50%;
    float: left;
    margin-right: 2%;
  }

}