@font-face {
  font-family: 'Russo One';
  src: url("../fonts/RussoOne-Regular.woff2") format("woff2"), url("../fonts/RussoOne-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bungee Spice';
  src: url("../fonts/BungeeSpice-Regular.woff2") format("woff2"), url("../fonts/BungeeSpice-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font: 400 18px 'Bungee Spice', sans-serif;
  background: #000;
  color: #fff;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main {
  width: 100vw;
  height: 100vh;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .main {
    margin-top: 50px;
    height: calc(100vh - 50px);
  }
}

.main__video {
  display: flex;
  align-items: center; /* or flex-start for top alignment */
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .main__video {
    align-items: flex-start;
    transform: translateY(10px); /* Keep your mobile offset */
  }
}

.main__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .main__video video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media only screen and (max-width: 767px) {
  .main__video video {
    -o-object-position: top;
    object-position: top;
  }
}

.main__video-item {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .main__video-item {
    width: 100%;
    height: 100%;
  }
}

.main__twitter {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: absolute;
  top: 3vw;
  left: 3vw;
}

@media only screen and (max-width: 767px) {
  .main__twitter {
    top: 100px;
    left: 15px;
  }
}

.main__twitter svg {
  width: 8vw;
  height: 8vw;
}

@media only screen and (max-width: 767px) {
  .main__twitter svg {
    width: 50px;
    height: 50px;
  }
}

.main__twitter:hover {
  transform: scale(1.1);
}

.main__telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: absolute;
  top: 3vw;
  right: 3vw;
}

@media only screen and (max-width: 767px) {
  .main__telegram {
    right: 15px;
    top: 100px;
  }
}

.main__telegram svg {
  width: 8vw;
  height: 8vw;
}

@media only screen and (max-width: 767px) {
  .main__telegram svg {
    width: 50px;
    height: 50px;
  }
}

.main__telegram:hover {
  transform: scale(1.1);
}

.main__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: absolute;
  top: 6vw;
  left: 5vw;
}

@media only screen and (max-width: 767px) {
  .main__buy {
    left: 15px;
    top: 60px;
  }
}

.main__buy svg {
  width: 8vw;
  height: 8vw;
}

@media only screen and (max-width: 767px) {
  .main__buy svg {
    width: 50px;
    height: 50px;
  }
}

.main__buy:hover {
  transform: scale(1.1);
}


.main__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  color: #fff;
  font-size: 55px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: 300ms;
  cursor: pointer;
  -webkit-animation: pulse 2.5s linear infinite;
  animation: pulse 2.5s linear infinite;
}

@media only screen and (max-width: 1399px) {
  .main__btn {
    top: 85%;
  }
}

@media only screen and (max-width: 767px) {
  .main__btn {
    top: 30%;
  }
}

.main__btn.active {
  display: none;
}

@-webkit-keyframes pulse {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

.main__btn:hover {
  -webkit-animation: none;
  animation: none;
}

.main__video-mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .main__video-mobile {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .main__video-desk {
    display: none;
  }
}

.header {
  display: none;
}

@media only screen and (max-width: 1399px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    background: #000;
  }
}

.header ul {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .header ul {
    justify-content: center;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .header ul li {
    width: 100%;
  }
}

.header ul li a {
  display: block;
  padding: 25px 35px;
  font-size: 18px;
  color: #dfdfdf;
}

@media only screen and (max-width: 991px) {
  .header ul li a {
    padding: 20px 25px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .header ul li a {
    padding: 15px 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 14px;
  }
}

.header ul li a:hover {
  background: #c18207;
}

.volume {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 150;
  cursor: pointer;
}

@media only screen and (max-width: 1399px) {
  .volume {
    top: 85px;
    right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .volume {
    top: 60px;
    right: 15px;
  }
}

.volume span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

@media only screen and (max-width: 767px) {
  .volume span {
    width: 45px;
    height: 45px;
  }
}

.volume span:first-child {
  display: none;
}

.volume span svg {
  width: 100%;
  height: auto;
}

.volume.active span:first-child {
  display: block;
}

.volume.active span:last-child {
  display: none;
}


.main__demo {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: absolute;
  bottom: 3vw; 
  left: 50%; 
  transform: translateX(-50%); 
}

.main__demo svg {
  width: 20vw; 
  height: auto; 
}

@media only screen and (max-width: 767px) {
  .main__demo {
    bottom: 50px; 
  }
  .main__demo svg {
    width: 80%; 
  }
}

.main__demo:hover {
  transform: translateX(-50%) scale(1.1); 
}


