:root {
  --layout-padding-inline:40px;
  --container-width:1200px;
}

.container {
  max-width: calc(var(--container-width) + var(--layout-padding-inline) * 2);
  margin: 0 auto;
}
.container > .layout {
  width: calc(var(--container-width) + var(--layout-padding-inline) * 2);
  padding-inline: var(--layout-padding-inline);
}

.section {
  padding-top: 8.5rem;
}

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

main {
  background: var(--color-hero-bg);
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  letter-spacing: -0.5px;
}

button {
  background: none;
  border: none;
}
button:hover {
  cursor: pointer;
}

:root {
  --color-header-text-hover:#007aff;
  --color-hero-bg:#f5f7fb;
  --color-hero-text:#6dfc56;
  --color-banner-arrow:#8f96a3;
  --color-creators-nickname:#747a86;
  --color-creators-nationality:#b1b7c4;
  --color-creators-p-trophy:#ff991d;
  --color-creators-p-trophy-black:#323232;
  --color-creators-n-trophy:#00bae9;
  --color-creators-g-trophy:#df18f0;
  --color-creators-b-trophy:#56f196;
  --color-creators-b-trophy-bronze:#8d5b54;
  --color-creators-counter-strike:#01bb89;
  --color-creators-follow:#2973ff;
  --color-creators-border-hover:#e5e7eb;
  --color-campaign-login-button:#00188e;
  --color-campaign-add-favorite:#e8ebf6;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.2s;
  z-index: 100;
}
#header:hover, #header.active {
  background: white;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
#header .content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 0.8rem;
  font-weight: bold;
}
#header .content-wrap > ul > li > a,
#header .content-wrap > div > button,
#header .content-wrap > div > a {
  transition: color 0.2s;
}
#header .content-wrap > ul > li > a:hover,
#header .content-wrap > div > button:hover,
#header .content-wrap > div > a:hover {
  color: var(--color-header-text-hover);
}
#header .content-wrap > ul {
  display: flex;
  gap: 2.1rem;
  margin-left: 3rem;
  transform: translateY(-3px);
}
#header .content-wrap > ul > li > a {
  font-size: 1rem;
}
#header .content-wrap > ul > li > a.select {
  color: var(--color-header-text-hover);
}
#header .content-wrap > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(-3px);
}
#header .content-wrap > div > button {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-weight: bold;
  font-size: 0.95rem;
  line-height: 20px;
}
#header .content-wrap > div > a {
  padding-inline: 1.15rem;
  border: 2px solid black;
  border-radius: 50px;
  line-height: 31px;
  transition: color 0.2s, border-color 0.2s;
}
#header .content-wrap > div > a:hover {
  border-color: var(--color-header-text-hover);
}

#hero .content-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
#hero .content-wrap > video {
  max-width: 1480px;
  transform: translateX(-9rem);
}
#hero .content-wrap > div {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#hero .content-wrap > div > div {
  display: flex;
  flex-direction: column;
}
#hero .content-wrap > div > div > p {
  display: flex;
  justify-content: right;
}
#hero .content-wrap > div > div > p:first-child {
  align-items: center;
  gap: 0.1rem;
  font-size: 1.1rem;
  color: white;
  transform: translateY(-5px);
}
#hero .content-wrap > div > div > p:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
#hero .content-wrap > div > div > p:nth-child(2) > strong {
  color: var(--color-hero-text);
  font-size: 2.7rem;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  transform: translateY(-7px);
}
#hero .content-wrap > div > div > p:nth-child(2) > span {
  color: white;
  font-size: 1.1rem;
  transform: translateY(2px);
}
#hero .content-wrap > div > p {
  display: flex;
  justify-content: right;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: white;
  opacity: 0.7;
}

