body {
  padding: 0;
  margin: 0;
  background: #f7f9fa url("../images/background-light.jpg") center / cover;
  width: 100%;
}

.styled-text {
  /* Font Color */
  color: #f6db4f !important; /* Orange-red */

  /* Outline: Width and Color */
  -webkit-text-stroke: 1px red !important;

  /* Optional: Enhance appearance */
  font-size: 40px;
  font-weight: 900;
}

.banner-text {
  font-size: 48px;
  font-weight: 900 !important;
  color: #ffe066 !important;
  font-family: "Arial Black", sans-serif !important;

  text-shadow:
    0 0 2px #ff0000,
    2px 2px 0 #ff0000,
    -2px -2px 0 #ff0000,
    3px 3px 0 #cc0000,
    -3px -3px 0 #cc0000;
}

#ultest .back_XL,
#ultest .ping-label {
  text-align: center;
  width: calc(100% / 7);
}

#ultest .line-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#ultest .line-grid-mobile {
  display: none;
}

#ultest .line-grid-table {
  border: 1px solid #ef3d33;
  background-color: #fff;
}

#ultest .line-grid-desktop .line-grid-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(6, 1fr);
}

#ultest .line-grid-row + .line-grid-row {
  border-top: 1px solid #ef3d33;
}

#ultest .line-grid-cell {
  min-height: 60px;
  border-right: 1px solid #ef3d33;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #111;
}

#ultest .line-grid-cell:last-child {
  border-right: none;
}

#ultest .line-grid-label {
  background-color: #f7c8c2;
}

#ultest .line-grid-speed-label {
  color: #ef5f57;
}

#ultest .line-grid-link {
  color: #111;
  display: inline-block;
  width: 100%;
}

#ultest .line-grid-link:hover {
  color: #ef3d33;
}

#ultest .line-speed-value {
  color: #ef5f57;
}

#ultest .line-speed-fastest {
  color: #1f9d4d;
}

#ultest .line-grid-mobile .line-grid-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}

#ultest .line-grid-mobile .line-grid-header-row .line-grid-cell {
  min-height: 52px;
}

#ultest .line-grid-mobile .line-grid-action {
  background-color: #fff;
}

#ultest .line-grid-mobile .line-grid-enter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  max-width: 100%;
  min-height: 38px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #ff7a28 0%, #ff5f00 100%);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 12px;
}

#ultest .line-grid-mobile .line-grid-enter-btn:hover {
  color: #fff;
  filter: brightness(0.95);
}

.app-route-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-route-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(6, 1fr);
  border: 1px solid #ef3d33;
  background-color: #f8d1cb;
}

.app-route-cell {
  min-height: 74px;
  border-right: 1px solid #ef3d33;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  padding: 8px 10px;
}

.app-route-cell:last-child {
  border-right: none;
}

.app-route-label {
  color: #ef6159;
  text-shadow:
    -1px 0 #fff,
    0 1px #fff,
    1px 0 #fff,
    0 -1px #fff;
}

.app-route-cell a {
  display: inline-block;
  width: 100%;
  color: #111;
}

.app-route-cell a:hover {
  color: #ef3d33;
}

@media (max-width: 755px) {
  #ultest .line-grid-desktop {
    display: none;
  }

  #ultest .line-grid-mobile {
    display: flex;
  }

  #ultest .line-grid-mobile .line-grid-table {
    margin-bottom: 8px;
  }

  #ultest .line-grid-mobile .line-grid-row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  #ultest .line-grid-mobile .line-grid-cell {
    min-height: 56px;
    font-size: 16px;
    padding: 6px;
  }

  #ultest .line-grid-mobile .line-grid-enter-btn {
    width: 96px;
    min-height: 34px;
    font-size: 16px;
  }

  .app-route-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .app-route-row .app-route-label {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid #ef3d33;
    min-height: 56px;
    font-size: 20px;
    line-height: 1.2;
  }

  .app-route-row .app-route-cell:not(.app-route-label) {
    min-height: 64px;
    font-size: 16px;
  }

  .app-route-grid {
    overflow-x: visible;
  }
}

