
/* FONTS */
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Medium"), local("OpenSans-Medium"),
    url("../fonts/OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins Bold"), local("Poppins-Bold"),
    url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins Light"), local("Poppins-Light"),
    url("../fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: local("Raleway Bold"), local("Raleway-Bold"),
    url("../fonts/Raleway-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Mono";
  src: local("Roboto Mono Regular"), local("RobotoMono-Regular"),
    url("../fonts/RobotoMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* BLOG PAGE */

/* HERO */

/* MOBILE */

.blog__hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 10.4px 40px 10.4px;
  background-image: linear-gradient(
    135deg,
    rgb(58, 58, 58) 0%,
    rgb(0, 0, 0) 100%
  );
  color: #fff;
  position: relative;
}

.blog__hero__heading {
  font-family: var(--font-raleway);
  font-weight: 700;
  font-size: 38px;
  line-height: 58px;
}

.blog__hero__link > a {
  font-family: var(--font-base);
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.blog__hero > .divider {
  position: absolute;
  height: 22px;
  bottom: -1px;
  left: 0;
  overflow: hidden;
  right: 0;
  z-index: 1;
}

.blog__hero > .divider > svg {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  display: block;
  fill: #fff;
}

/* MOBILE */

/* 1200 */

@media screen and (min-width: 1200px) {
  .blog__hero__heading {
    font-size: 48px;
  }
}

/* 1200 */

/* HERO */

/* BLOGS */

/* MOBILE */

.blogs__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.blog > a {
  padding: 15px 5px 10px 5px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.blog h3 {
  font-family: var(--font-raleway);
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
}

.blogs {
  padding: 14px 10px;
  margin-bottom: 20px;
}

/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .blogs__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    justify-content: start;
    align-items: start;
    gap: 20px;
    row-gap: 20px;
  }
  .blog {
    flex: 0 0 50%;
  }
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .blogs__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .blog h3 {
    font-size: 20px;
  }
  .blogs {
    margin-bottom: 50px;
  }
}

/* 1200 */

/* BLOGS */

/* BLOG PAGE */

/* SCRIPT PAGE STYLES */

/* HERO */

/* MOBILE */

.script__hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  position: relative;
  background-image: linear-gradient(
    135deg,
    rgb(58, 58, 58) 0%,
    rgb(0, 0, 0) 100%
  );
  padding: 12px 10px 40px 10px;
}

.script__hero__heading {
  background-image: linear-gradient(
    to right top,
    #0e6ba8,
    #0066c1,
    #005fd6,
    #0052e7,
    #473bf0
  );
  color: transparent;
  background-clip: text;
  text-shadow: 1px 1.5px 0px #005fd6;
  font-family: var(--font-raleway);
  font-weight: 700;
  font-size: 35px;
  line-height: 52px;
  text-align: center;
}

.script__hero__link {
  background-color: rgb(27, 38, 93);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-size: 27px;
  border-radius: 20px;
  padding: 0 5px;
}

.script__hero > .divider {
  position: absolute;
  height: 30px;
  bottom: -1px;
  left: 0;
  overflow: hidden;
  right: 0;
  z-index: 1;
}

.script__hero > .divider > svg {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  display: block;
  fill: #fff;
}

/* MOBILE */

/* HERO */

/* ABOUT */

/* MOBILE */

.script__about {
  padding: 24px 18px 43px 18px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}

.script__about__list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.script__about__list__item {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  color: rgb(68, 68, 68);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 25px;
}

.script__about__list__item > img {
  padding-top: 4px;
  margin-top: 0px;
}

/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .script__about > img {
    width: 100%;
  }
  .script__about {
    width: 522px;
    margin: 0 auto;
  }
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .script__about {
    width: 652px;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .script__about {
    width: 816px;
  }
}

/* 1200 */

/* ABOUT */

/* USAGE */

/* MOBILE */

.usage {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0;
  flex-direction: column;
  padding: 0 18px 37px 18px;
}

.usage__heading {
  background-image: linear-gradient(
    to right top,
    #110d26,
    #181b42,
    #1c2861,
    #193681,
    #0046a4
  );
  color: transparent;
  background-clip: text;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 29px;
  line-height: 43px;
  margin-bottom: 14px;
}

.text {
  color: rgb(68, 68, 68);
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 16px;
}

.text > a {
  color: rgb(79, 113, 157);
}

.usage__code {
  width: 100%;
  border-left: 6px solid #23b9e6;
  padding-left: 10px;
  font-family: var(--font-roboto);
  color: rgb(68, 68, 68);
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 35px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

.usage__code > em {
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.usage__btn {
  width: 123px;
  height: 27px;
  color: #fff;
  background-color: rgb(53, 107, 169);
  font-family: var(--font-base);
  font-size: 17px;
  margin-bottom: 15px;
}

.usage__new {
  color: rgb(68, 68, 68);
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
}



.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #2b6cb0;
  color: white;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: auto auto;
}

.discord-button:hover {
  background-color: #4752C4;
}

.discord-button:active {
  transform: translateY(1px);
}

.discord-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
li img {
  margin-top: 20px;
}
main a {
  color: #4F719D;
}

.script__features li img {
  margin-top: -20px;
}
/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .usage {
    width: 522px;
    margin: 0 auto;
  }
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .usage {
    width: 652px;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .usage {
    width: 816px;
  }
  .usage__heading {
    font-size: 36px;
  }

  .text,
  .usage__btn,
  .usage__new,
  .usage__code {
    font-size: 18px;
  }
}

/* 1200 */

/* USAGE */

/* FEATURES */

/* MOBILE */

.script__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 18px 43px 18px;
}

.script__features__heading {
  font-family: var(--font-raleway);
  font-weight: 700;
  background-image: linear-gradient(
    to right top,
    #110d26,
    #181b42,
    #1c2861,
    #193681,
    #0046a4
  );
  color: transparent;
  background-clip: text;
  font-size: 28px;
  line-height: 37px;
}

.script__features__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.script__features__list__item {
  display: flex;
  gap: 5px;
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  color: rgb(68, 68, 68);
}

.script__features > p {
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  color: rgb(68, 68, 68);
}

/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .script__features {
    width: 522px;
    margin: 0 auto;
  }
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .script__features {
    width: 652px;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .script__features {
    width: 816px;
  }

  .script__features__heading,
  .script__features__list__item,
  .script__features > p {
    font-size: 18px;
  }
}

/* FEATURES */

/* INFO */

/* MOBILE */

.script__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 18px 43px 18px;
}