#banner {
  position: relative;
  top: -70px;
  overflow-x: hidden;
  padding-inline: 40px;
}
#banner.active > .banner-swiper-container > .swiper-button-next,
#banner.active > .banner-swiper-container > .swiper-button-prev {
  opacity: 1;
}
#banner .banner-swiper-container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
#banner .banner-swiper-container:hover > .swiper-button-next,
#banner .banner-swiper-container:hover > .swiper-button-prev {
  opacity: 1;
}
#banner .banner-swiper-container > .swiper-wrapper > .swiper-slide > a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
}
#banner .banner-swiper-container > .swiper-button-next,
#banner .banner-swiper-container > .swiper-button-prev {
  top: 11.7rem;
  --swiper-navigation-size:16px;
  background: white;
  padding: 1.9rem;
  border-radius: 50%;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.1);
  color: var(--color-banner-arrow);
  transition: color 0.2s, opacity 0.2s;
  opacity: 0;
}
#banner .banner-swiper-container > .swiper-button-next::after,
#banner .banner-swiper-container > .swiper-button-prev::after {
  font-weight: bold;
}
#banner .banner-swiper-container > .swiper-button-next:hover,
#banner .banner-swiper-container > .swiper-button-prev:hover {
  color: var(--color-header-text-hover);
}
#banner .banner-swiper-container > .swiper-button-next {
  right: -2rem;
}
#banner .banner-swiper-container > .swiper-button-prev {
  left: -2rem;
}

#floating {
  position: sticky;
  top: 4.5rem;
}
#floating.off > div {
  opacity: 0;
  scale: 0.8;
}
#floating > div {
  position: absolute;
  top: 0.7rem;
  right: calc(41% - var(--container-width) / 2);
  background-image: url("assets/images/home/creators/floating.png");
  width: 128px;
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: opacity 0.1s, scale 0.1s;
}
#floating > div > div {
  display: flex;
  flex-direction: column;
  transform: translateY(7px);
}
#floating > div > div > b {
  font-size: 0.75rem;
  color: white;
}
#floating > div > strong {
  color: var(--color-hero-text);
  font-size: 0.85rem;
  transform: translateY(1.1rem);
  font-family: Poppins, sans-serif;
}
#floating > div > strong > span {
  color: white;
  font-family: 200;
  font-size: 0.75rem;
}

