/* 基本样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  background-color: #1a1615;
  max-width: 1200px;
  width: 90%;
  height: 80px;
  border-radius: 100px;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
}

.logo img {
  width: 70px;
  height: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  margin-left: 20px;
  font-size: 20px;
  font-weight: 500;
}

.nav-links a.active {
  color: #00c853;
  position: relative;
}

.nav-links a.active::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  width: 80px;
  height: 4px;
  background: #1db250;
  border-radius: 4px;
}

.main-content {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 112px 0 217px;
  position: relative;
  overflow: hidden;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #00c853;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  align-items: center;
  width: 80%;
  max-width: 1100px;
  max-height: 739px;
  min-height: 600px;
  height: auto;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 100;
  margin: 0 auto;
}

.icon img {
  width: 170px;
  height: 170px;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #1f1f1f;
}

.explore-btn {
  width: 460px;
  height: 68px;
  border: 1px solid #6b6b6b;
  background-color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  font-family: "Manrope";
  color: #6b6b6b;
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 43px;
  line-height: 1;
  position: relative;
}

.explore-btn:hover {
  border: 1px solid #00c853;
}

.explore-btn img {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.bg-box {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 60%;
  opacity: 0.9;
}

.bg-box img {
  width: 100%;
  height: auto;
}

.arrow {
  margin-left: 5px;
}

.footer {
  width: 100%;
  background-color: #1a1a1a;
  color: #fff;
  padding: 95px 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  width: 90%;
}

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 80px;
  }
}

.footer-container::before {
  position: absolute;
  bottom: -58px;
  content: "";
  width: 100%;
  height: 1px;
  background: #282d53;
}

.footer-logo-section {
  max-width: 350px;
}

.footer-logo {
  width: 70px;
  height: 40px;
  margin-bottom: 20px;
}

.footer-logo-section p {
  font-size: 20px;
  color: #dfdfdf;
  line-height: 28px;
  font-family: "Manrope";
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .card {
    width: 95%;
    padding: 30px;
  }

  .nav-links a {
    font-size: 18px;
  }

  h1 {
    font-size: 28px;
  }

  .feature-list li {
    font-size: 20px;
  }

  .explore-btn {
    width: 400px;
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 80px;
  }

  .card {
    height: auto;
    min-height: 500px;
  }

  .explore-btn {
    width: 350px;
  }

  .bg-box {
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .footer-links {
    gap: 60px;
  }

  .link-column {
    gap: 30px;
  }

  .nav-links a {
    font-size: 16px;
  }

  h1 {
    font-size: 24px;
  }

  .feature-list li {
    font-size: 18px;
  }

  .explore-btn {
    width: 300px;
    font-size: 18px;
  }

  .bg-box {
    max-width: 40%;
  }
}

@media (max-width: 576px) {
  .navbar {
    width: 95%;
    padding: 0 20px;
  }

  .card {
    width: 95%;
    padding: 20px;
  }

  .nav-links a {
    font-size: 14px;
    margin-left: 10px;
  }

  .feature-list li {
    font-size: 16px;
  }

  .explore-btn {
    width: 250px;
    font-size: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .bg-box {
    display: none;
  }
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.link-column h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  font-family: "Manrope";
}

.link-column a {
  display: block;
  text-decoration: none;
  color: #aaa;
  font-size: 24px;
  font-weight: 500;
  font-family: "Manrope";
}

.link-column a:hover {
  color: #fff;
}
