.info {
  width: 100%;
  height: 800px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 24px
}

.introduction {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.content {
  width: 60%;
  height: 576px;
  border-radius: 24px;
  padding: 96px 24px 24px 24px;
  gap: 24px;
  background-color: var(--dark-gray-color);
  display: flex;
  flex-direction: column;

  .title {
    width: 100%;
    height: 238px;
    padding: 0 40px;
    gap: 4px;
    display: flex;
    flex-direction: column;

    .subtitle {
      width: 100%;
      height: 117px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 25px;

      span {
        color: var(--logo-color);
      }

      a {
        font-family: 'Roboto Flex', sans-serif;
        font-weight: 600;
        font-size: 70px;
        color: var(--light-color);
        text-transform: uppercase;
        white-space: nowrap;
      }
    }
  }

  .text {
    font-family: "Roboto Flex", sans-serif;
    height: 103px;
    padding: 0 168px 0 40px;
    font-size: 18px;
    color: var(--light-gray-color);
    line-height: 150%;
  }

  .carousel {
    width: 100%;
    height: 67px;
    border-radius: 12px;
    padding: 18px;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
  }

  .ticker {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .ticker__lane {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: ticker-move 30s linear infinite;
    will-change: transform;
  }

  .carousel:hover .ticker__lane {
    animation-play-state: paused;
  }

  .ticker__item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;

    img {
      width: 8px;
      height: 8px;
    }
  }

  .ticker__item span {
    font-family: var(--roboto-flex-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--runnung-line-color);
    text-transform: uppercase;
    opacity: 0.95;
    transition: color 0.3s ease;
  }

  .ticker__item span:hover {
    color: var(--light-violet-color);
  }

  /* Infinite seamless animation */
  @keyframes ticker-move {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
}

.video {
  width: 672px;
  height: 576px;
  border-radius: 24px;
  border: 2px solid var(--dark-violet-color);

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }
}

.info-bar {
  width: 100%;
  height: 200px;
  display: flex;
  padding: 24px;
  gap: 24px;
  border: 2px solid var(--border-gray-color);
  border-radius: 12px;
}

.item {
  background-color: var(--dark-gray-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 50px;
  gap: 18px;
  border-radius: 12px;
  flex: 1;

  .active {
    display: flex;
    flex-direction: row;
    gap: 16px;
    white-space: nowrap;

    img {
      width: 55px;
      height: 55px;
    }

    a {
      color: var(--light-gray-color);
      text-transform: uppercase;
    }
  }
}

.item-title {
  white-space: nowrap;
  font-family: var(--roboto-mono-font);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--light-gray-color);
}

.item-content {
  font-family: var(--roboto-flex-font);
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--violet-color);
  transition: color 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel .ticker .ticker__lane {
    animation: none !important;
    transform: translateX(0);
  }
}

@media screen and (max-width: 786px) {
  .info {
    height: auto;
  }

  .introduction {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .content {
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
    width: 100%;
    height: auto;

    .title {
      height: 84px;
      padding: 0 8px;
      gap: 4px;
      display: flex;
      flex-direction: column;

      .subtitle {
        a {
          font-size: 28px;
          font-weight: 600;
          font-family: "Roboto Flex", sans-serif;
        }

        img {
          width: 240px;
          height: 62px;
        }
      }
    }

    .text {
      font-family: var(--roboto-flex-font);
      height: 103px;
      padding: 0 0 0 8px;
      font-size: 14px;
      color: var(--light-gray-color);
      line-height: 150%;
    }

    .carousel {
      height: 48px;
      border-radius: 8px;
      padding: 14px;
    }

    .ticker__item span {
      font-weight: 400;
      font-size: 14px;
    }
  }

  .video {
    width: 100%;
    height: 395px;
    border-radius: 16px;

    img {
      border-radius: 16px;
    }
  }

  .info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    padding: 8px;
    gap: 8px;
    width: 100%;
    border-radius: 16px;
  }

  .item {
    padding: 24px 16px;
  }

  .item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .item-title {
    font-size: 14px;
    color: #B3B3B2;
  }

  .item-content {
    font-size: 40px;
  }
}