@media (max-width: 1575px) {
  #floating > div {
    opacity: 0;
    scale: 0.8;
  }
}
#creators > .container > .layout {
  position: relative;
}
#creators > .container > .layout .content-wrap {
  margin-top: 1.2rem;
  margin-bottom: 2.25rem;
}
#creators > .container > .layout .content-wrap > div {
  display: flex;
  justify-content: space-between;
}
#creators > .container > .layout .content-wrap > div > h2 > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.25rem;
}
#creators > .container > .layout .content-wrap > div > h2 > a > span {
  display: inline-block;
  background-image: url("assets/icons/more.svg");
  width: 16px;
  height: 30px;
  transform: translateY(2px);
}
#creators > .container > .layout .content-wrap > div > button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.99rem;
  transform: translateY(1.9rem);
  height: max-content;
}
#creators > .container > .layout .content-wrap > div > button:hover {
  color: var(--color-creators-follow);
}
#creators > .container > .layout .content-wrap > div > button:hover > svg {
  color: black;
}
#creators > .container > .layout .swiper-button-next,
#creators > .container > .layout .swiper-button-prev {
  top: 20.5rem;
  background: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
  padding-top: 0.2rem;
}
#creators > .container > .layout .swiper-button-next::after,
#creators > .container > .layout .swiper-button-prev::after {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--color-banner-arrow);
  transition: color 0.2s;
}
#creators > .container > .layout .swiper-button-next:hover::after,
#creators > .container > .layout .swiper-button-prev:hover::after {
  color: var(--color-creators-follow);
}
#creators > .container > .layout .swiper-button-prev {
  left: 1.27rem;
}
#creators > .container > .layout .swiper-button-next {
  right: 1.27rem;
}
#creators > .container > .layout > div:last-child {
  width: 1200px;
  padding-inline: 0.1rem;
  padding-block: 2rem;
  overflow: hidden;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > .platform {
  position: absolute;
  top: 9.5rem;
  display: flex;
  gap: 1rem;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > .platform a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 1.2rem;
  border-radius: 50%;
  z-index: 1;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > .platform a::before {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  z-index: -1;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > .platform a:hover::before {
  background: #f7f8fd;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button {
  position: relative;
  display: block;
  box-shadow: -2px 2px 5px 5px rgba(0, 0, 0, 0.01);
  border: none;
  background: white;
  border-radius: 10px;
  padding-inline: 1.2rem;
  width: 100%;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button::before {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  content: "";
  display: block;
  width: 100%;
  height: 99.7%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.2s;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button:hover::before {
  opacity: 1;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.7rem;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:first-child {
  position: absolute;
  top: -2rem;
  bottom: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:first-child > img {
  width: 99px;
  height: 99px;
  border-radius: 50%;
  object-fit: cover;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:last-child {
  margin-top: 5.6rem;
  text-align: center;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:last-child b {
  font-size: 1.1rem;
  font-weight: bold;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:last-child span {
  display: block;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:last-child span:nth-child(2) {
  font-size: 0.75rem;
  color: var(--color-creators-nickname);
  margin-block: 0.2rem;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:last-child span:last-child {
  font-size: 0.73rem;
  letter-spacing: -1px;
  color: var(--color-creators-nationality);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:last-child span:last-child > svg {
  transform: translateY(2px);
  transition: color 0.2s;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .profile > span:last-child span:last-child > svg:hover {
  color: var(--color-creators-follow);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .intro {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--color-creators-nickname);
  text-align: left;
  letter-spacing: -0.5px;
  height: 40px;
  line-height: 22px;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity {
  display: block;
  text-align: left;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:first-child {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  height: 78px;
  overflow: hidden;
  padding-bottom: 0.5rem;
  z-index: 1;
  mask-image: linear-gradient(to bottom, #fff 60%, rgba(255, 255, 255, 0.1));
  -webkit-mask-image: linear-gradient(to bottom, #fff 60%, rgba(255, 255, 255, 0.1));
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child:hover {
  overflow: auto;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child::-webkit-scrollbar {
  width: 5px;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child::-webkit-scrollbar-thumb {
  background: var(--color-campaign-add-favorite);
  border-radius: 10px;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span.p-trophy {
  color: var(--color-creators-p-trophy);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span.p-trophy-black {
  color: var(--color-creators-p-trophy-black);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span.n-trophy {
  color: var(--color-creators-n-trophy);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span.g-trophy {
  color: var(--color-creators-g-trophy);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span.b-trophy {
  color: var(--color-creators-b-trophy);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span.b-trophy-bronze {
  color: var(--color-creators-b-trophy-bronze);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span.counter-strike {
  color: var(--color-creators-counter-strike);
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span > img {
  width: 1.25rem;
  height: 1.5rem;
  object-fit: contain;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .activity > span:last-child > span > span {
  letter-spacing: -1px;
  font-size: 0.9rem;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .follow {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-align: left;
  padding-top: 1rem;
  padding-bottom: 1.3rem;
  font-size: 0.9rem;
  letter-spacing: -0.5px;
}
#creators > .container > .layout > div:last-child .creators-swiper-container > .swiper-wrapper > .swiper-slide > button > .follow > b {
  color: var(--color-creators-follow);
}

#shortcut > .container > .layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#shortcut > .container > .layout > .title {
  position: relative;
}
#shortcut > .container > .layout > .title > h2 {
  position: relative;
  font-size: 2.2rem;
  z-index: 11;
  width: max-content;
}
#shortcut > .container > .layout > .title > .swiper-pagination {
  display: flex;
  justify-content: right;
  bottom: 0;
  height: 100%;
}
#shortcut > .container > .layout > .title > .swiper-pagination > .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0;
  background: none;
  transform: translateY(1.2rem);
}
#shortcut > .container > .layout > .title > .swiper-pagination > .swiper-pagination-bullet:hover {
  opacity: 1;
}
#shortcut > .container > .layout > .title > .swiper-pagination > .swiper-pagination-bullet:hover::before {
  background: var(--color-creators-follow);
  opacity: 1;
}
#shortcut > .container > .layout > .title > .swiper-pagination > .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: black;
  opacity: 0.6;
  border-radius: 50%;
  transition: opacity 0.2s, background-color 0.2s;
}
#shortcut > .container > .layout > .title > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: none;
  border-radius: unset;
}
#shortcut > .container > .layout > .title > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  width: 20px;
  height: 20px;
  background: none;
  border-radius: unset;
  background-image: url("assets/icons/home/shortcut/current-index.svg");
  opacity: 1;
  transition: none;
}
#shortcut > .container > .layout > .shortcut-swiper-container {
  overflow: hidden;
}
#shortcut > .container > .layout > .shortcut-swiper-container > .swiper-wrapper > .swiper-slide > .grid-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.2rem;
  row-gap: 1.5rem;
}
#shortcut > .container > .layout > .shortcut-swiper-container > .swiper-wrapper > .swiper-slide > .grid-box > div {
  position: relative;
  display: flex;
  align-items: center;
}
#shortcut > .container > .layout > .shortcut-swiper-container > .swiper-wrapper > .swiper-slide > .grid-box > div > div {
  position: absolute;
  display: flex;
  flex-direction: column;
  transform: translateY(10px);
  padding-inline: 2.5rem;
  gap: 1.2rem;
}
#shortcut > .container > .layout > .shortcut-swiper-container > .swiper-wrapper > .swiper-slide > .grid-box > div > div > a {
  color: white;
}
#shortcut > .container > .layout > .shortcut-swiper-container > .swiper-wrapper > .swiper-slide > .grid-box > div > div > a:first-child {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  width: max-content;
}
#shortcut > .container > .layout > .shortcut-swiper-container > .swiper-wrapper > .swiper-slide > .grid-box > div > div > a:last-child {
  width: max-content;
  padding-inline: 1rem;
  padding-block: 0.6rem;
  border-radius: 100px;
  font-size: 0.76rem;
  background: linear-gradient(to right, #0076ff, #119fff, #00c3a1, #00dc7a);
}
#shortcut > .container > .layout > .shortcut-swiper-container > .swiper-wrapper > .swiper-slide > .grid-box > div > div > a:last-child:hover {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(to right, #0076ff, #119fff, #00c3a1, #00dc7a);
}
#shortcut > .container > .layout > .notice > p {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.89rem;
  letter-spacing: -0.5px;
  color: var(--color-creators-nickname);
}
#shortcut > .container > .layout > .notice > p::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  background: var(--color-creators-nickname);
  border-radius: 50%;
  transform: translateY(2px);
}

#campaign > .container > .layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#campaign > .container > .layout > .title > h2 {
  font-size: 2.2rem;
}
#campaign > .container > .layout > .content {
  display: flex;
  gap: 1.3rem;
}
#campaign > .container > .layout > .content > .login {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  background: var(--color-creators-follow);
  border-radius: 10px;
  width: 285px;
  height: 415px;
  padding-inline: 1.37rem;
  padding-block: 2rem;
}
#campaign > .container > .layout > .content > .login > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#campaign > .container > .layout > .content > .login > div:first-child {
  gap: 1.2rem;
}
#campaign > .container > .layout > .content > .login > div:first-child > strong {
  text-align: center;
  color: white;
  font-size: 1.23rem;
  word-break: keep-all;
  line-height: 30px;
}
#campaign > .container > .layout > .content > .login > div:first-child > strong > img {
  vertical-align: middle;
}
#campaign > .container > .layout > .content > .login > div:last-child {
  display: flex;
  gap: 0.8rem;
}
#campaign > .container > .layout > .content > .login > div:last-child > p {
  font-size: 0.85rem;
  color: white;
  opacity: 0.6;
}
#campaign > .container > .layout > .content > .login > div:last-child > a {
  padding-block: 0.6rem;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  background: var(--color-campaign-login-button);
  width: 100%;
}
#campaign > .container > .layout > .content > .login > div:last-child > a:hover {
  background: #001168;
}
#campaign > .container > .layout > .content > .popular {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#campaign > .container > .layout > .content > .popular > h3 {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.45rem;
}
#campaign > .container > .layout > .content > .popular > div {
  position: relative;
}
#campaign > .container > .layout > .content > .popular > div > .swiper-pagination {
  right: 0;
  top: -1rem;
  height: max-content;
  display: flex;
  justify-content: right;
}
#campaign > .container > .layout > .content > .popular > div > .swiper-pagination > .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0;
  background: none;
  transform: translateY(-0.7rem);
}
#campaign > .container > .layout > .content > .popular > div > .swiper-pagination > .swiper-pagination-bullet:hover {
  opacity: 1;
}
#campaign > .container > .layout > .content > .popular > div > .swiper-pagination > .swiper-pagination-bullet:hover::before {
  background: var(--color-creators-follow);
  opacity: 1;
}
#campaign > .container > .layout > .content > .popular > div > .swiper-pagination > .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: black;
  opacity: 0.6;
  border-radius: 50%;
  transition: opacity 0.2s, background-color 0.2s;
}
#campaign > .container > .layout > .content > .popular > div > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: none;
  border-radius: unset;
}
#campaign > .container > .layout > .content > .popular > div > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  width: 20px;
  height: 20px;
  background: none;
  border-radius: unset;
  background-image: url("assets/icons/home/shortcut/current-index.svg");
  opacity: 1;
  transition: none;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container {
  width: 895px;
  height: 364px;
  overflow: hidden;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide {
  display: flex;
  justify-content: space-between;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div.add-favorite {
  width: 285px;
  height: 100%;
  background: var(--color-campaign-add-favorite);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div.add-favorite:hover > img {
  scale: unset;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div.add-favorite > p {
  text-align: center;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div.add-favorite > p > span {
  display: block;
  font-size: 0.85rem;
  line-height: 22px;
  color: var(--color-creators-nickname);
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div:hover > img {
  scale: 1.04;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > img {
  filter: blur(0.6px);
  transition: scale 0.1s;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 285px;
  height: 100%;
  display: flex;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgb(0, 0, 0));
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > button {
  position: absolute;
  bottom: 0.8rem;
  right: 1.2rem;
  color: var(--color-creators-border-hover);
  opacity: 0.9;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-inline: 1.2rem;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > b {
  position: relative;
  top: 0.9rem;
  left: -0.4rem;
  width: max-content;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > b.popular {
  background: #af49ff;
  color: white;
  font-size: 0.75rem;
  padding-inline: 0.6rem;
  line-height: 1.5rem;
  border-radius: 30px;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:first-child {
  position: relative;
  top: 0.9rem;
  left: -0.4rem;
  width: max-content;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:first-child.boosting {
  display: flex;
  gap: 0.3rem;
  background: linear-gradient(to right, #ff8a00, #ff1616);
  padding-inline: 0.7rem;
  padding-block: 0.25rem;
  border-radius: 50px;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:first-child.boosting > b {
  display: flex;
  align-items: center;
  color: white;
  font-size: 0.75rem;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:first-child.boosting > b:first-child::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url("assets/icons/home/campaign/boosting.svg");
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:first-child.boosting > b:last-child {
  position: relative;
  padding-left: 0.3rem;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:first-child.boosting > b:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 1px;
  height: 80%;
  background: rgba(255, 255, 255, 0.3);
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:first-child.cash > span {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  color: white;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:first-child.cash > span > img {
  transform: translateY(2px);
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:first-child.coupon > span {
  display: flex;
  color: white;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:first-child.coupon > span > span {
  color: var(--color-creators-nationality);
  margin-inline: 0.1rem;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:first-child.coupon > span > b {
  margin-left: 0.2rem;
  font-size: 0.9rem;
  transform: translateY(-1px);
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:first-child img {
  display: block;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:first-child strong {
  display: block;
  color: white;
  font-size: 1.27rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-top: 0.5rem;
  padding-bottom: 0.3rem;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2).trophies > span:last-child {
  display: flex;
  justify-content: unset;
  align-items: center;
  height: 18px;
  gap: 0.25rem;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
  border-bottom: unset;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2).trophies > span:last-child > img {
  margin-bottom: unset;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2) > span {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2) > span > span {
  color: white;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2) > span > span:first-child {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2) > span > span:first-child > svg {
  color: var(--color-creators-nationality);
  transform: translateY(1px);
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2) > span > span:first-child > span {
  font-size: 0.75rem;
  font-weight: 500;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2) > span > span:last-child {
  color: var(--color-creators-nationality);
  font-size: 0.9rem;
  font-family: Poppins, sans-serif;
}
#campaign > .container > .layout > .content > .popular > div > .popular-swiper-container > .swiper-wrapper > .swiper-slide > div > div > a > span:last-child span:nth-child(2) > img {
  display: block;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

#campaign-around > .container > .layout > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#campaign-around > .container > .layout > div > h2 {
  font-size: 2.2rem;
}
#campaign-around > .container > .layout > div > h2 > a::after {
  content: "";
  display: inline-block;
  background: url("assets/icons/more.svg");
  width: 16px;
  height: 30px;
  transform: translateY(1px);
  margin-left: 0.5rem;
}
#campaign-around > .container > .layout > div > p {
  color: var(--color-creators-nationality);
  transform: translateY(1rem);
  font-size: 0.95rem;
}
#campaign-around > .container > .layout > ul:nth-child(2) {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.5rem;
}
#campaign-around > .container > .layout > ul:nth-child(2) > li > button {
  padding-inline: 1.2rem;
  padding-block: 0.7rem;
  border: 1px solid #d2d6e0;
  color: var(--color-creators-nickname);
  border-radius: 50px;
  font-size: 1rem;
  letter-spacing: -0.5px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}
#campaign-around > .container > .layout > ul:nth-child(2) > li > button.select {
  background: var(--color-creators-follow);
  color: white;
}
#campaign-around > .container > .layout > ul:nth-child(2) > li > button.select:hover {
  border-color: unset;
}
#campaign-around > .container > .layout > ul:nth-child(2) > li > button:hover {
  border-color: var(--color-creators-follow);
}
#campaign-around > .container > .layout > ul[data-value] {
  display: none;
}
#campaign-around > .container > .layout > ul[data-value].select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.2rem;
  row-gap: 3rem;
}
#campaign-around > .container > .layout > ul[data-value] > li {
  position: relative;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 364px;
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting {
  width: 100%;
  overflow: hidden;
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -25%;
  display: block;
  width: 150%;
  height: 200%;
  background: conic-gradient(red, orange, rgb(252, 206, 2), red);
  animation: rotate 3s infinite linear;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting > a {
  position: relative;
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting > a > span:first-child > span {
  top: 0.6rem;
  left: 0.6rem;
  display: flex;
  gap: 0.3rem;
  background: linear-gradient(to right, #ff8a00, #ff1616);
  padding-inline: 0.65rem;
  padding-block: 0.25rem;
  border-radius: 50px;
  letter-spacing: 0.2px;
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting > a > span:first-child > span > b {
  display: flex;
  align-items: center;
  color: white;
  font-size: 0.75rem;
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting > a > span:first-child > span > b:first-child {
  gap: 0.1rem;
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting > a > span:first-child > span > b:first-child::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url("assets/icons/home/campaign/boosting.svg");
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting > a > span:first-child > span > b:last-child {
  position: relative;
  padding-left: 0.3rem;
}
#campaign-around > .container > .layout > ul[data-value] > li.boosting > a > span:first-child > span > b:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 1px;
  height: 80%;
  background: rgba(255, 255, 255, 0.3);
}
#campaign-around > .container > .layout > ul[data-value] > li.new > a > span:first-child > b, #campaign-around > .container > .layout > ul[data-value] > li.popular > a > span:first-child > b {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  color: white;
  font-size: 0.77rem;
  padding-inline: 0.6rem;
  padding-block: 0.2rem;
  border-radius: 50px;
  z-index: 1;
}
#campaign-around > .container > .layout > ul[data-value] > li.new > a > span:first-child > b {
  background: #00bf91;
}
#campaign-around > .container > .layout > ul[data-value] > li.popular > a > span:first-child > b {
  background: #b556ff;
}
#campaign-around > .container > .layout > ul[data-value] > li > button {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  z-index: 2;
  color: #d2d6e0;
}
#campaign-around > .container > .layout > ul[data-value] > li > a {
  display: flex;
  background: white;
  overflow: hidden;
  width: 99.3%;
  height: 99%;
  border-radius: 8px;
  box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.01);
}
#campaign-around > .container > .layout > ul[data-value] > li > a:hover > span:first-child > img:first-child {
  scale: 1.05;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:first-child {
  position: relative;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 75px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), rgb(0, 0, 0));
  z-index: 1;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:first-child > span,
#campaign-around > .container > .layout > ul[data-value] > li > a > span:first-child > img:last-child {
  position: absolute;
  z-index: 2;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:first-child > img:first-child {
  transition: scale 0.2s;
  filter: blur(0.6px);
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:first-child > img:last-child {
  bottom: 0.7rem;
  left: 1.2rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child {
  padding: 1.4rem 1.42rem 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  z-index: 1;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child {
  display: flex;
  flex-direction: column;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.25rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:nth-child(2) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--color-creators-nickname);
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
  line-height: 22px;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:nth-child(3) {
  display: flex;
  gap: 0.4rem;
  font-size: 0.88rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:nth-child(3) > b.boosting {
  color: #ff2413;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:nth-child(3) > b.part {
  color: #b556ff;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:last-child {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:last-child.gift {
  font-family: unset;
  gap: 0.1rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:last-child.gift > b {
  font-size: 0.85rem;
  letter-spacing: -0.2px;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:last-child.coupon {
  gap: 0;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:last-child.coupon > span {
  color: var(--color-creators-nationality);
  margin-inline: 0.07rem;
  font-size: 0.8rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:first-child > span:last-child.coupon > b {
  letter-spacing: 0.2px;
  font-size: 0.85rem;
  margin-left: 0.1rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:last-child {
  display: flex;
  flex-direction: column;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:last-child > span:first-child {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:last-child > span:first-child > span:first-child {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.75rem;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:last-child > span:first-child > span:first-child > svg {
  color: var(--color-creators-nationality);
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:last-child > span:first-child > span:first-child > .total {
  margin-left: 0.2rem;
  color: var(--color-creators-nationality);
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:last-child > span:first-child > span:last-child {
  font-size: 0.85rem;
  color: var(--color-creators-nationality);
  letter-spacing: 0.05px;
  font-family: Poppins, sans-serif;
}
#campaign-around > .container > .layout > ul[data-value] > li > a > span:last-child > span:last-child > span:last-child {
  padding-top: 0.7rem;
  padding-bottom: 0.4rem;
  border-top: 1px solid #e8ebf2;
}

#creators-ranking > .container > .layout > div > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.3rem;
}
#creators-ranking > .container > .layout > div > div:first-child > h2 {
  font-size: 2.2rem;
}
#creators-ranking > .container > .layout > div > div:first-child > p {
  color: var(--color-creators-nationality);
}
#creators-ranking > .container > .layout > div > div.content {
  display: flex;
  justify-content: space-between;
}
#creators-ranking > .container > .layout > div > div.content > div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div {
  display: flex;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 5px 5px 2px rgba(0, 0, 0, 0.05);
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left {
  background: linear-gradient(to bottom, #6284FF, #3955FF);
  height: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > .top3 {
  position: relative;
  height: 245px;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > .top3 > div {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > .top3 > div:first-child {
  top: 1.3rem;
  left: 9.5rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > .top3 > div:nth-child(2) {
  top: 5rem;
  left: 3rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > .top3 > div:nth-child(3) {
  top: 6.4rem;
  right: 3.3rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > .top3 > div > img:first-child {
  transform: translateY(3px);
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > .top3 > div > img:nth-child(2) {
  border-radius: 50%;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > .top3 > div > b {
  font-size: 0.9rem;
  color: white;
  margin-top: 0.4rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul {
  position: relative;
  padding-left: 1.3rem;
  margin-block: 0.3rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li {
  padding-block: 1rem;
  display: flex;
  align-items: center;
  color: white;
  width: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(210, 214, 224, 0.2);
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > strong {
  font-family: Poppins, sans-serif;
  width: 25px;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > span {
  display: flex;
  align-items: center;
  width: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > span > span:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > span > span:first-child img {
  border-radius: 50%;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > span > span:first-child button {
  text-align: left;
  color: white;
  width: 100px;
  margin-right: 15px;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > span > span:first-child button > b {
  font-family: Noto Sans KR, Noto Sans JP, Noto Sans TC, sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > span > span:nth-child(2) {
  font-size: 0.9rem;
  letter-spacing: -0.5px;
  width: 118px;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > span > span:nth-child(3) {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  width: 60px;
  text-align: right;
  transform: translateY(2px);
  white-space: nowrap;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .left > ul > li > span > span:nth-child(3) > b {
  font-size: 0.87rem;
  color: white;
  font-family: Poppins, sans-serif;
  margin-right: 0.1rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right {
  background: white;
  padding-inline: 1.2rem;
  padding-block: 0.6rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li {
  padding-block: 1rem;
  display: flex;
  align-items: center;
  width: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li:not(:last-child) {
  border-bottom: 1px solid rgba(210, 214, 224, 0.2);
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > strong {
  font-family: Poppins, sans-serif;
  width: 25px;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > span {
  display: flex;
  align-items: center;
  width: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > span > span:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > span > span:first-child img {
  border-radius: 50%;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > span > span:first-child button {
  text-align: left;
  width: 100px;
  margin-right: 15px;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > span > span:first-child button > b {
  display: block;
  width: 65px;
  font-family: Noto Sans KR, Noto Sans JP, Noto Sans TC, sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > span > span:nth-child(2) {
  font-size: 0.9rem;
  letter-spacing: -0.5px;
  width: 120px;
  transform: translateY(-1.7px);
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > span > span:nth-child(3) {
  font-size: 0.82rem;
  color: var(--color-creators-nickname);
  width: 60px;
  text-align: right;
}
#creators-ranking > .container > .layout > div > div.content > div:first-child > div > .right > li > span > span:nth-child(3) > b {
  font-size: 0.85rem;
  color: var(--color-creators-follow);
  font-family: Poppins, sans-serif;
  margin-right: 0.1rem;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 5px 2px rgba(0, 0, 0, 0.05);
  height: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div,
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul {
  padding-inline: 1.2rem;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  background: linear-gradient(to bottom, #6284FF, #3955FF);
  padding-block: 2.3rem;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div > img {
  position: absolute;
  top: -3px;
  left: -1px;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div > strong {
  font-family: Poppins, sans-serif;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div > span:nth-child(3) {
  position: relative;
  display: flex;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div > span:nth-child(3) > img {
  border-radius: 50%;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div > span:nth-child(3) > button > span {
  display: flex;
  flex-direction: column;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div > span:nth-child(3) > button > span > b {
  color: white;
  font-size: 1rem;
  padding-bottom: 0.1rem;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div > span:nth-child(4) {
  display: flex;
  flex-direction: column;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-left: 7rem;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > div > span:nth-child(4) > span > b {
  color: white;
  margin-right: 0.1rem;
  font-size: 1rem;
  font-family: Poppins, sans-serif;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul {
  background: white;
  height: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li {
  padding-block: 1rem;
  display: flex;
  align-items: center;
  width: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(210, 214, 224, 0.2);
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > strong {
  font-family: Poppins, sans-serif;
  width: 25px;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span {
  display: flex;
  align-items: center;
  width: 100%;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100px;
  font-family: Poppins, sans-serif;
  margin-right: 35px;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > button > img {
  border-radius: 50%;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > button > b {
  font-family: Noto Sans KR, Noto Sans JP, Noto Sans TC, sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > span:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > span:first-child img {
  border-radius: 50%;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > span:first-child button {
  text-align: left;
  width: 100px;
  margin-right: 15px;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > span:first-child button > b {
  display: block;
  width: 65px;
  font-family: Noto Sans KR, Noto Sans JP, Noto Sans TC, sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > span:nth-child(2) {
  font-size: 0.9rem;
  letter-spacing: -0.5px;
  width: 120px;
  transform: translateY(-1.7px);
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > span:nth-child(3) {
  font-size: 0.82rem;
  color: var(--color-creators-nickname);
  width: 60px;
  text-align: right;
}
#creators-ranking > .container > .layout > div > div.content > div:last-child > div > ul > li > span > span:nth-child(3) > b {
  font-size: 0.85rem;
  color: var(--color-creators-follow);
  font-family: Poppins, sans-serif;
  margin-right: 0.1rem;
}
#creators-ranking > .container > .layout > div > div.content > div > a {
  font-size: 1.25rem;
  width: max-content;
}
#creators-ranking > .container > .layout > div > div.content > div > a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  background: url("assets/icons/more.svg");
  background-size: cover;
  margin-left: 0.5rem;
}

#creators-challenge {
  padding-top: 9.5rem;
  padding-bottom: 10rem;
}
#creators-challenge > .container > .layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
#creators-challenge > .container > .layout > h2 {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: Poppins, sans-serif;
  background: linear-gradient(to left, #00dc7a, #00c3a1, #119fff, #0076ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#creators-challenge > .container > .layout > p {
  color: var(--color-creators-nickname);
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}
#creators-challenge > .container > .layout > a {
  margin-top: 2rem;
  color: white;
  padding-inline: 1.8rem;
  padding-block: 1rem;
  border-radius: 50px;
  font-weight: 600;
  background: linear-gradient(to right, #0076ff, #119fff, #00c3a1, #00dc7a);
}
#creators-challenge > .container > .layout > a:hover {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(to right, #0076ff, #119fff, #00c3a1, #00dc7a);
}

#footer {
  background: #17191c;
}
#footer > .container > .layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
#footer > .container > .layout > div {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
#footer > .container > .layout > div > a {
  display: flex;
  transform: translateY(4px);
}
#footer > .container > .layout > div > span {
  color: var(--color-creators-nickname);
  font-size: 0.9rem;
  letter-spacing: -0.5px;
}
#footer > .container > .layout > ul {
  display: flex;
  gap: 1.4rem;
  color: white;
  font-size: 0.9rem;
}
#footer > .container > .layout > ul > li:nth-child(2) {
  font-weight: bold;
}

#contents {
  position: relative;
}