@media (max-width: 575px) {
  #ultest .line-grid-mobile .line-grid-row {
    grid-template-columns: 1.1fr 0.9fr 1fr;
  }

  #ultest .line-grid-mobile .line-grid-cell {
    min-height: 52px;
    font-size: 15px;
  }

  #ultest .line-grid-mobile .line-grid-enter-btn {
    width: 88px;
    min-height: 32px;
    font-size: 15px;
  }
}

a:hover {
  color: #fff;
  text-decoration: none !important;
}

.header {
  height: 100px;
  margin-bottom: 20px;
}

.hidden-md {
  display: none;
}

.navia {
  display: flex;
  align-items: center;
  height: 100%;
  width: 1200px;
  margin: 20px auto;
}

.header .logo img {
  height: 100%;
  padding: 10px 0;
  image-orientation: none;
}

.header .header-links {
  margin-left: auto;
}

.header .header-links a {
  color: #000;
  font-size: 36px;
  font-weight: bold;
  font-family: serif;
  cursor: pointer;
  margin: 0 30px;
}

body .row {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto 10px;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10px;
}

.bottom-btn-row {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  padding: 4px 0 8px;
}

.bottom-btn-item {
  display: block;
}

.bottom-btn-item img {
  display: block;
  width: 17em;
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

.content-section {
  display: flex;
  flex-wrap: wrap;
  width: 87%;
}

.back_wathet {
  background-color: #fec9c1;
  border: 1px solid #a90a03;
  height: 100%;
  padding: 10px 20px;
}

.back_wathet.clickable {
  padding: 0;
}

.extra-btn {
  display: block;
  height: calc((156px / 2) - 10px);
  width: 100%;
}

.extra-btn:hover {
  border: 1px solid #1f3246;
}

.extra-btn img {
  height: 100%;
  width: 100%;
}

.bnb_icon_font {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.clickable .bnb_icon_font {
  justify-content: space-evenly;
}

.bnb_icon_font .bif_font {
  color: #ec5e58;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  margin: 12.2px;
}

.bnb_icon_font .bif_font.save-address {
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  border-top: 1px solid #a90a03;
  padding-top: 8px;
}

.bnb_icon_font .bif_font.save-address:hover {
  color: #a90a03;
}

.bif_font.vpn-app {
  font-size: 20px;
}

.url-link-sub-text {
  color: black;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  margin-top: 5px;
}

.back_XL div,
.ping-label div {
  font-size: 14px;
  font-weight: 900;
  line-height: 55px;
}

.back_XL div {
  color: #ec5e58;
}

.ping-label div .bl1 {
  color: #4d4b4b;
}

.ping-label > div > .bl2 {
  color: #ec5e58;
}

.div_entrance {
  background-color: #fff;
  border: 1px solid #ddd;
  height: 110px;
}

.bl1 {
  background-color: #fec9c1;
  border-bottom: 1px solid #a90a03;
  color: #4d4b4b;
  font-weight: 900;
  line-height: 55px;
}

.bl2 {
  background-color: #fff;
}

.back_LX,
.back_LX1 {
  border: 1px solid #a90a03;
}

.back_LX:hover {
  border: 1px solid #1f3246;
}

.back_LX:hover .ent_font {
  transform: scale(1.1);
}

.back_LX + div {
  background-color: #fff;
  box-sizing: border-box;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #a90a03;
}

.join-button {
  display: none;
}

#fastest-link {
  color: #ff00ef;
}

.div_entrance:hover {
  border: 1px solid #39a7fc;
}

.red-background {
  border: 1px solid #a90a03;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.red-background a {
  display: block;
  width: 70px;
  height: 100px;
}

.xianlu-button {
  background: url("../images/xianlu-btn-desktop.gif") no-repeat transparent;
  background-size: 100% 100%;
}

.de_icon {
  font-size: 16px;
  line-height: 50px;
}

.de_icon.full_height {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100% !important;
}

.de_icon:hover {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  z-index: 9999;
}

.de_icon .div_center {
  margin: 0 auto;
}

.back_gray {
  background-color: #fec9c1;
}

.div_center .ent_font {
  color: #4d4b4b;
  font-weight: 900;
  line-height: 55px;
}

.red_font {
  color: red;
}

.id_code {
  display: none;
  height: 150px;
  width: 120px;
  position: absolute;
  right: 65px;
  top: 14.3em;
  background-color: #fff;
  border: 1px solid #ddd;
  z-index: 999999;
}

.id_code .id_code_img .ici_icon {
  background: url("../images/icon.png");
  background-position: -80px -72px;
  height: 120px;
  width: 120px;
}

.ici_font {
  color: #9f9f9f;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  margin: 6px auto;
}

.os_icon {
  height: 48px;
  width: 55px;
  margin: 0 auto;
  background: url("../images/icon.png");
  background-position: 81px -115px;
}

.os_font {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
  width: 36px;
  margin: 3px auto;
}

.time input {
  text-align: center;
  height: 53px;
  width: 100%;
  border: none;
}

/* ************* modal content css *************  */

help-content .help-item {
  box-sizing: border-box;
  border: 8px solid #2161b3;
  padding: 24px;
}

.help-content .help-item .help-title {
  font-size: 14px;
  margin: 0 0 20px;
}

.help-content .help-item .helper-wrapper .helper-title {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.help-content .help-item .helper-wrapper .helper-title span {
  background: #bbb9f2;
  border-radius: 40px;
  padding: 4px 12px;
  margin-right: 12px;
  white-space: nowrap;
  color: #fff;
}

.help-content .help-item .helper-wrapper .helper-img {
  display: block;
  margin: 12px auto 12px;
  width: 80%;
}

.help-content .help-item .helper-wrapper .helper-img.small {
  max-width: 450px;
}

.help-content .help-item .helper-wrapper .helper-img.extra-small {
  max-width: 250px;
}

.help-content .help-item .helper-wrapper .helper-img.big {
  width: 100%;
}

.help-content .help-item .helper-wrapper table {
  border: 1px solid #bbb9f2;
  margin: 0 auto 20px;
  width: 80%;
}

.help-content .help-item .helper-wrapper table thead tr {
  border-bottom: 1px solid #bbb9f2;
}

.help-content .help-item .helper-wrapper table thead tr td {
  background-color: rgba(82, 9, 27, 0.24);
}

.help-content .help-item .helper-wrapper table tr:not(:last-child) {
  border-bottom: 1px solid #bbb9f2;
}

.help-content .help-item .helper-wrapper table td:not(:last-child) {
  border-right: 1px solid #bbb9f2;
}

.help-content .help-item .helper-wrapper table td {
  padding: 4px 6px;
  text-align: center;
}

.flex-col {
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  min-height: 200px;
  border: 1px solid #a90a03;
}

.flex-col:hover {
  border: 1px solid #1f3246;
}

.flex-col a {
  display: flex;
  align-items: center;
  width: 100%;
}

.flex-col a img {
  width: 230px;
  margin: 0 auto;
}

.title-wrapper {
  margin: 30px 0;
}

.title-wrapper img {
  width: 80%;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.left-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 70%;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.button-wrapper .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bbb9f2;
  border-radius: 45px;
  border: 1px solid #d2e3f6;
  margin: 10px;
  width: 30%;
  color: #000;
  font-size: 26px;
  font-weight: bolder;
  text-decoration: none;
}

.button-wrapper .btn > img {
  width: 35px;
  margin-right: 20px;
}

.button-wrapper .btn:hover {
  transform: scale(1.01);
  cursor: pointer;
}

.right-footer {
  width: 30%;
}

.right-footer img {
  height: 350px;
}

#support-section > div:nth-child(2) {
  border-width: 1px 1px 0 1px;
  border-color: #a90a03;
  border-style: solid;
}

.navigator {
  width: 100vw;
  background-image: linear-gradient(-12deg, #ffcac4 0%, #ffffff 100%);
  margin-bottom: 15px;
}

.navigator-item {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  text-decoration: none;
  color: black;
  cursor: pointer;
  padding: 10px 0;
}

.navigator-item:hover {
  transform: scale(1.1);
  color: black;
}

.navigator-item:focus,
.navigator-item:visited {
  color: black;
}

.header-row {
  height: 120px;
  padding-top: 15px;
  font-family: "Ma Shan Zheng", cursive;
  text-align: center;
}

.header-row > div {
  display: flex;
  height: 100%;
}

.header-row > div.logo-container {
  flex-direction: column;
}

.header-row > div:nth-child(1) {
  align-items: flex-start;
}

.header-row > div:nth-child(2) {
  align-items: center;
  justify-content: center;
}

.header-row > div:nth-child(3) {
  align-items: flex-end;
  padding: 0px 0 7px 10px;
}

.cp-logo {
  height: 50px;
  width: auto;
}

.cp-logo-address {
  width: 130px;
  margin-top: 5px;
}

.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #ec5e58;
}

.main-header-text {
  font-size: 60px;
  font-weight: 900;
}

.main-header-sub-text {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.header-right-wrapper {
  width: 60%;
  text-align: center;
  font-size: 18px;
}

.url-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.url-link-wrapper .join-button {
  width: 40%;
}

.url-link-wrapper > .join-button > a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 60px;
  padding: 10px 40px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  overflow: auto;
  transition: opacity 500ms;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
}

.overlay:target {
  display: block;
}

.promo-popup,
.daMaQianDao-popup,
.xianlu-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 80px auto;
  padding: 40px;
  width: 70%;
  position: relative;
  transition: all 5s ease-in-out;
  background-color: #e67475;
  z-index: 10;
  color: #e67475;
  text-align: center;
}

