/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* DESKTOP CSS */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #fff;
}

.desktop {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: url("./images/background.png") no-repeat center center;
  background-size: cover;
  background-color: #161920;
  position: relative;
  overflow-y: auto;
  /* overflow: hidden; */
}

.menu-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 2vh 3vw;
  padding-bottom: 20px;
  align-items: center;
}

.title-group {
  width: 100%;
  text-align: center;
  margin-top: 2vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0vh;
}

.title-img {
  width: 15%;
  height: auto;
}

.title-banner-img {
  width: auto;
  height: auto;
}

.title-banner-img-mobile {
  display: none;
  width: auto;
  height: auto;
}

.title-banner-img img {
  width: 100%;
  object-fit: cover;
}

.title-banner-img-mobile img {
  width: 100%;
  object-fit: cover;
}

.social-icons {
  position: fixed;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: -3.5vh;
  z-index: 100;
}

.social-icon {
  width: clamp(50px, 5vw, 140px);
  height: clamp(50px, 5vw, 140px);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  /* transform: scale(1.1); */
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*Link Items*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.neon-text {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  -webkit-text-stroke: 2px #00cfff;
  paint-order: stroke fill;
  filter: drop-shadow(0 0 3px #00cfff) drop-shadow(0 0 7px #007fff) drop-shadow(0 0 15px #0044ff);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    filter: drop-shadow(0 0 3px #00cfff) drop-shadow(0 0 7px #007fff) drop-shadow(0 0 15px #0044ff);
  }
  50% {
    filter: drop-shadow(0 0 3px #00efff) drop-shadow(0 0 24px #00aaff) drop-shadow(0 0 25px #0055ff) drop-shadow(0 0 35px #003aaa);
  }
}

.link-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 2.4rem;
  /*padding: 0 1rem 1rem;*/
  flex-wrap: wrap;
}

.link-item:hover {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}

.link-item {
  transition: transform 0.25s ease;
}

.link-divider {
  width: 2px;
  height: 140px;
  border-left: 2px dashed #ccc;
  align-self: center;
  opacity: 0.5;
}

.link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.link-circle {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
}

/* Ring 1 — outer, full solid */
.link-ring-1 {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /*border-radius: 50%;*/
  /*border: 3px solid transparent;*/
  /*background: url("./images/ring-bg.png") no-repeat center center;*/
  object-fit: cover;
  opacity: 1;
  width: 100%;
  height: 100%;
}

/* Ring 2 — middle, nhiều răng cưa dùng repeating-conic-gradient */
.link-ring-2 {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3AFFB0, #D5D5D5);
  -webkit-mask: repeating-conic-gradient(#000 0deg 4deg, transparent 4deg 6deg),
  radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  mask: repeating-conic-gradient(#000 0deg 4deg, transparent 4deg 6deg),
  radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
  opacity: 0.9;
}

/* Ring 3 — inner, 70% arc, spinning */
/* Uses conic-gradient + radial-gradient mask to create a partial arc ring */
.link-ring-3 {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: conic-gradient(var(--color) 252deg, transparent 252deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  animation: spin 2s linear infinite;
}

/* Center content */
.link-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*inset: 20px;*/
  /*border-radius: 50%;*/
  /*background: radial-gradient(47.14% 47.14% at 50% 52.86%, #2AFFB9 0%, #24C38F 100%), #FFF;*/
  /*box-shadow: 0 -2px 6px 0 #68FFCE inset, 0 2px 4px 0 #83FFD7 inset, 0 0 10px 0 #008258;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-content-1 {
  position: absolute;
  top: 72%;
  left: 55%;
  transform: translate(-50%, -50%);
  /*inset: 20px;*/
  /*border-radius: 50%;*/
  /*background: radial-gradient(47.14% 47.14% at 50% 52.86%, #2AFFB9 0%, #24C38F 100%), #FFF;*/
  /*box-shadow: 0 -2px 6px 0 #68FFCE inset, 0 2px 4px 0 #83FFD7 inset, 0 0 10px 0 #008258;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-content-1-ms {
  color: #3447F5;
  font-weight: 700;
  font-size: 14px;
}

.link-ms {
  color: #3447F5;
  font-weight: 700;
  font-size: 30px;
}

.link-label img {
  width: 100%;
}

.link-label {
  position: relative;
  color: #3447F5;
  font-weight: 700;
  font-size: 16px;
  /*letter-spacing: 1px;*/
}

.link-text {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

/*Link Section*/
.link-section {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link-section img {
  max-width: 55rem;
  max-height: 22rem;
  object-fit: contain;
}

.link-join {
  margin-top: -6rem;
  background: #fff;
  position: relative;
  border: 8px solid #FFA4D1;
  border-radius: 16px;
  padding: 40px 40px 0 40px
}

.link-join-img {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

/* section-desktop */
.section-desktop {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.box-text {
  text-align: center;
}

.section-left-banner img {
  width: 100%;
  object-fit: cover;
}

.section-left-banner .speed-test {
  width: auto;
  object-fit: cover;
}

.section-left {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-app {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.download-app-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-app-content-reverse {
  display: flex;
  align-items: center;
  gap: 10px;
}


.icon-ios {
  display: flex;
  align-items: center;
  /*gap: 10px;*/
  /*text-decoration: none;*/
  /*width: 100%;*/
  /*max-width: 145px;*/
}

.icon-ios img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-right {
  width: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.banner-right {
  width: clamp(280px, 35vw, 570px);
  height: auto;
  object-fit: contain;
  display: block;
}

.banner-right-bottom {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: auto;
  object-fit: contain;
}

/* Social Buttons */
.social {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}

.social-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}

.social-btn-link {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-btn-link img {
  /*height: 44px;*/
  width: 100%;
  display: block;
  object-fit: contain;
}

.social-btn-link:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.section-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #0E1669;
  padding: 40px 10px;
}

.section-container {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  gap: 20px;
}

.section-container-1 {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.section-title {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  max-width: 1000px;
  text-align: center;
}

.section-text {
  text-align: center;
  color: #fff;
  max-width: 1000px;
  font-size: 16px;
}

.section-title-1 {
  color: #FFD700;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
}

.section-title-2 {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.section-card {
  display: flex;
  background: linear-gradient(180deg, #7A8CF9, #2F42F1);
  border-radius: 20px;
  padding: 20px;
  align-items: center;
  width: 1440px;
  justify-content: center;
}

.section-card.download-desktop {
  display: flex;
}

.section-card.download-mobile {
  display: none;
}

.section-download-item .card-title-1 {
  font-size: 14px;
}

.section-download-item .card-content-1 {
  font-size: 10px;
}

.section-download-img {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, #003D8D, #100061);
  padding: 10px;
}

.section-download-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-download {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.section-download-item {
  display: flex;
  flex-direction: column;
}

.card-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.card-container-1 {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.card-title {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}

.card-content {
  color: #fff;
  max-width: 800px;
}

.card-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.card-item-1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: center;
  align-items: center;
}

.card-title-1 {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
}

.card-content-1 {
  color: #fff;
  font-size: 14px;
}

.card-content-2 {
  color: #fff;
  font-size: 16px;
}

/*.card-img {*/
/*  object-fit: cover;*/
/*}*/
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* End Social Buttons */
@media (max-width: 344px) {
  .link-content-1-ms {
    font-size: 10px;
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .banner-right {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .section-card.download-desktop {
    display: none;
  }

  .box-text {
    width: 50%;
    margin: auto;
  }

  .link-section {
    margin-top: 20px;
  }

  .section-left-banner .speed-test {
    width: 100%;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    font-size: 10px;
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .icon-ios {
    width: 100%;
  }

  .banner-right {
    width: 100%;
  }

  .section-desktop {
    flex-direction: column;
    align-items: center;
    /*display: unset;*/
    margin-top: 15px;
    gap: 10px;
  }

  .title-img {
    width: 60%;
  }

  .link-section img {
    width: 100%;
    height: 100%;
  }

  .link-join {
    margin-top: -2.5rem;
    width: 100%;
    padding: 30px 12px 12px;
  }

  .link-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 0.5rem;
    /*padding: 1.2rem 0.5rem;*/
  }

  .link-divider {
    display: none;
  }

  .link-circle {
    width: 100px;
    height: 100px;
  }

  .link-ms {
    font-size: 1rem;
  }

  .link-label {
    font-size: 0.8rem;
  }

  .social {
    display: flex;
  }

  .social-row {
    gap: 40px;
  }

  .social-icons {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .banner-right {
    width: 100%;
  }

  .section-desktop {
    flex-direction: column;
    align-items: center;
    /*display: unset;*/
    margin-top: 15px;
    gap: 10px;
  }

  .title-img {
    width: 40%;
  }

  .link-section img {
    width: 100%;
    height: 100%;
  }

  .link-join {
    margin-top: -4.5rem;
    width: 100%;
    padding: 36px 16px 16px;
  }

  .link-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 1.2rem;
    /*padding: 1.2rem 0.5rem;*/
  }

  .link-divider {
    display: none;
  }

  .link-circle {
    width: 200px;
    height: 200px;
  }

  .social {
    display: none;
  }
}

/* Nest Hub (1024×600) — desktop-like layout */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 600px) {
  .section-download-img {
    width: auto;
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .link-section {
    margin-top: 40px;
  }

  .section-left-banner .speed-test {
    width: 28%;
  }

  .title-banner-img {
    display: block;
    width: 100%;
  }

  .title-banner-img-mobile {
    display: none;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: transparent;
    padding: 20px;
  }

  .download-app-content {
    flex-direction: row;
  }

  .download-app-content-reverse {
    flex-direction: row;
  }

  /*.section-desktop {*/
  /*  flex-direction: column-reverse;*/
  /*}*/
  .title-img {
    width: 25%;
  }

  .link-items {
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .link-circle {
    width: 160px;
    height: 160px;
  }

  .link-ms {
    font-size: 1.1rem;
  }

  .link-label {
    font-size: 0.9rem;
  }

  .social {
    display: flex;
    gap: 30px
  }

  .download-app {
    gap: 60px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .social-icons {
    display: none;
  }

  .social-row {
    gap: 60px;
  }

  .social-btn-link img {
    height: 140px;
  }
}

/* Nest Hub Max (1280×800) — desktop-like layout */
@media (min-width: 1280px) and (max-width: 1280px) and (max-height: 800px) {
  .section-download-img {
    width: auto;
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .title-banner-img {
    display: block;
  }

  .title-banner-img-mobile {
    display: none;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: transparent;
    padding: 20px;
  }

  .download-app-content {
    flex-direction: row;
  }

  .download-app-content-reverse {
    flex-direction: row;
  }

  .social {
    display: none;
  }

  .social-icons {
    display: flex;
  }
}

/* iPad mini */
@media (min-width: 768px) and (max-width: 768px) and (min-height: 1024px) {
  .section-download-img {
    width: auto;
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .icon-ios {
    width: 100%;
  }

  .social-icons {
    display: none;
  }

  .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin-top: 20px;
    width: 100%;
    padding: 0;
  }

  .social-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    width: 70%;
  }

  .social-btn-link {
    flex: 1;
    max-width: 340px;
  }

  .social-btn-link img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* iPad Air */
@media (min-width: 820px) and (max-width: 820px) and (min-height: 1180px) {
  .section-download-img {
    width: auto;
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .icon-ios {
    width: 100%;
  }

  .title-img {
    width: 30%;
  }

  .social-icons {
    display: none;
  }

  .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
    padding: 0 24px;
    max-width: 820px;
  }

  .social-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    width: 70%;
    max-width: 740px;
  }

  .social-btn-link {
    flex: 1;
    max-width: 360px;
  }

  .social-btn-link img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* iPad Pro 11" */
@media (min-width: 834px) and (max-width: 834px) and (min-height: 1194px) {
  .section-download-img {
    width: auto;
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .title-img {
    width: 28%;
  }

  .social-icons {
    display: none;
  }

  .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
    padding: 0 24px;
    max-width: 834px;
  }

  .social-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    width: 70%;
    max-width: 760px;
  }

  .social-btn-link {
    flex: 1;
    max-width: 370px;
  }

  .social-btn-link img {
    width: 100%;
    height: auto;
    display: block;
  }

}

/* ASUS ZenBook Fold */
@media (min-width: 853px) and (max-width: 853px) and (min-height: 1280px) {
  .section-download-img {
    width: auto;
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    font-size: 10px;
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .icon-ios {
    width: 100%;
  }

  .title-img {
    width: 27%;
  }

  .social-icons {
    display: none;
  }

  .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
    padding: 0;
    max-width: 853px;
  }

  .social-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    width: 70%;
    max-width: 770px;
  }

  .social-btn-link {
    flex: 1;
    max-width: 375px;
  }

  .social-btn-link img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Surface Pro 7 */
@media (min-width: 912px) and (max-width: 912px) and (min-height: 1368px) {
  .section-download-img {
    width: auto;
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 20px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .icon-ios {
    width: 100%;
  }

  .title-img {
    width: 25%;
  }

  .social-icons {
    display: none;
  }

  .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
    padding: 0 32px;
    max-width: 912px;
  }

  .social-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    width: 70%;
    max-width: 820px;
  }

  .social-btn-link {
    flex: 1;
    max-width: 400px;
  }

  .social-btn-link img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* iPad Pro 12.9" */
@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 1366px) {
  .section-2 {
    padding: 40px 20px;
  }

  .banner-right {
    width: 120%;
  }

  .section-download-img {
    width: auto;
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .icon-ios {
    width: 100%;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .title-banner-img {
    display: block;
    width: 100%;
  }

  .title-banner-img-mobile {
    display: none;
  }

  .download-app {
    gap: 80px;
    margin-top: 20px;
    border-radius: 50px;
    background: linear-gradient(#003D8D, #100061);
    padding: 60px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .title-img {
    width: 26%;
  }

  .social-icons {
    display: none;
  }

  .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    padding: 0;
    max-width: 1024px;
  }

  .social-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    width: 70%;
    max-width: 900px;
  }

  .social-btn-link {
    flex: 1;
    max-width: 440px;
  }

  .social-btn-link img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Surface Duo - 1 màn (folded) */
@media (min-width: 540px) and (max-width: 540px) and (min-height: 720px) {
  .section-download-img {
    width: auto;
  }

  .link-circle {
    width: 140px;
    height: 140px;
  }

  .link-items {
    gap: 20px
  }

  .section-card.download-desktop {
    display: none;
  }

  .section-card.download-mobile {
    display: flex;
  }

  .card-content-2 {
    text-align: center;
  }

  .section-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 14px;
  }

  .section-title-1 {
    font-size: 24px;
  }

  .section-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .card-container {
    flex-direction: column;
  }

  .card-container-1 {
    flex-direction: column-reverse;
  }

  .card-title {
    text-align: center;
  }

  .card-title-1 {
    font-size: 24px;
  }

  .card-content-1 {
    font-size: 12px;
  }

  .card-content {
    text-align: center;
    font-size: 12px;
  }

  .link-content-1-ms {
    /*font-size: 10px;*/
  }

  .title-banner-img {
    display: none;
  }

  .title-banner-img-mobile {
    display: block;
  }

  .download-app {
    gap: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(#003D8D, #100061);
    padding: 30px;
  }

  .download-app-content {
    flex-direction: column;
  }

  .download-app-content-reverse {
    flex-direction: column-reverse;
  }

  .icon-ios {
    width: 100%;
  }

  .social-row {
    gap: 60px
  }

  .social-btn-link img {
    height: 125px
  }

  .social {
    gap: 20px
  }

  .social-btn-link {
    flex: 1;
    max-width: 440px;
  }
}

/* Surface Duo - 2 màn mở ra (unfolded) */
@media (min-width: 1114px) and (max-width: 1114px) and (min-height: 705px) {

}
