body {
  background: url('images/cf0d2549-29d4-49a2-aeee-7fe2cd738e08.png') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


.mobile-link-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
  align-items: center;
  width: 100%;
  max-width: 420px;
}

@keyframes rainbow-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.custom-link-btn {
  color: #ffd700;
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: bold;
  font-size: 22px;
  border-radius: 16px;
  box-shadow: 0 4px 24px #0006;
  padding: 18px 0;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, border-color 0.2s, color 0.2s;
  justify-content: center;
  letter-spacing: 0.5px;
  border: 2px solid #ffd700;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #4a4a4a, #2e2e2e);
}

.custom-link-btn .icon svg {
  fill: #ffd700;
}

.custom-link-btn.purple {
  background: linear-gradient(180deg, #3d3d3d, #252525);
}

.custom-link-btn:hover {
  color: #ffe566;
  background: linear-gradient(180deg, #5a5a5a, #3a3a3a);
  border-color: #ffe566;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
  transform: translateY(-2px) scale(1.04);
}

.custom-link-btn:hover .icon svg {
  fill: #ffe566;
}

.mobile-title-logo {
  display: block;
  margin: 0 auto 40px auto;
  width: 420px;
  max-width: 100vw;
  height: auto;
}

.mobile-iphone-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Đảm bảo ảnh IPHONE to đúng ý */
.mobile-iphone-img-img {
  width: 900px;
  max-width: 90vw;
  display: block;
  margin: auto;
}

/* Layout 2 cột cho PC */
.pc-main-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  gap: 120px;
  background-size: cover;
}

.pc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 400px;
}

.pc-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 400px;
  max-width: 500px;
  padding-left: 32px;
}

.mobile-iphone-img img {
  width:900px;
  max-width: 40vw;
  display: block;
  margin: auto;
}

.mobile-title-logo {
  display: block;
  margin: 0 auto 32px auto;
  width: 450px;
  max-width: 60vw;
  height: auto;
}

.mobile-link-buttons {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px) {
  .pc-main-layout {
    flex-direction: column;
    gap: 18px;
  }
  .pc-left, .pc-right {
    min-width: unset;
    max-width: 100vw;
    align-items: center;
    justify-content: center;
  }
  .mobile-title-logo {
    margin: 20px auto 10px auto;
    width: 120px;
    max-width: 80vw;
  }
} 