.daMaQianDao-popup {
  width: 400px;
  margin-top: 20px;
}

.promo-popup:before,
.daMaQianDao-popup:before,
.xianlu-popup:before {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background-color: #fff;
  border-radius: 8px;
  content: "";
  z-index: -1;
}

.promo-popup .close,
.daMaQianDao-popup .close,
.xianlu-popup .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: #e67475;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  transition: all 200ms;
  z-index: 1;
}

.promo-popup h3,
.daMaQianDao-popup h3,
.xianlu-popup h3 {
  font-size: 22px;
}

.yuebao-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #e67475;
  position: relative;
  color: #e67475;
  margin: 80px auto;
  width: 70%;
  padding: 40px;
  transition: all 5s ease-in-out;
  z-index: 10;
}

.vpn-item {
  height: 100%;
}

.affiliate-login {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 9%;
  height: 363px;
  padding: 25px;
  margin: 135px auto 0;
  background-color: #fec9c1;
  border: 1px solid #a90a03;
  color: #ec5e58;
  font-size: 50px;
  font-weight: bolder;
  text-decoration: none;
}

.affiliate-login:active,
.affiliate-login:visited,
.affiliate-login:link {
  text-decoration: none;
  color: #ec5e58;
}

.affiliate-login:hover {
  border-color: black;
}

