main {
    grid-area: main;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(1.75rem, 1.8vw, 5rem);
    margin-top: clamp(10rem, 21vw, 24rem);

    .hero-section {
      display: grid;
      grid-template-areas:
      "hero-text"
      "hero-images"
      "hero-btn";
      grid-template-rows: auto auto auto;
      grid-template-columns: 1fr;
      padding: clamp(2rem, 2.5vw, 5rem);
      place-items: center;

      @media (min-width: 1024px) {
        grid-template-areas:
        "hero-text hero-images"
        "hero-btn hero-images";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: clamp(2rem, 2.5vw, 5rem);
      }

      .hero-text {
        grid-area: hero-text;
        display: flex;
        flex-direction: column;
        gap: clamp(1.75rem, 1.8vw, 5rem);

        h2 {
          text-align: center;
          font-size: clamp(1.5rem, 2.5vw, 5rem);
        }

        h3 {
          text-align: center;
          font-size: clamp(.85rem, 1.5vw, 2.75rem);
          color: var(--text-secondary)
        }
      }

      .hero-images {
          grid-area: hero-images;
          display: grid;
          grid-template-areas:
          "hero-image1 hero-image2"
          "hero-image3 hero-image4";
          grid-template-rows: auto auto;
          grid-template-columns: 1fr 1fr;
          place-items: center;
          gap: clamp(1.75rem, 1.8vw, 5rem);
          background: rgba(0, 0, 0, 0.2);
          border-radius: 2rem;
          padding: clamp(2rem, 2.5vw, 5rem);

          img {
            max-width: clamp(8rem, 15vw, 21rem);
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 2rem;
          }
        }
      .hero-btn {
        grid-area: hero-btn;
        display: flex;
        justify-content: center;
        align-items: center;

       a {
         button {
          padding: clamp(1rem, 1.8vw, 4rem) clamp(1rem, 3vw, 10rem);
          border-radius: 2rem;
          border: 1px white solid;
          background: none;
          color: white;
          font-size: clamp(1.5rem, 2.5vw, 5rem);
          cursor: pointer;
          transition: all 300ms ease-in-out;

          &:hover {
            background: var(--item-hover-bg);
          }

          &:active {
            transform: scale(0.95);
          }
        }
       }
      }
   }

   .dynamic-section {
    padding: clamp(2rem, 2.5vw, 5rem);
    display: grid;
    grid-template-areas:
    "dynamic-title"
    "dynamic-steps-and-imgs";
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 5vw, 10rem);

    .dynamic-title {
      grid-area: dynamic-title;
      display: flex;
      flex-direction: column;

      h2 {
        text-align: center;
        font-size: clamp(1.5rem, 2.5vw, 5rem);
      }
    }

    .dynamic-steps-and-imgs {
      grid-area: dynamic-steps-and-imgs;
      display: flex;
      flex-direction: column;

      ol {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 2.5vw, 5rem);

        li {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          gap: clamp(1.75rem, 1.8vw, 5rem);

        @media (min-width: 768px) {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
          place-items: center;
        }

          p {
            text-align: center;
            font-size: clamp(1.15rem, 2.5vw, 5rem);
          }

          .dynamic-image-style {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.25);
            width: clamp(18rem, 20vw, 25rem);
            height: clamp(11.5rem, 12.5vw, 12rem);
            padding: clamp(1rem, 1.5vw, 1.25rem);
            border-radius: 2rem;
            overflow: hidden;

            @media (min-width: 768px) {
              width: clamp(20rem, 25vw, 50rem);
              height: clamp(15rem, 16vw, 30rem);
            }

            video {
              width: clamp(17rem, 18vw, 20rem);
              height: clamp(10.5rem, 15vw, 18rem);
              border-radius: 2rem;
              object-fit: cover;

              @media (min-width: 768px) {
                width: clamp(18.5rem, 23vw, 50rem);
                height: clamp(13.5rem, 14vw, 26.5rem);
                
              }
            }
          }
        }
      }
   }
  }
  .playground-section {
    padding: clamp(2rem, 2.5vw, 4rem);
    display: grid;
    grid-template-areas:
    "playground-title"
    "playground-topic"
    "playground-console";
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    place-items: center;
    gap: clamp(1rem, 5vw, 10rem);

    .playground-title {
      grid-area: playground-title;
      display: flex;
      flex-direction: column;
      gap: clamp(1.5rem, 2vw, 5rem);

      h2 {
        text-align: center;
        font-size: clamp(1.5rem, 2.5vw, 5rem);
      }

      h3 {
        text-align: center;
        font-size: clamp(.85rem, 1.5vw, 2.7rem);
        color: var(--text-secondary)
      }
    }

    .playground-topic {
      grid-area: playground-topic;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(1.5rem, 2vw, 5rem);

      h4 {
        text-align: center;
        font-size: clamp(1rem, 1.5vw, 3.5rem);
      }

      .topic-format {
        max-height: 40rem;
        height: 100%;
        width: clamp(20rem, 50vw, 80rem);
        border-radius: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: clamp(8rem, 16.5vw, 30rem);
        gap: clamp(1.5rem, 2vw, 5rem);

        @media (min-width: 768px) {
          max-height: none;
          height: clamp(50rem, 70vw, 120em);
          width: clamp(50rem, 70vw, 120rem);
          display: grid;
          grid-template-areas: 
          "topic-one topic-two";
          grid-template-columns: auto auto;
          place-items: center;
        }

        .topic-one {
          display: flex;
          gap: clamp(1.5rem, 2vw, 5rem);
          padding: clamp(.85rem, 1.5vw, 5rem) clamp(3.2rem, 4vw, 10rem);
          border-radius: 2rem;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all 300ms ease-in-out;

          @media (min-width: 768px) {
            grid-area: "topic-one"
          }

          &:hover {
            background: var(--item-hover-bg);
          }

          ¨&:active {
            transform: scale(0.95);
          }

          img {
            height: clamp(8rem, 15vw, 25rem);
            width: clamp(8rem, 15vw, 25rem);
            border-radius: 2rem;
            object-fit: cover;
            transition: all 300ms ease-in-out;

            &:hover {
              transform: scale(1.05);
            }

            &:active {
              transform: scale(0.95);
            }
          }

          p {
            text-align: center;
            font-size: clamp(.85rem, 1.5vw, 3.5rem);
            color: var(--text-secondary);
          }
       }

       .topic-two {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: clamp(1.5rem, 2vw, 5rem);
        padding: clamp(.85rem, 1.5vw, 5rem);
        border-radius: 2rem;
        cursor: pointer;
        transition: all 300ms ease-in-out;

        @media (min-width: 768px) {
          grid-area: "topic-two";
        }

        &:hover {
          background: var(--item-hover-bg);
        }

        &:active {
          transform: scale(0.95);
        }


        img {
          height: clamp(8rem, 15vw, 25rem);
          width: clamp(8rem, 15vw, 25rem);
          border-radius: 2rem;
          object-fit: cover;
          transition: all 300ms ease-in-out;

          &:hover {
            transform: scale(1.05);
          }

          &:active {
            transform: scale(0.95);
          }
        }

        p {
          text-align: center;
          font-size: clamp(.85rem, 1.5vw, 3.5rem);
          color: var(--text-secondary);
        }
       }
     }
   }

    .playground-console {
      grid-area: playground-console;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 20rem;
      max-height: clamp(30rem, 50vw, 90rem);
      width: clamp(22rem, 50vw, 80rem);
      padding: clamp(1rem, 2vw, 3rem);
      background: var(--glass-surface);
      backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-shadow);
      border-radius: 2rem;
      overflow-y: auto;

      span {
        text-align: center;
        font-size: clamp(1rem, 2vw, 3.5rem);
        font-weight: 200;
        display: block;
        word-wrap: break-word;
      }
    }
  }
}
