* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
  background: white;
}

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
}

.phone-mockup {
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup img {
  width: 100%;
  max-width: 293px;
  height: auto;
}

.main-content {
  flex: 1;
  max-width: 496px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title-text {
  display: flex;
  flex-direction: column;
}

.title-text span {
  color: var(--Zinc-900, #18181B);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

.description {
  color: var(--Zinc-700, #3F3F46);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
}

.download-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.qr-code {
  width: 154px;
  height: 154px;
  flex-shrink: 0;
}

.qr-code img {
  width: 100%;
  height: 100%;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-buttons img {
  width: 206.5px;
  height: auto;
  border-radius: 11.36px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-wrapper {
    gap: 40px;
  }

  .phone-mockup img {
    max-width: 240px;
  }

  .title-text span {
    font-size: 32px;
  }

  .description {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .phone-mockup {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .phone-mockup img {
    max-width: 220px;
  }

  .main-content {
    order: 1;
    max-width: 100%;
    width: 100%;
    align-items: center;
  }

  .header-section {
    width: 100%;
    align-items: center;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .title-text span {
    font-size: 28px;
  }

  .description {
    font-size: 18px;
    line-height: 28px;
  }

  .download-section {
    gap: 24px;
  }

  .qr-code {
    width: 120px;
    height: 120px;
  }

  .store-buttons img {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 16px;
  }

  .main-content {
    gap: 30px;
  }

  .title-row {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .title-text {
    flex: 1;
  }

  .title-text span {
    font-size: 20px;
  }

  .description {
    font-size: 16px;
    line-height: 24px;
  }

  .download-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .qr-code {
    width: 140px;
    height: 140px;
  }

  .store-buttons {
    width: 100%;
    align-items: center;
  }

  .store-buttons img {
    width: 100%;
    max-width: 220px;
  }
}