.affiliate-login-mobile {
  display: none;
  width: 100%;
  padding: 5px;
  margin: 0 auto;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #a90a03;
  color: #ec5e58;
  font-size: 19px;
  font-weight: bolder;
  text-decoration: none;
}

.affiliate-login-mobile:active,
.affiliate-login-mobile:visited {
  color: #ec5e58;
}

.flex-col a img.vpn-image,
.flex-col a img.browser-image {
  overflow: hidden;
}

#save-address img {
  max-width: 50%;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .navigator-row > a {
    width: 16%;
  }
}

@media (max-width: 1200px) {
  body {
    background: #f7f9fa url("../images/background-light.jpg") center / cover;
    width: 100%;
  }
  .header {
    height: fit-content;
    margin: 35px 0;
  }
  body .row {
    width: 900px;
    margin: 0 auto 40px;
  }
  .header .logo img {
    height: 140px;
    image-orientation: none;
  }
  .header-right-wrapper {
    width: 80%;
  }
  .url-link-sub-text {
    font-size: 11px;
  }
  .navia {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 800px;
  }
  .header .header-links {
    margin-left: 0;
    margin-top: 20px;
  }
  .bnb_icon_font .bif_font {
    font-size: 20px;
  }
  .back_wathet {
    padding: 5px;
  }
  .flex-col a img {
    width: 200px;
  }
  .footer-row {
    position: relative;
  }
  .left-footer {
    width: 100%;
    position: relative;
  }
  .button-wrapper {
    flex-direction: column;
    align-items: center;
    height: 300px;
    width: 50%;
  }
  .title-wrapper img {
    width: 100%;
  }
  .right-footer {
    position: absolute;
    right: 100px;
    bottom: 0;
  }
  .right-footer img {
    height: 300px;
  }
  .button-wrapper .btn {
    width: 80%;
  }
  .bnb_icon_font .bif_font:first-child {
    font-size: 19px;
  }
}

