.container {
  position: fixed;
  top: 192px; /* 10vw của 1920px */
  left: 10px; /* calc(100vw * 1 / 1920) của 1920px */
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s ease;
}

.float-top > img {
  width: 199px; /* calc(100vw * 199 / 1920) của 1920px */
  pointer-events: none;
}

.float-top {
  height: 174px; /* 9.0625vw của 1920px */
  margin-bottom: -24px; /* -1.25vw của 1920px */
}

.float-body {
  background: url(../images/float-bg-JODxTYAf.png) no-repeat center center;
  background-size: cover;
  width: 100%; /* calc(100vw * 164 / 1920) của 1920px */
  padding-left: 0;
  padding-top: 60px; /* 3.125vw của 1920px */
  padding-bottom: 20px; /* calc(100vw * 20 / 1920) của 1920px */
  box-sizing: border-box;
  z-index: -1;
  position: relative;
  right: 1px; /* calc(100vw * 1 / 1920) của 1920px */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.float-body.hidden {
  display: none;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9.6px; /* 0.5vw của 1920px */
  font-size: 17px; /* calc(100vw * 17 / 1920) của 1920px */
  height: 44px; /* calc(100vw * 44 / 1920) của 1920px */
  cursor: pointer;
  color: #fff0d3;
  text-align: left;
  transition: all 0.2s ease;
  padding-left: 0;
}

.download-item:hover {
  color: #ffae00;
  transform: scale(1.05);
}

.download-item i {
  font-size: 20px; /* calc(100vw * 20 / 1920) của 1920px */
  width: 25px; /* calc(100vw * 25 / 1920) của 1920px */
  text-align: center;
}

.float-bottom {
  background: url(../images/float-bottom-XPjn6ojm.png);
  width: 123px; /* calc(100vw * 123 / 1920) của 1920px */
  height: 60px; /* 3.125vw của 1920px */
  background-size: 100% 100%;
  z-index: -1;
  position: relative;
  right: 10px; /* calc(100vw * 10 / 1920) của 1920px */
  cursor: pointer;
}

.arrow {
  width: 18px; /* 0.9375vw của 1920px */
  height: 8px; /* calc(100vw * 0.08 / 19.2) của 1920px */
  background: url(../images/download.png) no-repeat center center;
  position: relative;
  left: 52px; /* calc(100vw * 52 / 1920) của 1920px */
  top: 22px; /* calc(100vw * 22 / 1920) của 1920px */
  z-index: 99;
  transition: transform 0.3s ease;
}

.arrow:not(.open) {
  transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    top: 15vh;
    left: 10px;
  }

  .float-top > img {
    width: 150px;
  }

  .float-top {
    height: 60px;
    margin-bottom: -20px;
    position: relative;
    z-index: 2;
  }

  .float-body {
    width: 200px;
    padding-left: 10px;
    padding-top: 100px;
    padding-bottom: 15px;
    right: 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .download-item {
    font-size: 17px;
    height: 35px;
    gap: 8px;
    padding-left: 15px;
    min-height: 44px;
  }

  .download-item i {
    font-size: 17px;
    width: 20px;
    min-width: 20px;
  }

  .download-item span {
    font-size: 17px;
  }

  .float-bottom {
    width: 100px;
    height: 25px;
    right: 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
  }

  .arrow {
    width: 12px;
    height: 12px;
    left: 40px;
    top: 6px;
  }
}

@media (max-width: 480px) {
  .container {
    top: 12vh;
    left: 5px;
  }

  .float-top > img {
    width: 100px;
    margin-bottom: -20px;
  }

  .float-top {
    height: 50px;
  }

  .float-body {
    width: 180px;
    margin-top: 0;
    padding-top: 100px;
  }

  .float-bottom {
    width: 90px;
    height: 22px;
  }
}

@media (max-width: 360px) {
  .container {
    top: 10vh;
    left: 2px;
  }

  .float-top > img {
    width: 90px;
    margin-bottom: -50px;
  }

  .float-top {
    height: 45px;
  }

  .float-body {
    width: 160px;
    padding-top: 100px;
  }

  .float-bottom {
    width: 80px;
    height: 20px;
  }
}

