body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

button {
  outline: none;
  background: #fff;
  border: none;
  font-family: inherit;
}

html {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #1e2125;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

header {
  background: #2C3134;
}

.header-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 0 24px 0;
  display: flex;
  justify-content: space-between;
}

.mobile-header {
  display: none;
}

.left-header, .right-header {
  display: flex;
  height: 64px;
  align-items: center;
}

.left-header a.logo,
.left-header a.logo:link,
.left-header a.logo:visited,
.left-header a.logo:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.left-header .logo {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 16px;
}

.left-header .logo h1 {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  /* identical to box height */
  letter-spacing: -1.3px;
  color: #FFFFFF;
}

.left-header .logo h1 span {
  font-weight: 400;
}

.left-header .nav-links {
  margin-left: 59px;
  display: flex;
  align-items: center;
  
  gap: 40px;

  height: 100%;
}

.left-header .nav-link {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;

  color: #FFFFFF;
  
  text-decoration: none;
}

.left-header .nav-link.current {
  color: #F65E72;
}

.left-header .nav-link > a {
  text-decoration: none;
}

.left-header .nav-link > a:link,
.left-header .nav-link > a:visited,
.left-header .nav-link > a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.left-header .nav-link.current > a:link,
.left-header .nav-link.current > a:visited,
.left-header .nav-link.current > a:hover {
  text-decoration: none;
  color: #F65E72;
}

.right-header .social-links {
  display: flex;
  height: 100%;
  align-items: center;
  margin-right: 40px;
}

.right-header .social-links a {
  display: block;
  width: 24px;
  height: 24px;
}

.right-header .social-links a:not(:last-child) {
  margin-right: 27px;
}

.right-header > a {
  text-decoration: none;
}

.right-header .download-button {
  width: 162px;
  height: 48px;
  border-radius: 36px;
  background: linear-gradient(90deg, #E24A71 0%, #FB5E50 100%);

  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.3px;

  color: #FFFFFF;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

main {
  background: #3b4146;
}

.download-buttons {
  display: flex;
  margin: 20px auto 40px;
}

.download-buttons a {
  text-decoration: none;
}

.download-buttons button {
  width: 284px;
  height: 48px;
  border-radius: 36px;
  background-color: rgb(246, 94, 114);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.download-buttons .download-text {
  margin-left: 22px;
}

.guide-section {
  width: 100%;
  background-color: #fff;
  padding: 64px 0 56px;
}

.guide-contents {
  max-width: 1120px;
  margin: 0 auto;
}

.guide-contents h2 {
  font-size: 24px;
  font-weight: 700;
  color: rgb(59, 65, 70)
}

.guide-contents > div {
  display: flex;  
  margin-top: 32px;
}

.guide-contents .menu {
  flex: 1 1 256px;
  min-width: 168px;
  max-width: 256px;
}

.guide-contents .menu ul {
  background-color: rgb(44, 49, 52);
  border-radius: 10px;
}

.guide-contents .menu li {
  padding-top: 24px;
  padding-left: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: solid 1px rgb(64, 71, 75);
}

.guide-contents .menu .menu-selected > a {
  color: #F65E72;
}

.guide-contents .menu .menu-selected > a:visited {
  color: #F65E72;
}

.guide-contents .menu .menu-selected > a:hover {
  color: #F65E72;
}


.guide-contents .articles ul {
  margin-left: 24px;
  list-style-type: disc;
}

.guide-contents .articles ol {
  margin-left: 24px;
  padding: 0;
}

.guide-contents .menu li:last-child {
  border-bottom: none;
}

.guide-contents .menu a {
  text-decoration: none;
  color: #fff;
}

.guide-contents .mobile-menu {
  display: none;
}

.guide-contents .articles {
  flex: 2 1;
  margin-left: 32px;
  color: rgb(59, 65, 70)
}

.guide-contents .articles .article-enable {
  display: none;
}

.guide-contents .articles .article-disable {
  display: none;
}

.guide-contents article h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

.guide-contents article h3 {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: solid 1px rgb(222, 229, 236);
  margin: 32px 0 16px;
}

.guide-contents article h4 {
  margin: 0 16px 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.56;
  letter-spacing: -0.37px;
}

.guide-contents article p {
  margin: 0 16px 16px;
  font-size: 14px;
  line-height: 1.79;
  letter-spacing: -0.32px;
}

.guide-contents #faq li {
  margin: 0 16px 16px;
  font-size: 14px;
  letter-spacing: -0.32px;
}

.guide-contents #pro-plan-notice p {
  font-size: 16px;
  line-height: 1.56;
}

.guide-contents #pro-plan-notice ul {
  list-style-type: disc;
  margin-bottom: 12px;
}

.guide-contents #pro-plan-notice li {
  margin: 0 32px 8px;
  font-size: 16px;
  letter-spacing: -0.32px;
}

.guide-contents article .box {
  color: rgb(108, 119, 129);
  background-color: rgb(243, 247, 251);
  border: 1px solid rgb(222, 229, 236);
  padding: 16px 24px 16px 24px;
  border-radius: 8px;
}

.guide-contents article img {
  margin: 0 16px 16px;
}

.guide-contents article .tutorial-video {
  position: relative;
  margin: 36px 60px 36px;
  width: auto;
}

.guide-contents article .tutorial-video:before {
  /* fix height by aspect ratio 16:9 */
  content: "";
  display: block;
  padding-top: 56.25%;
}

.guide-contents article .tutorial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pre-footer {
  background: #3b4146;
}

.pre-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pre-footer h4 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.pre-footer-inner .products {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.pre-footer-inner .products img {
  border-radius: 11px;
}

footer {
  background: #000;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  height: 80px;
  margin: 0 auto;
}

footer .footer-inner .company {
  display: flex;
  align-items: center;
}

footer .footer-inner .company span {
  margin-left: 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #8996a1;
}
footer .footer-inner .terms {
  font-size: 12px;
  color: #8996a1;
}

footer .footer-inner .terms a {
  color: #8996a1;
  text-decoration: none;
}

/* Influencer Campaign Styles */
.influencer-campaign-container {
  max-width: 1000px;
  margin: 30px auto;
  text-align: center;
}

.influencer-campaign-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.influencer-campaign-container h1 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: clamp(24px, 4vw, 32px);
  text-align: left;
  padding: 10px 10px 0px 10px;
}

.influencer-campaign-article {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  line-height: 1.8;
  text-align: left;
}

.influencer-campaign-article ul {
  list-style-type: disc;
  padding-left: 20px;
}

.influencer-campaign-article ol {
  padding-left: 20px;
}

.influencer-campaign-article hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eee;
}

.apply-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  margin: 20px 0;
}

.apply-button:hover {
  background-color: #333;
}

.apply-button-container {
  text-align: center;
  margin: 20px 0;
}

.nested-list {
  list-style-type: '◦ ';
}

/* Override for nav-links */
.nav-links {
  list-style-type: none;
  padding-left: 0;
}
