@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&family=SN+Pro:ital,wght@0,200..900;1,200..900&family=Space+Grotesk:wght@300..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2, p {
  margin: 10px;
}

ul {
  list-style-type: none;
  /* overflow: hidden; */
}
.container{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
body{
    color: #ffffff;
    background-image: url(../img/bg.jpg);
    font-family: "Baloo Da 2", sans-serif;
}

::-webkit-scrollbar {
  width: 10px;
}
.mobi{
  display: none;
}
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #ffd79a; 
  border-radius: 3px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ff9800; 
  border-radius: 3px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #dd8705; 
}

/* menu css */
nav{
    background-color: rgba(0,0,0,0.85);
}
nav .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-menu {
  display: flex;
}
.top-menu a {
    color: #ffffff !important;
}
.top-menu li {
  /* float: left; */
}

.top-menu li a, .dropbtn {
  display: inline-block;
  text-align: center;
  padding: 16px 16px;
  text-decoration: none;
}

.top-menu li a:hover, .dropdown:hover .dropbtn {
  background-color: #ff9800;
}

.top-menu li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  background-color: #000000;
}

.dropdown-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}
/* hero css */
.hero-inner{
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-inner h1{
    display: block;
    text-align: center;
    font-size: 70px;
}
.hero-inner span{
    display: inline-block;
    font-size: 18px;
    margin-top: -5px;
}
.hero-inner p{
    font-size: 24px;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* movie box */
.movie-box-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.movie-box-single{
    max-width: 270px;
    min-height: 320px;
    width: 100%;
    background-color:rgba(0,0,0,0.85);
    padding: 0px 10px 10px 10px;
    color: #ffffff;
    border-radius: 3px;
    transition: 0.3s;
}
.movie-box-single:hover{
    border: 1px solid #ff9800;
}
.movie-box-title{
    position: relative;
    padding: 10px 0;
}
.movie-box-title::after{
    content: "";
    height: 1px;
    width: 100%;
    background-color: #ff9800;
    position: absolute;
    bottom: 0;
    left: 0;
}
.movie-box-single ul{
    margin-top: 10px;
}
.movie-box-single ul li{
    list-style: none;
}
.movie-box-single ul li a{
    display: block;
    text-decoration: none;
    padding: 4px 10px;
    color: #ffffff;
    border-radius: 3px;
    transition: 0.3s;
}
.movie-box-single ul li a:hover{
    background-color: #ff9800;
}

/* footer */
footer{
    background-color: #000000;
}
footer p{
    padding: 20px 0;
    margin: 0;
    text-align: center;
    color: #ffffff;
}






.animated-button1 {
  /* background: linear-gradient(-30deg, #3d0b0b 50%, #2b0808 50%); */
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button1::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}

.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#ed1c24));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #ed1c24);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#ed1c24));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #ed1c24);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#ed1c24));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #ed1c24);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#ed1c24));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #ed1c24);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}


.neon-text {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff9800, 0 0 20px #ff9800, 0 0 40px #ff9800, 0 0 80px #ff9800;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff9800, 0 0 10px #ff9800, 0 0 20px #ff9800, 0 0 40px #ff9800, 0 0 80px #ff9800;
    }
    100% {
        text-shadow: 0 0 10px #ff2200, 0 0 20px #ff2200, 0 0 40px #ff2200, 0 0 80px #ff2200, 0 0 160px #ff2200;
    }
}


.popup{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box{
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 90%;
  max-height: 90%;
}

.popup-box img{
  width: 100%;
  max-width: 800px;
  border-radius: 3px;
  display: block;
}

.close-btn{
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #000;
}





@media screen and (max-width: 600px) {
  .mobi{
    display: block;
  }
  .top-menu {
    display: block;
  }
  #menu-btn{
    font-size: 25px;
    color: #ffffff;
  }
  #myTopnav{
    position: absolute;
    top: 50px;
    right: -100%;
    background-color: #000;
    width: 50%;
    transition: 0.3s;
  }
  .show-mobi-nav{
    right: 0% !important;
  }
  #myTopnav ul li{
    display: block;
    float: none;
  }
  .top-menu li.dropdown {
    display: block;
  }
  .dropdown-content {
    right: 100%;
    margin-top: -60px;
  }
  .hero-inner h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .hero-inner span {
    font-size: 14px;
  }
  .hero-inner p {
    text-align: center;
    font-size: 14px;
  }
}