body.dark-mode_page_dracula-getting-started {
  #wpcontent {
    padding: 0;
    background: linear-gradient(
                    180deg,
                    #f8f6ff 0,
                    #eae9ff 60px,
                    #f5f4ff 220px,
                    #ffffff 400px,
                    #ffffff 100%
    ) fixed;
    min-height: 100vh;
    padding-bottom: 60px;
  }

  #wpfooter {
    display: none;
  }
}

.dracula-getting-started {

  * {
    box-sizing: border-box;
  }

  .getting-started-header {
    padding: 60px 60px 120px 60px;
    color: #fff;
    text-align: center;

    .header-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      line-height: 1.5;

      img {
        width: 50px;
        margin-right: 10px;
        padding: 2px;
        border-radius: 50%;
      }

      span {
        font-size: 2rem;
        font-weight: 600;
        color: #0e0b28;
        position: relative;
        background: linear-gradient(270deg, #9b73e4 0, #4c3ef1 50%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
    }

    p {
      max-width: 600px;
      font-size: 1rem;
      margin: auto;
      line-height: 1.5;
      color: #6e6d7e;
    }

    .header-title {
      font-size: 1.3rem;
      background: $dracula_color_dark;
      padding: 17px 20px;
      border-radius: 30px;
      display: inline-flex;
      color: #eaf7ed;
    }

    @media (max-width: 767px) {
      padding: 20px 20px 80px 20px;

      .header-logo {
        img {
          width: 35px;
          padding: 2px;
        }

        span {
          font-size: 1.5rem;
        }
      }

      p {
        font-size: 0.9rem;
      }

      .header-title {
        font-size: 1rem;
        padding: 10px 15px;
      }
    }
  }

  .getting-started-main {
    max-width: 1000px;
    margin: -64px auto 0 auto;
  }

  .getting-started-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e5e5;
    width: max-content;
    margin: auto;
    padding: 20px;
    gap: 50px;

    .menu-item {
      display: flex;
      align-items: center;
      padding: 12px 15px;
      cursor: pointer;
      color: #4d4d4d;
      transition: all 0.3s ease-in-out;
      margin-bottom: -2px;
      border-radius: 7px;

      svg, img {
        margin-right: 10px;
      }

      span {
        font-size: 0.9rem;
        font-weight: 500;
      }

      &:hover {
        color: $dracula_color_dark;

        svg,
        path {
          fill: $dracula_color_dark;
        }
      }

      &.active {
        color: #FFF;
        background: linear-gradient(180deg, #4f45c5 0%, #6d63d6 50%, #8a82e8 100%);

        svg,
        path {
          fill: #FFF;
        }

      }
    }

    @media (max-width: 767px) {
      border-radius: 0;
      flex-direction: column;
      align-items: normal;
    }
  }

  .getting-started-content {
    display: none;
    margin-top: 30px;

    .section-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 30px;

      section {
        width: 48%;
      }
    }

    section {
      display: flex;
      flex-wrap: wrap;
      padding: 30px;
      border-radius: 15px;
      background-color: #fefefe;
      position: relative;
      border: 1px solid #eee;

      &.section-full {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2rem;

        & > div {
          width: 48%;
        }
      }

      &.section-reading-mode {
        & > .col-description {
          width: 55%;
        }

        & > .col-image {
          width: 35%;
        }
      }

      &.section-half {
        justify-content: center;

        .col-description {
          text-align: center;
          margin-bottom: 1rem;
        }

        .col-image {
          margin-top: auto;
        }
      }

      &.section-video-tutorials {
        padding: 0;

        .col-image {
          width: 100% !important;
        }
      }

      &.section-faq {
        background: transparent;
      }

      &.features {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0 -10px;
        padding: 0;
        background: transparent;
        border: 0;

        &.valuable-features {
          &:has(.show-all-btn-wrap) {
            &:after {
              content: "";
              position: absolute;
              bottom: 0;
              width: 100%;
              height: 80%;
              border-radius: 10px;
              background: linear-gradient(to bottom, transparent 20%, #fff 90%);
            }
          }
        }

        .feature {
          width: calc(33% - 20px);
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          text-align: center;
          background: #fefefe;
          margin: 10px;
          padding: 20px;
          border-radius: 15px;
          border: 1px solid #eee;

          &-title {
            margin-top: 5px;
            margin-bottom: 0;
          }

          p {
            margin-top: 7px;
          }

          .feature-logo {
            margin-bottom: 10px;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            background: #e8e7f8;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
              width: 80%;
            }
          }

          &.dracula-hidden {
            display: none;
          }
        }

        .show-all-btn-wrap {
          width: 100%;
          text-align: center;
          margin-bottom: 50px;
          z-index: 1;
          margin-top: -50px;
        }
      }

      .col-description {
        h2 {
          font-size: 1.5rem;
          font-weight: 600;
          margin: 1rem 0;
          line-height: 1.5;

          .badge {
            background: #7c5dee;
            color: #fff;
            padding: 4px 10px;
            border-radius: 5px;
            font-size: 1rem;
            margin-left: 5px;
          }
        }
      }

      .col-image {
        img,
        iframe {
          width: 100%;
          border-radius: 7px;
        }

        iframe {
          aspect-ratio: 16/9;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
      }

      .dracula-btn {
        padding: 15px 20px;
        margin: 20px auto 0 auto;
        text-decoration: none;

        &:hover {
          color: #fff;
          border-color: $dracula_color_light;
        }
      }

      &.section-documentation,
      &.section-contact {
        .col-image {
          img {
            width: 200px;
          }
        }
      }

    }

    div {
      &.popular-plugins-wrap {
        display: flex;
        flex-direction: column;
        max-width: 880px;
        margin: auto;

        .popular-plugin-item {
          display: flex;
          align-items: center;
          padding: 15px;
          border: 1px solid #eee;
          border-radius: 10px;
          margin-bottom: 15px;
          background: #fff;

          img {
            width: 70px;
            height: 70px;
            margin-right: 15px;
          }

          .plugin-info {
            display: flex;
            flex-direction: column;

            h3 {
              font-size: 1rem;
              font-weight: 500;
              margin-bottom: 0;
              margin-top: 0;
            }

            p {
              margin-top: 5px;
              margin-bottom: 0;
            }

            .users-count {
              display: flex;
              align-items: center;
              font-size: 15px;
              line-height: 1.5;
              font-weight: 400;
              color: #555;
              margin: 7px 0 0 0;
              padding: 2px 5px 2px 8px;
              border-left: 3px solid var(--plugin-color);
              background: linear-gradient(
                              to right,
                              var(--plugin-color) -150%,
                              transparent 95%
              );
              background-repeat: no-repeat;
              background-size: 120px;
              border-radius: 5px;
            }
          }

          .button-group {
            display: flex;
            gap: 10px;
            margin-left: auto;

            .dracula-btn {
              padding: 8px 12px;
              font-size: 0.875rem;
              height: 40px;
              display: inline-flex;
              align-items: center;
              justify-content: center;
              border-radius: 5px;
              box-shadow: none;
              border: 1px solid transparent;
              transition: background-color 0.3s ease;
              color: #fff;
              white-space: nowrap;
              text-decoration: none;

              i {
                margin-right: 7px;
              }


              &.btn-primary {
                background-color: $dracula_color;
                color: #fff;

                &:hover {
                  background-color: darken($dracula_color, 10%);
                }
              }

              &.btn-info {
                color: #333;
              }

            }
          }
        }

        @media (max-width: 767px) {
          .popular-plugin-item {
            flex-direction: column;
            align-items: flex-start;

            img {
              width: 50px;
              height: 50px;
              margin-bottom: 10px;
            }

            .plugin-info {
              h3 {
                font-size: 1rem;
              }
            }

            .components-button-group {
              margin-top: 10px;
              width: 100%;
              justify-content: space-between;
            }
          }
        }
      }
    }

    .content-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 80px auto 40px auto;
      text-align: center;
      max-width: 650px;
      line-height: 1.3;

      &.overview-heading {
        h2 {
          mark {
            &:after {
              right: -45px;
            }
          }
        }
      }

      &.heading-standout {
        max-width: 550px;
      }

      h2 {
        margin: 5px 0;
        font-size: 30px;
        font-weight: 700;

        mark {
          position: relative;
          background: linear-gradient(270deg, #9b73e4 0, #4c3ef1 50%);
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          margin: 0 7px;

          &:after {
            position: absolute;
            right: 7px;
            bottom: -25px;
            content: "";
            width: 215px;
            height: 23px;
            background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22229%22%20height%3D%2223%22%20viewBox%3D%220%200%20229%2023%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2%2017C43.7169%205.68065%20147.12%20-10.1664%20227%2017%22%20stroke%3D%22%23675ED5%22%20stroke-width%3D%223.5%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M17.5%2021.0001C54%2011%20143.5%20-1.49997%20214.5%2021.0001%22%20stroke%3D%22%23675ED5%22%20stroke-width%3D%223.5%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-size: contain;
          }
        }
      }

      p {
        margin: 10px 5px;
        font-size: 0.875rem;
        color: #555;
      }

      &.heading-help {
        h2 {
          mark {
            &:after {
              right: -60px;
            }
          }
        }
      }

      &.heading-get-pro {

      }

      .dracula-btn {
        margin-top: 20px;
        padding: 12px 15px;
        text-decoration: none;

        img {
          margin-right: 10px;
        }

        &:hover {
          color: #fff;
          background: $dracula_color_light;
        }
      }

    }

    &.active {
      display: block;
    }

    @media (max-width: 767px) {
      padding: 10px;

      .section-wrap {
        section {
          width: 100%;
          margin-bottom: 30px;
        }
      }

      section {
        padding: 10px;

        &.section-full {
          flex-direction: column;
          align-items: center;
          justify-content: center;

          & > div {
            width: 100%;
            text-align: center;
          }
        }

        &.features {
          margin: 0;

          .feature {
            width: 100%;
            margin: 0 0 20px 0;
          }
        }

        &.section-faq {
          .faq-item {
            margin-bottom: 20px;

            .faq-header {
              padding: 10px;
              font-weight: normal;

              h3 {
                font-size: 0.9rem;
                line-height: 1.5;
              }
            }
          }
        }
      }

      .content-heading {
        margin: 20px auto 20px auto;
      }
    }

    p {
      font-size: 1rem;
    }

    h4 {
      font-size: 1rem;
      line-height: 1.5;
    }

    ul {
      list-style: disc;
      margin-left: 25px;
    }

    li {
      font-size: 0.975rem;
      margin-bottom: 15px;
      line-height: 1.5;
    }

    &.content-basic-usage {
      h2 {
        mark {
          &:after {
            right: 0 !important;
          }
        }
      }

      .col-image {
        max-width: 600px;
        margin: 40px auto 20px auto;
      }
    }

    &.content-what-new {
      h2 {
        mark {
          &:after {
            right: 0 !important;
          }
        }
      }
    }

  }

  .log {
    border-radius: 15px;
    margin-bottom: 20px;

    &-header {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 20px;
      background: rgba(#2fb44b, 0.0875);
      border-radius: 15px;

      span {
        font-size: 1rem;
        font-weight: 500;
        margin-right: 10px;

        &.log-version {
          background: $dracula_color;
          color: #fff;
          padding: 5px 10px;
          border-radius: 5px;
        }
      }

      i {
        margin-left: auto;
        background: $dracula_color;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 50%;
        height: 25px;
        width: 25px;
      }
    }

    &-body {
      display: none;

      .log-section {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(#2fb44b, 0.1);

        &:last-child {
          border-bottom: none;
        }

        iframe {
          border-radius: 10px;
        }
      }

      .log-item {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 10px;
        display: flex;
        align-items: center;

        i {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          margin-right: 10px;
          border-radius: 50%;
          height: 25px;
          width: 25px;
          padding: 5px;
        }

        &-new {
          color: #3265a6;

          i {
            background: #3265a6;
            color: #fff;
          }
        }

        &-fix {
          color: #2fb44b;

          i {
            background: #2fb44b;
            color: #fff;
          }
        }

        &-enhancement {
          color: #f5a623;

          i {
            background: #f5a623;
            color: #fff;
          }
        }

        &-remove {
          color: #f3754d;

          i {
            background: transparent;
          }
        }
      }
    }

    &.active {
      border: 1px solid rgba(#2fb44b, 0.3);

      .log-header {
        border-bottom: 1px solid rgba(#2fb44b, 0.3);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }

      .log-body {
        display: block;
        padding: 20px;
      }
    }
  }

  .compare-pans {
    margin-bottom: 1rem !important;

    h2 {
      font-size: 1.4rem;
    }

    h3 {
      margin-top: 5px;

      span {
        font-size: 1.2rem;
        font-weight: 500;
        margin-right: 7px;

        &.plan-free {
          color: #555;
        }

        &.plan-pro {
          color: $dracula_color;
        }

        &.plan-elite {
          color: #f3754d;
        }
      }

      .vs {
        color: #7a7a7a;
        font-size: 0.875rem;
      }
    }
  }

  .features-list {
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    overflow: hidden;

    .list-header {
      display: flex;
      align-items: center;
      padding: 20px 30px;
      font-size: 1.2rem;
      border-bottom: 1px solid rgba(#2fb44b, 0.1);
      font-weight: 600;
      background: $dracula_color;
      color: #fff;

      .feature-title {
        width: 60%;
      }

      .feature-free {
        flex: 1;
        text-align: center;
      }

      .feature-pro {
        flex: 1;
        text-align: center;
      }

      .feature-elite {
        flex: 1;
        text-align: center;
      }
    }

    .feature {
      display: flex;
      align-items: center;
      padding: 15px 30px;
      font-size: 1rem;
      font-weight: 500;
      border-bottom: 1px solid #e5e5e5;
      background: #eff3fe;

      &:nth-child(odd) {
        background: #fff;
      }

      &:last-child {
        border-bottom: none;
      }

      .feature-title {
        width: 60%;
      }

      i {
        color: #fff;
        background: $dracula_color_light;
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;

        &.dashicons-no-alt {
          background: rgba(243, 117, 77, 0.7);
        }
      }

      .feature-free {
        flex: 1;
        text-align: center;
      }

      .feature-pro {
        flex: 1;
        text-align: center;
      }

      .feature-elite {
        flex: 1;
        text-align: center;
      }
    }
  }

  .get-pro-cta {
    display: flex;
    align-items: center;
    background: linear-gradient(
                    45deg,
                    #f8f6ff 0,
                    #eae9ff 30%,
                    #f5f4ff 70%,
                    #ffffff 80%,
                    #ffffff 100%
    );
    border-radius: 15px;
    padding: 30px;
    margin: 60px 0;

    .cta-content {
      display: flex;
      flex-direction: column;
      width: 60%;

      h2 {
        margin-bottom: 5px;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.3;

        mark {
          position: relative;
          background: linear-gradient(270deg, #9b73e4 0, #4c3ef1 50%);
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          margin: 0 7px;

          &:after {
            position: absolute;
            right: -50px;
            bottom: -25px;
            content: "";
            width: 215px;
            height: 23px;
            background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22229%22%20height%3D%2223%22%20viewBox%3D%220%200%20229%2023%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2%2017C43.7169%205.68065%20147.12%20-10.1664%20227%2017%22%20stroke%3D%22%23675ED5%22%20stroke-width%3D%223.5%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M17.5%2021.0001C54%2011%20143.5%20-1.49997%20214.5%2021.0001%22%20stroke%3D%22%23675ED5%22%20stroke-width%3D%223.5%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-size: contain;
          }
        }
      }
    }

    .cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;

      .dracula-btn {
        padding: 15px 20px;
        text-decoration: none;

        &:hover {
          color: #fff;
        }
      }
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      text-align: center;

      .cta-content {
        width: 100%;
        margin-bottom: 20px;
      }

      .cta-btn {
        width: 100%;
      }
    }
  }

  .demo-cta {
    display: flex;
    align-items: center;
    background: #FFF;
    border-radius: 15px;
    padding: 30px;
    margin: 60px 0;
    border: 1px solid #eee;

    .cta-content {
      display: flex;
      flex-direction: column;
      width: 60%;

      h2 {
        margin-bottom: 5px;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.3;
      }
    }

    .cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;

      .dracula-btn {
        padding: 15px 20px;
        text-decoration: none;

        &:hover {
          color: #fff;
        }
      }
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      text-align: center;

      .cta-content {
        width: 100%;
        margin-bottom: 20px;
      }

      .cta-btn {
        width: 100%;
      }
    }
  }

  .facebook-cta {
    display: flex;
    align-items: center;
    background: url("../images/getting-started/facebook-banner.png") no-repeat center/cover,
    #675ed5 !important;
    border-radius: 15px;
    padding: 20px 60px;
    margin: 60px 0;
    color: #fff;

    img {
      width: 100px;
      margin-right: 20px;
    }

    .cta-content {
      display: flex;
      flex-direction: column;
      width: 60%;

      h2 {
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.3;
        color: #fff;
      }

      p {
        margin-bottom: 0;
      }
    }

    .cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;

      .dracula-btn {
        padding: 15px 20px;
        background: #fff;
        color: #675ed5;

        &:hover {
          color: #fff;
          background: #675ed5;
        }
      }
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      text-align: center;

      .cta-content {
        width: 100%;
        margin-bottom: 20px;
      }

      .cta-btn {
        width: 100%;
      }
    }
  }

  .faq-item {
    margin-bottom: 30px;
    border: 1px solid #eff3fe;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    width: 100%;
    flex-direction: column;
    user-select: none;

    .faq-header {
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      background: #eff3fe;
      padding: 15px 20px;

      i {
        margin-right: 15px;
        font-size: 1.2rem;
        transition: all 0.3s ease-in-out;
        background: #fff;
        color: #333;
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
      }

      h3 {
        font-size: 1rem;
        margin: 0;
        line-height: 1.5;
      }
    }

    .faq-body {
      display: none;
      line-height: 1.5;
      padding: 10px 20px;
      background: rgba(#f7f8fa, 0.5);

      p {
        font-size: 1rem;
        color: #444;
      }
    }

    &.active {
      .faq-header {
        i {
          color: $dracula_color;
          transform: rotate(180deg);
        }
      }

      .faq-body {
        display: block;
      }
    }
  }
}
