body {
  font-family: "Audiowide", sans-serif;
  text-align: center;
  margin: 0;
  background-color: black;
  color: white;
  /*background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.526) 1%, rgba(0,0,0,0)),
        url("pict1.jpg");
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;*/
}

.section{
    margin-bottom: 5vh;
    width:100%;
    /*background-image:
    linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0)),
    url("../images/background.jpg");*/
    background-size:cover;
    background-position:center;
    backdrop-filter: blur(20px);
}
/* glass layer */
.section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  background: rgba(0,0,0,0.35); /* glass tint */

  z-index:0;
}

/* keep content above blur */
.section > *{
  position: relative;
  z-index:1;
}
.nav{
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.326), rgba(0, 0, 0, 0));
}

.nav img {
    display: block;
    width: 120px;
    max-width: 40%;
    height: 65%;
    margin: auto;
    padding: 20px;
    transition: 1s;
    /*filter: drop-shadow(0px 0px 6px rgb(81, 0, 255));
    background:
        linear-gradient(to bottom, rgba(21, 0, 255, 0.073) 1%, rgba(0,0,0,0)),
        linear-gradient(to top, rgba(89, 255, 0, 0.115) 1%, rgba(0,0,0,0)),
        linear-gradient(to left, rgba(255, 0, 0, 0.125) 1%, rgba(0,0,0,0));
    backdrop-filter: blur(4px);
    background-color: rgba(7, 7, 7, 0.478);
    box-shadow:  0px 0px 10px 5px rgba(7, 7, 7, 0.11);
    padding-left: 10vh;
    padding-right: 10vh;
    border-radius: 10vh;*/
}
p, h1 {
    color: white;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: "Audiowide", sans-serif;
}
.poster-container{
  width: 30%;
  max-width: 250px;
  min-width: 150px;
  margin: auto;
  position: relative;
}

.poster-container img{
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 16px;
  transition: filter 0.3s ease;
}
.video-container{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
}
.video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow:  0px 0px 100px 15px rgba(255, 0, 0, 0.384);
    margin-bottom: 10vh;
    border-radius: 10px;
    transform: scale(0.95);
    transform-origin: center center;
}

.background{
    margin-top: 25px;
    width: 250px;
    max-width: 90%;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
    box-shadow:  0px -10px 40px 0px rgba(4, 0, 255, 0.384);
    /*background: linear-gradient(to bottom, rgb(119, 0, 255) 30%, rgba(0,0,0,0));*/
}
.background1{
    width: 100%;
    border-radius: 10px;
    display: block;
}
.images{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-left: 30px;
    margin-right: 30px;
}
.image-wrapper {
  position: relative;
  display: inline-block;
}
/* Play icon */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 50px;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Dark overlay effect */
.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.3s ease;
}

/* Hover effect */
.image-wrapper:hover::after {
  opacity: 1;
}

.image-wrapper:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
a {
  text-decoration: none;
}
.footer{
    background: linear-gradient(to bottom, rgba(253, 5, 5, 0.37) 1%, rgba(0,0,0,0));
    box-shadow:  0px 115px 60px 119px rgb(253, 5, 5);
}
.footer p {
    color: #777;
    font-size: 15px;
    margin-top: 15vh;
    margin-bottom: 0px;
    border-top: 1px solid rgb(255, 0, 0);
    padding-top: 15px;
}
.footer a img{
    display: block;
    width: 90px;
    max-width: 40%;
    height: 65%;
    margin: auto;
    padding: 20px;
    transition: 1s;
}





.button{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.glitch-btn{
  position:relative;
  padding:10px;
  font-size:15px;
  color:#fff;
  text-decoration:none;
  border-radius: 7px;
  letter-spacing:3px;
  overflow:hidden;
  transition:0.3s;
}

/* glitch layers */
.glitch-btn::before,
.glitch-btn::after{
  content:"SHOW ALL";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#161616;
  overflow:hidden;
}

.glitch-btn::before{
  color:#ff00ff;
  z-index:-1;
}

.glitch-btn::after{
  color:#00ffff;
  z-index:-2;
}

/* hover glitch animation */
.glitch-btn::before{
  animation:glitch1 0.3s infinite;
}

.glitch-btn::after{
  animation:glitch2 0.3s infinite;
}

.glitch-btn:hover{
  box-shadow:0 0 25px 1px #ff4400;
}

@keyframes glitch1{
  0%{transform:translate(2px,-2px);}
  25%{transform:translate(-2px,2px);}
  50%{transform:translate(2px,2px);}
  75%{transform:translate(-2px,-2px);}
  100%{transform:translate(2px,-2px);}
}

@keyframes glitch2{
  0%{transform:translate(-2px,2px);}
  25%{transform:translate(2px,-2px);}
  50%{transform:translate(-2px,-2px);}
  75%{transform:translate(2px,2px);}
  100%{transform:translate(-2px,2px);}
}





@media (max-width: 900px){

.images{
    gap: 20px;
}

.background{
    width: 45%;
    max-width: 200px;
    min-width: 120px;
}
.background h1{
    margin-top: 5px;
    font-size: 12px;

}

.backgroundimage{
    margin-top: 80px;
}

input{
    width: 80%;
}


p, h1 {
    font-size: 14px;
    line-height: 1.5;
}
.video-container {
    padding-top: 30%;
}
}