/* ======= Basic style ======= */
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  /* overflow-x: hidden; */
  background: #000;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #555;
  overflow-x: hidden;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #555;
  margin-bottom: 5px;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 21px;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 15px 0;
  color: #000;
}
img {
  width: 100%;
  height: auto;
}
img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #f4f4f4;
}

span,
a,
a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

b {
  font-weight: 400;
  color: #555;
}

/* text field */
input[type='password']:focus,
input[type='email']:focus,
input[type='text']:focus,
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus,
textarea:focus {
  outline: none;
}

input[type='password'],
input[type='email'],
input[type='text'],
input[type='file'],
textarea {
  max-width: 100%;
  margin-bottom: 10px;
  /* padding: 15px 0; */
  height: auto;
  background-color: #ddc24a;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid #28e30230;
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input:focus,
textarea:focus {
  border-bottom-width: 1px;
  border-color: #26e302;
}

input[type='submit'],
input[type='reset'],
input[type='button'],
button {
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.75em;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  background: #ddc24a;
  border: none;
}

input[type='submit']:hover {
  background-color: #f4f4f4;
  color: #555;
  border: none;
}

select {
  padding: 10px;
  border-radius: 5px;
}

table,
th,
tr,
td {
  border: 1px solid #f4f4f4;
}

th,
tr,
td {
  padding: 10px;
}

input[type='radio'],
input[type='checkbox'] {
  display: inline;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #555;
  font-size: 16px;
  font-weight: 400;
}

.top-header, .mobile-header{
    position: absolute;
    z-index: 9;
    padding: 25px 0;
    width: 100%;
}
.top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-wrap-left {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 994px;
}
.logo {
    width: 200px;
}
.logo img {
    width: 180px;
}
.navber {
    flex: 1;
}
.navber ul {
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.navber ul li {
    display: flex;
    gap: 42px;
}
.navber ul li a{
  text-decoration: none;
  color: #F5F5F7;
}
.top-wrap-right ul {
    padding: 0;
    text-align: right;
    display: flex;
    gap: 5px;
}
.btn-gold {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #A77000;
    background: linear-gradient(98deg, rgba(182, 42, 209, 1) 0%,
    rgba(103, 95, 245, 1) 49%,
    rgba(182, 42, 209, 1) 100%);
    width: 100px;
    height: 39px;
    border-radius: 100px;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: .4s ease-out;
}
.btn-gold:hover {
    display: flex;
    background: linear-gradient(98deg, rgba(103, 95, 245, 1) 0%,
    rgba(182, 42, 209, 1) 49%,
    rgba(103, 95, 245, 1) 100%);
    color: #fff;
}
.btn-border {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100px;
  height: 39px;
  border-radius: 100px;

  font-size: 16px;
  font-weight: 400;
  color: #F5F5F7;
  text-decoration: none;

  position: relative;

  transition: all 0.4s ease-out;
}
.btn-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 100px;
  background: linear-gradient(
    98deg,
    rgba(103, 95, 245, 1) 0%,
    rgba(182, 42, 209, 1) 100%,
    rgba(103, 95, 245, 1) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.btn-border:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100px;
  height: 39px;
  border-radius: 100px;

  font-size: 16px;
  font-weight: 400;
  color: #F5F5F7;
  text-decoration: none;

  position: relative;

  transition: all 0.4s ease-out;
}

.banner-sec {
    position: relative;
    top: 0;
    width: 100%;
    height: 840px;
    overflow: hidden;
}
.banner-sec video, .banner-sec img {
    width: 100%;
}

.banner-content {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
}
.banner-content h1{
  font-size: 60px;
  font-family: Montserrat;
  font-weight: 800;
  background: linear-gradient(
    98deg,
    #fff 0%,
    #B62AD1 40%,
    #0A0747 99%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
}
.banner-content h1 span.whit-text{
  color: #F5F5F7;
  font-weight: 600;
}
.btn-box {
    margin: 38px 0 0;
    display: flex;
    gap: 16px;
}
.btn-banner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    background: #A77000;
    background: linear-gradient(98deg, rgba(182, 42, 209, 1) 0%,
    rgba(103, 95, 245, 1) 49%,
    rgba(182, 42, 209, 1) 100%);
    width: 204px;
    height: 87px;
    border-radius: 5px;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: .4s ease-out;
    box-shadow: 0 4px 45px #0113B2;
}
.btn-banner span{
  font-weight: 400;
}
.btn-banner:hover {
    display: flex;
    background: linear-gradient(98deg, rgba(103, 95, 245, 1) 0%,
    rgba(182, 42, 209, 1) 49%,
    rgba(103, 95, 245, 1) 100%);
    color: #fff;
}
.price-sec{
  padding: 60px 0;
  background: #000;
}

.price-sec h2{
    background: linear-gradient(
    98deg,
    #4B31E8 46%,
    #B62AD1 76%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 40px;
}
.price-box{
  display: flex;
  gap: 30px;
  align-items: center;
}
.price-box-item{
  flex: 1;
  background: linear-gradient(98deg, #675FF5 0%, #B62AD1 99%);
  border-radius: 10px;
  padding: 2.5px;
  box-shadow: 0 4px 45px #0113B2;

}
.price-box-item:nth-child(2) {
    background: linear-gradient(98deg, #B62AD1 0%, #675FF5 99%);
}
.price-box-item:nth-child(4) {
    background: linear-gradient(98deg, #B62AD1 0%, #675FF5 99%);
}
.price-box-item-content{
  background: #000;
  border-radius: 10px;
  padding: 25px;
  height: 450px;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.price-box-item-content h4{
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  min-height: 70px;
}
.price-box-item-content h3{
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  line-height: normal;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
}
.price-box-item:nth-child(2) .price-box-item-content h3, .price-box-item:nth-child(4) .price-box-item-content h3{
  background: linear-gradient(
    98deg,
    #fff 0%,
    #675FF5 99%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-box-item:nth-child(1) .price-box-item-content h3, .price-box-item:nth-child(3) .price-box-item-content h3{
  background: linear-gradient(
    98deg,
    #675FF5 0%,
    #675FF5 60%,
    #F5F5F7 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-box-item-content h3 span, .price-box-item-content h3 p{
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}
.price-box-item-content .btn-join {
    margin: 20px 0 0;
}
.btn-join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  height: 55px;
  border-radius: 5px;

  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  background: #ff0000;
  position: relative;

  transition: all 0.4s ease-out;
}
.btn-join::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 5px;
  background: linear-gradient(
    98deg,
    #675FF5 0%,
    #ff0000 99%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.btn-join:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.price-box-item:nth-child(2) .btn-join::before{
  background: linear-gradient(
    98deg,
    #B62AD1 0%,
    #675FF5 99%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.price-box-item:nth-child(4) .btn-join::before{
  background: linear-gradient(
    98deg,
    #B62AD1 0%,
    #675FF5 99%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.danc-sec{
  padding: 60px 0;
  background: #000;
}
.price-box-item-content h3 span.red-text{
    background: red;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.danc-sec h2{
    background: linear-gradient(
    98deg,
    #4B31E8 46%,
    #B62AD1 76%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 40px;
}
.danc-box {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.danc-box-item{
  background: linear-gradient(98deg, #675FF5 0%, #B62AD1 99%);
  border-radius: 10px;
  padding: 2.5px;
  box-shadow: 0 4px 45px #0113B2;
  width: 23%;

}
.swiper-slide .danc-box-item{
  flex: 1;
  background: linear-gradient(98deg, #675FF5 0%, #B62AD1 99%);
  border-radius: 10px;
  padding: 2.5px;
  box-shadow: 0 4px 45px #0113B2;
  width: 100%;

}
.danc-box-item:nth-child(2) {
    background: linear-gradient(98deg, #B62AD1 0%, #675FF5 99%);
}
.danc-box-item:nth-child(4) {
    background: linear-gradient(98deg, #B62AD1 0%, #675FF5 99%);
}

.danc-box-item-content-overlay-content{
  background: #000;
  border-radius: 10px;
  padding: 0;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.danc-box-item-content-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, #000 79%);
}
.danc-box-item:nth-child(2) .btn-join::before{
  background: linear-gradient(
    98deg,
    #B62AD1 0%,
    #675FF5 99%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.danc-box-item:nth-child(4) .btn-join::before{
  background: linear-gradient(
    98deg,
    #B62AD1 0%,
    #675FF5 99%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.danc-box-item-content-overlay h4{
  background: linear-gradient(
    98deg,
    #fff 0%,
    #0FF8FD 40%,
    #675FF5 99%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.danc-box-item-content-overlay-content img {
    min-height: 550px;
    object-fit: cover;
}
.work-sec{
  padding: 60px 0;
  background: #000;
}

.work-sec h2{
    background: linear-gradient(
    98deg,
    #4B31E8 46%,
    #B62AD1 76%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.live-sec{
  background: #000;
}
.live-box{
  display: flex;
  justify-content: space-between;
}
.live-box-item-left, .live-box-item-right {
    flex: 1;
}
.live-box-item-left-box{
  width: 100%;
  max-width: 633px;
  background: url(../images/bg3.svg) center center no-repeat;
  padding: 49px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 45px #0113B2;
}
.live-box-item-left-box h2{
    background: linear-gradient(
    98deg,
    #4B31E8 46%,
    #B62AD1 76%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #ccc;
}
.live-box-item-left-box h3{
   background: linear-gradient(
    98deg,
    #4B31E8 46%,
    #B62AD1 76%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 46px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #ccc;
}
.live-box-item-left-box h4 {
        background: linear-gradient(98deg, #fff 0%, #675FF5 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    line-height: normal;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
}
.live-box-item-left-box h4 span{
  font-size: 20px;
  font-weight: 6\400;
}
.live-box-item-left-box .btn-join{
  max-width: 348px;
  text-transform: uppercase;
  margin: 0 auto;
  background: transparent;
}
.live-box-item-right-box .btn-join{
  background: transparent;
}
 .countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

  .box {
    text-align: center;
    background: linear-gradient(135deg, #7a00ff, #007bff);
    padding: 18px 20px;
    border-radius: 12px;
    min-width: 80px;
    color: #fff;
  }

  .box span {
    font-size: 34px;
    font-weight: 700;
    display: block;
  }

  .box small {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.85;
  }
 .live-box-item-right {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    background: linear-gradient(98deg, #B62AD1 0%, #675FF5 99%);
    padding: 2px;
    border-radius: 10px;
    box-shadow: 0 4px 45px #0113B2;
}
.live-box-item-right-box{
  background: #000;
    padding: 55px 40px;
    border-radius: 10px;
}
.live-box-item-right-box-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.live-cam {
    flex: 1;
}
.live-cam img {
    width: 170px;
}
.live-cap-title {
    flex: 1;
}
.live-cap-title h2 {
    display: flex;
    width: 100%;
    max-width: 250px;
    background: linear-gradient(98deg, #fff 0%, #675FF5 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    flex-direction: column;
    font-weight: 700;
}
.live-cap-title h2 span{
    color: #fff;
}
.live-box-item-right-box ul {
    padding: 30px 0;
    font-size: 20px;
    color: #fff;
}
.live-box-item-right-box ul li{
    position: relative;
    padding: 0 0 0 30px;
}
.live-box-item-right-box ul li:after {
    position: absolute;
    background: url(../images/star-icon.svg) no-repeat center center;
    content: '';
    width: 19px;
    height: 19px;
    left: 0;
    top: 26%;
}
.work-box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.work-box-item {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: url(../images/bg2.svg) center center no-repeat;
    display: flex;
    flex-direction: column;
    padding: 33px;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.work-box-item h4{
  background: linear-gradient(
    98deg,
    #fff 0%,
    #0FF8FD 40%,
    #675FF5 99%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 400;
}
.work-box-item p{
  color: #676767;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.step-number {
    position: absolute;
    top: -15px;
    background: linear-gradient(98deg, rgba(103, 95, 245, 1) 0%,
    rgba(182, 42, 209, 1) 49%,
    rgba(103, 95, 245, 1) 100%);
    width: 53px;
    height: 53PX;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.step-number h3{
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    font-family: Montserrat;
    color: #fff;
}



.footer-sec {
    background: #000;
    padding: 60px 0 30px;
}
.footer-wrap {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    justify-content: center;
}
.footer-left{
  width: 100%;
  max-width: 486px;
}
.support-sec{
  width: 100%;
  max-width: 278px;
}
.footer-social{
  width: 100%;
  max-width: 248px;
}
.footer-download{
  width: 100%;
  max-width: 215px;
}
.footer-wrap h3{
  font-family: Inter;
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0px;
  background: linear-gradient(
    98deg,
    #4B31E8 46%,
    #B62AD1 76%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}
.footer-left ul{
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 171%;
  letter-spacing: 0px;
  padding: 0;
}
.footer-left ul li{
  padding: 0;
  list-style: none;
}
.footer-left ul li a{
  color: #676767;
  text-decoration: none;
}
.footer-left p{
  font-family: Inter;
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 171%;
  letter-spacing: 0px;
  padding: 0;
}
.support-sec ul{
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 171%;
  letter-spacing: 0px;
  padding: 0;
}
.support-sec ul li{
  padding: 0;
  list-style: none;
}
.support-sec ul li a{
  color: #676767;
  text-decoration: none;
}
.footer-social ul{
  display: flex;
  gap: 10px;
  padding: 0;
}
.footer-social ul li{
  padding: 0;
  list-style: none;
}
.footer-social ul li a{
  color: #676767;
  text-decoration: none;
}
.ooter-download img{
  width: 100%;
  max-width: 139px;
}
.copy-text {
    text-align: center;
    color: #676767;
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0px;
    padding: 30px 0 0;
}
.copy-text p{
  margin:0 ;
}

.cat-sec {
    background: #000;
    padding: 120px 0 60px;
}
.cat-sec h1{
    color: #DFC64E;
    font-family: Inter;
    font-weight: 600;
    font-size: 80px;
    text-align: center;
}
.cat-sec h2{
    color: #DFC64E;
    font-family: Inter;
    font-weight: 600;
    font-size: 42px;
    text-align: left;
}
.cat-sec ul{
    color: #fff;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    padding: 60px 0;
}
.cat-sec ul li{
  list-style: none;
  display: inline-block;
    padding: 5px;
}
.cat-sec ul li a{
  background: #d9d9d91a;
  padding: 14px 22px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
}
.movie-box {
    display: flex;
    flex-wrap: wrap;
    gap: 27px;
    justify-content: space-between;
}
.movie-box-item {
  display: flex;
  background: #0f1115;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  max-width: 734px;
}

/* LEFT IMAGE */
.movie-box-item-image {
  width: 200px;
  flex-shrink: 0;
}

.movie-box-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT AREA */
.movie-box-item-content {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
}

/* LEFT CONTENT */
.movie-box-item-content-left h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.movie-box-item-content-left p {
  font-size: 14px;
  color: #b5b5b5;
  margin-bottom: 14px;
  max-width: 420px;
  line-height: 1.4;
}

/* STATS */
.movie-box-item-content-left ul {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.movie-box-item-content-left ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #cfcfcf;
}

.movie-box-item-content-left ul li img {
  width: 14px;
}

/* PLAY BUTTON */
.movie-box-item-content-left a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a24d;
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.movie-box-item-content-left a img {
  width: 16px;
}

.movie-box-item-content-left a:hover {
  background: #e1bb5e;
}

/* RIGHT ICONS */
.movie-box-item-content-right ul {
  display: flex;
  gap: 12px;
}

.movie-box-item-content-right ul li {
  width: 36px;
  height: 36px;
  background: #1b1e25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.movie-box-item-content-right ul li img {
  width: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .movie-box-item {
    flex-direction: column;
  }

  .movie-box-item-image {
    width: 100%;
    height: 220px;
  }

  .movie-box-item-content {
    flex-direction: column;
    gap: 15px;
  }

  .movie-box-item-content-right ul {
    justify-content: flex-end;
  }
}


.inner-banner {
    height: 320px;
    padding: 210px 0 0 0;
    text-align: center;
    background: #000;
}
.inner-banner h1{
  background: linear-gradient(
    98deg,
    #fff 0%,
    #B62AD1 40%,
    #0A0747 99%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0px;
    text-transform: uppercase;
}
div#mobileMenu {
    display: none;
}
.mobile-header {
    display: none;
}
ul.mobile-nav {
    padding: 0;
}
ul.mobile-nav li a{
    text-decoration: none;
    color: #fff;
}
/* Hide desktop header on mobile */
@media (max-width: 991px) {
  .top-header { display: none; }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    z-index: 999;
  }

  .hamburger {
    width: 30px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 4px;
    background: #fff;
    margin: 5px 0;
  }
  /* CROSS STATE */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 40px 20px;
    transition: 0.3s ease;
    z-index: 1;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-nav li {
    margin-bottom: 20px;
  }

  .mobile-nav a {
    font-size: 18px;
    font-weight: 600;
  }

  .mobile-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
  }
  div#mobileMenu {
    display: block;
    background: #000;
    top: 0;
    padding-top: 170px;
}
}

.dan-box {
    display: flex;
    gap: 30px;
}
.dan-box-image {
    width: 40%;
}
.dan-box-content {
    width: 60%;
}
.dan-box-content p{
    color: #fff;
}
.danc-video-overlay h4 {
    color: #fff;
    text-align: center;
}
.danc-box-item-content-overlay-content.lock:after {
    content: '';
    position: absolute;
    background: #00000085;
    width: 100%;
    height: 100%;
}
.danc-box-item-content-overlay-content.lock:before {
    content: '';
    position: absolute;
    background: url(../images/lock-icon.svg) center center no-repeat;
    width: 100%;
    height: 100%;
    z-index: 99;
}
.swiper-button-prev,
.swiper-button-next {
      color: #fff !important;
    background: rgba(0, 0, 0, 0.5);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Video Thumbnail with Play Button */
.video-thumbnail-wrapper {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 550px;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.video-play-btn svg {
    margin-left: 4px;
}
.video-thumbnail-wrapper:hover .video-play-btn {
    background: rgba(103, 95, 245, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}
.danc-box-item-content-overlay-content video {
    min-height: 550px;
    object-fit: cover;
    border-radius: 10px;
}
.footer-left p {
    display: none;
}


button.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #A77000;
    background: linear-gradient(98deg, rgba(182, 42, 209, 1) 0%, rgba(103, 95, 245, 1) 49%, rgba(182, 42, 209, 1) 100%);
    width: 100px;
    height: 39px;
    border-radius: 100px;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: .4s ease-out;
}
.dropdown { position: relative; display: inline-block; }

.dropdown-content {
  display: none;
  position: absolute;
  background: linear-gradient(98deg, rgba(182, 42, 209, 1) 0%,
    rgba(103, 95, 245, 1) 49%,
    rgba(182, 42, 209, 1) 100%);
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  margin: 8px 0 0;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #fff;
}
.dropdown-content a:hover{color:#fff;}
.show { display: block; }
.page-content h2 {
    font-size: 24px;
    text-align: left;
    margin: 0 0 15px;
}
.page-content ul {
    padding: 0;
}
.page-content ul li{
    padding: 0;
}
.page-content ul li {
    padding: 0 0 5px 24px;
    position: relative;
}
.page-content ul li:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    left: 0;
    top: 7px;
    background: linear-gradient(98deg, #fff 0%, #B62AD1 40%, #0A0747 99%);
    border-radius: 50%;
}
.page-content p {
    color: #fff;
}