h2 {
  margin: 0.5em 0 .5em;
  font-family: var(--font-poppins);
  font-weight: 700;
  background-image: linear-gradient(
    to right top,
    #110d26,
    #181b42,
    #1c2861,
    #193681,
    #0046a4
  );
  color: transparent;
  background-clip: text;
  font-size: 34px;
  line-height: 37px;
}

.script__info > p,
.script__info__list__item {
  color: rgb(68, 68, 68);

  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
}

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

.script__info__list__item b {
  border: 1px solid black;
  border-radius: 50%;
  padding: 0px 6px;
  
}

main p {
  color: rgb(68, 68, 68);
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
    margin-bottom: 20px;
}


@media screen and (min-width: 1200px) {
  main p {
      font-size: 18px;
  }
}
/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .script__info {
    width: 522px;
    margin: 0 auto;
  }
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .script__info {
    width: 652px;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .script__info {
    width: 816px;
  }

  .h2 {
    font-size: 36px;
  }

  .script__info > p,
  .script__info__list__item {
    font-size: 18px;
    

  }
}

/* INFO */

/* FAQS */

/* MOBILE */

.faqs {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0 18px 43px 18px;
}

.faqs__heading {
  font-family: var(--font-poppins);
  font-weight: 700;
  background-image: linear-gradient(
    to right top,
    #110d26,
    #181b42,
    #1c2861,
    #193681,
    #0046a4
  );
  color: transparent;
  background-clip: text;
  font-size: 28px;
  line-height: 37px;
  margin: 0px;
}

h3 {
  margin: 1.5em 0 .5em;
  font-family: var(--font-poppins);
  font-weight: 700;
  background-image: linear-gradient(
    to right top,
    #110d26,
    #181b42,
    #1c2861,
    #193681,
    #0046a4
  );
  color: transparent;
  background-clip: text;
  font-size: 25px;
  line-height: 37px;
}

.faqs__list__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faqs__list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.faqs__list__item > p {
  color: rgb(68, 68, 68);
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
}

.faqs__list__item > p > a {
  color: rgb(79, 113, 157);
}

/* MOBILE */
/* 768 */

@media screen and (min-width: 768px) {
  .faqs {
    width: 522px;
    margin: 0 auto;
  }
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .faqs {
    width: 652px;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .faqs {
    width: 816px;
  }

  .faqs__heading {
    font-size: 36px;
  }

  .faqs__list__item > p {
    font-size: 18px;
  }
}

/* FAQS */