* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #131214;
  color: #fff;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  text-align: center;
  min-height: 100vh;
  width: 100vw;
  position: relative;
}
.bg {
  position: fixed;
  top: 10%;
  left: 0%;
  max-width: 100vw;
  opacity: 0.4;
  margin: auto;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #131214;
}

.logo {
  /* width: 100px; */
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f62222;
  position: relative;
}
.logo-symbol {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo-text {
  font-size: 16px;
  font-weight: bold;
}
.form_wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0px;
}
.video {
  width: 100%;
  height: auto;
  display: block;
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 300px;
  border-radius: 15px;
  height: auto;
  background: #fff;
  color: #131214;
  padding: 10px;
}
.video-list {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.video-container {
  width: 100px;
}
.video-container img {
  width: 100%;
}
.text {
  font-size: 10px;
  padding: 5px;
}
.footer-content {
  font-size: 12px;
  padding: 10px 20px;
  color:#958f8f;
}
a {
  color: #958f8f;
  font-size: 12px;
}
.btn {
  background: linear-gradient(to bottom, #fe3232, #981e1e);
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 200px;
  height: 54px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
}
h4 {
  font-size: 18px;
  margin: 10px 0;
}
.box {
  margin: 10px auto;
}
.video-text {
  font-size: 8px;
  color: #fff;
  text-align: right;
  padding: 5px;
  margin-right: 30px;
}
@media (min-width: 390px) and (max-width: 500px) {
  .footer-content {
    font-size: 16px;
  }
  h4 {
    font-size: 28px;
    margin: 0 5px;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .video-container {
    width: 120px;
  }
}

@media (min-width: 500px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  header,
  footer {
    width: 500px;
  }
  .form_wrapper {
    width: 400px;
  }
  .video-list {
    width: 500px;
  }

  .bg {
    width: 100vw;
    margin: auto;
  }
  .video-text {
    margin-right: 90px;
  }
}
