html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: #f4f7f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

.header-navbar {
  width: 1280px;
  height: 100px;
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-links {
  display: flex;
  gap: 40px;
}

.navbar-link {
  text-decoration: none;
  color: gray;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #ff6b6b;
  transition: width 0.2s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

.hero-section {
  width: 1280px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 60px;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-section-title {
  color: #ff6a6a;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-section-subtitle {
  color: #aaa;
  font-size: 20px;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-section-version {
  color: gray;
  font-size: 18px;
  margin-bottom: 40px;
}

.actions-group {
  display: flex;
  gap: 20px;
}

.footer-section {
  width: 1280px;
  height: 150px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

.footer-section-content {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: gray;
}

.footer-section-author {
  font-weight: 500;
}

.info-section {
  width: 1280px;
  margin: 30px 0;
  box-sizing: border-box;
  
}

.info-section-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.info-section-box {
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 30px;
  padding: 24px 32px;
  width: 32%;
  box-sizing: border-box;
  text-align: left;
  color: gray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-section-box-title {
  color: #888888;
  margin: 0 0 12px 0;
  font-weight: 700;
  font-size: 20px;
}

.info-section-box-text {
  margin: 0;
  font-size: 14px;
  color: gray;
}

.pricing-section {
  width: 1280px;
  margin: 30px auto;
  background-color: white;
  border: 1px solid #e3e3e3;
  text-align: center;
  padding: 30px 20px;
  border-radius: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  margin-bottom: 0;
}

.pricing-section-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ff6b6b;
}

.pricing-section-description {
  font-size: 18px;
  color: gray;
  margin-bottom: 20px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.button-join,
.button-copy {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s ease;
}

.button-join {
  background-color: white;
  border: 1px solid #e3e3e3;
  color: gray;
}

.button-join:hover {
  transform: scale(1.02);
}

.button-copy {
  background-color: #ff6b6b;
  color: white;
}

.button-copy:hover {
  transform: scale(1.02);
}

.login-button {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #ff6b6b;
  background-color: #ff6b6b;
  padding: 8px 20px;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  transition: 0.3s ease;
}

.login-button:hover {
  transform: translateY(-50%) scale(1.03);
}