@media (max-width: 1000px) {
  body .row {
    width: 800px;
  }
  .content-section {
    width: 100%;
    display: initial;
  }
  .flex-col a {
    height: 66px;
  }
  .flex-col a img.vpn-image,
  .flex-col a img.browser-image {
    width: 160px;
  }
  .header-right-wrapper {
    width: 90%;
  }
  .header-row {
    height: 95px;
  }
  .bnb_icon_font .bif_font {
    font-size: 19px;
  }
  .affiliate-login {
    display: none;
  }
  .affiliate-login-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 992px) {
  .hidden-xs {
    display: none;
  }
  .hidden-md {
    display: inline;
  }
  #save-address img {
    max-width: 100%;
  }
  .header .logo img {
    height: 100px;
    image-orientation: none;
  }
  .header {
    height: fit-content;
    margin: 15px 0;
  }
  .header .header-links a {
    font-size: 26px;
  }
  .bif_font br {
    display: none;
  }
  .flex-col a img {
    width: 150px;
  }
  .red-background {
    padding: 10px 0;
  }
  .red-background a {
    width: 180px;
    height: 39px;
  }
  .xianlu-button {
    background: url("../images/xianlu-btn-mobile.gif") no-repeat transparent;
    background-size: 100% 100%;
  }
}

@media (max-width: 800px) {
  body .row {
    width: 700px;
    margin: 0 auto 30px;
  }
  .header-right-wrapper {
    width: 77%;
    font-size: 14px;
  }
  .navigator-item {
    font-size: 18px;
  }
  .navia {
    width: 100%;
  }
  .header .header-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .header .header-links a {
    margin: 10px;
  }
}

@media (max-width: 768px) {
  body .row {
    width: 600px;
    margin: 0 auto 10px;
  }
  #ultest div.back_XL {
    width: inherit;
  }
  .ping-label {
    display: none;
  }
  .navigator {
    background: none;
  }
  .navigator .row {
    border: 1px solid #a90a03;
    border-radius: 5px;
  }
  .url-link-wrapper font {
    margin-left: 50px;
    width: 60%;
  }
  .header-row > div:nth-child(3) {
    padding-top: 15px;
    align-items: flex-start;
  }
  .cp-logo {
    height: 35px;
  }
  .main-header-text {
    font-size: 40px;
  }
  .main-header-sub-text {
    font-size: 16px;
  }
  .header-right-wrapper {
    width: 70%;
  }
  .header-row {
    height: 80px;
  }
  .navigator-item {
    font-size: 16px;
  }
  .url-link-sub-text {
    font-size: 12px;
  }
  .join-button {
    display: initial;
  }
  .extra-btn {
    height: 60px;
  }
  .left-footer {
    width: 100%;
  }
  .button-wrapper {
    width: 100%;
    flex-direction: column;
    height: 100%;
  }
  .title-wrapper img {
    width: 100%;
  }
  .right-footer {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .button-wrapper .btn {
    width: 100%;
  }
  .bl2 {
    border-top: none;
  }
  .de_icon .div_center {
    width: auto;
  }
  .back_XL {
    margin-bottom: 10px;
  }
  #support-section {
    display: none;
  }
  .back_LX1 .bl1 {
    border-width: 0 1px 0 0;
    border-color: #bbb9f2;
    border-style: solid;
    line-height: 45px;
  }
  .back_LX + div {
    border-width: 1px;
    border-color: #ff5a5a;
    background-color: transparent;
  }
  .back_LX,
  .back_LX1 {
    border-width: 1px 0 1px 1px;
    border-color: #ff5a5a;
  }
  .div_center .ent_font {
    color: #ec5e58;
  }
  .back_gray {
    border: 1px solid #ff5a5a;
    background-color: transparent;
  }
  .back_XL div,
  .de_icon,
  .div_center .ent_font {
    line-height: 45px;
  }
  .de_icon {
    height: auto;
    border: none;
  }
  .back_XL:nth-child(2) > a > .url-link-wrapper > .join-button > a {
    background-color: #ec5e58;
  }
  .back_XL:nth-child(3) > a > .url-link-wrapper > .join-button > a {
    background-color: #f3ac52;
  }
  .back_XL:nth-child(4) > a > .url-link-wrapper > .join-button > a {
    background-color: #56a7f8;
  }
  .back_XL:nth-child(5) > a > .url-link-wrapper > .join-button > a {
    background-color: #873ff4;
  }
  .back_XL:nth-child(6) > a > .url-link-wrapper > .join-button > a {
    background-color: #6566bc;
  }
  .back_XL:nth-child(7) > a > .url-link-wrapper > .join-button > a {
    background-color: #f16000;
  }
}

@media (max-width: 600px) {
  body .row {
    width: 500px;
    margin: 0 auto 10px;
  }
  .cp-logo {
    height: 30px;
  }
  .header-right-wrapper {
    width: 69%;
    font-size: 12px;
  }
  .navigator-item {
    font-size: 11px;
  }
  .bottom-btn-row {
    gap: 10px;
  }
  .bottom-btn-item img {
    width: 150px;
  }
}

@media (max-width: 500px) {
  body .row {
    width: 410px;
    margin: 0 auto 15px;
  }
  .cp-logo {
    height: 28px;
  }
  .cp-logo-address {
    width: 80px;
  }
  .header-right-wrapper {
    width: 80%;
    font-size: 10px;
  }
  .url-link-wrapper > .join-button > a {
    padding: 10px 20px;
  }
  .bottom-btn-row {
    gap: 8px;
  }
  .bottom-btn-item img {
    width: 124px;
  }
}

@media (max-width: 400px) {
  body .row {
    width: 320px;
  }
  .main-header-text {
    font-size: 24px;
  }
  .main-header-sub-text {
    font-size: 8px;
  }
  .header-right-wrapper {
    width: 100%;
  }
  .navigator-item {
    font-size: 8px;
  }
  .extra-btn {
    height: 55px;
  }
  .div_center .ent_font,
  .url-link-wrapper font,
  .url-link-wrapper > .join-button > a {
    font-size: 14px;
  }
  .url-link-wrapper > .join-button > a {
    padding: 10px;
  }
  .flex-col a img.vpn-image,
  .flex-col a img.browser-image {
    width: 150px;
  }
  .bottom-btn-row {
    gap: 6px;
  }
  .bottom-btn-item img {
    width: 96px;
  }
}
